Skip to main content

Get the Reddit app

Scan this QR code to download the app now
Or check it out in the app stores
r/hockey icon
r/hockey icon

r/hockey

members
online


Daily Free Talk Thread: PLUS, links to ALL Game Day Threads inside - 13 Jul 2024

Pre-game thread to talk about anything!

🔗 Game Day Threads (GDT) and Post Game Threads (PGT) links

Offseason Schedule

  • July 1, 12pm ET - UFA/RFA signing period starts

  • July 5 - Deadline for player-elected arbitration

  • July 26-30 - Hlinka Gretzky Cup, St. Paul, MN

  • Mid Sep - Training camps start

  • Oct 4 - Start of 2024-25 NHL season (BUF vs NJD in Prague, Czechia)

  • Oct 8 - Opening night in North America - home openers, regular season schedule


Standings Stats Leaders
Link Link

Regular Threads

Mod News/Threads

Some useful resources

r/hockey stands with BIPOC, AAPI, and LGBTIQA+

r/hockey aims to be an inclusive environment where people of all races, ethnicities, and identities can come and talk hockey. We will do our best to lift the voices of the hockey community that speak up against racism, sexism, or any other hate by ensuring their posts make it to r/hockey for those to read. We will continue to do our best to enforce and remove any comments or racist remarks as well as all bigotry, sexism, and xenophobia.


What is a Daily Free Talk Thread? Use it to talk about anything related to hockey, ask quick questions, or any other daily chatter. It's also your hub for links to Game Day Threads, live scores, daily stats and standings, and a way to compile recent news and announcements for easy viewing. You can view a collection of all video replays by opening the stickied mod comment below. It updates throughout the night.


If you have specific feedback about these threads please message the mods. This bot is maintained by u/sandman730. Message him with any bugs.















How “seriously” are the players going to take the 4 Nations Tourney? How “seriously” are the players going to take the 4 Nations Tourney?

Is it going to be like a true international tournament like the Olympics or Canada/World Cup where these guys play their hearts out to try to win one for their country? Or is it going to be like an All Star game where they mess around, have fun, no one plays defense, no one wants to get injured heading into the playoffs, etc?



[TonyAndrock] "There doesn't appear to be any AHL outdoor games on the 2024-25 schedule. I'm told Chicago Blackhawks looked into having Rockford host an AHL outdoor game at Wrigley Field but were unable to make it work. We could see AHL potentially return outdoors in 2026 though 👀 " [TonyAndrock] "There doesn't appear to be any AHL outdoor games on the 2024-25 schedule. I'm told Chicago Blackhawks looked into having Rockford host an AHL outdoor game at Wrigley Field but were unable to make it work. We could see AHL potentially return outdoors in 2026 though 👀 "
[Image]
r/hockey - [TonyAndrock] "There doesn't appear to be any AHL outdoor games on the 2024-25 schedule.

I'm told Chicago Blackhawks looked into having Rockford host an AHL outdoor game at Wrigley Field but were unable to make it work.

We could see AHL potentially return outdoors in 2026 though 👀 "

[OC] Scientifically Determining the NHL's Biggest Smile [OC] Scientifically Determining the NHL's Biggest Smile

Introduction

While downloading NHL official player headshots for a graphic I was working on, an idea dawned on me which felt both very fun and interesting:

“Which player has the biggest smile in the NHL?”

We can calculate this by using computer vision! Let’s get to it.

Using CV for Facial Recognition

Facial Recognition

Using computer vision (CV) we can have a model which looks at each headshot and determine the location of facial features on each player. Thankfully, there is a public model available on GitHub which has done the legwork for us!

Italo José created facial-landmarks-recognition which we can use for our task. Their model places landmarks on a person’s face to define facial features. For our project, we are looking just at the landmarks which make up the mouth.

What is a smile?

We are defining a smile as “the portion of a player’s mouth which is between their lips”. While that may be a mouthful, it is essentially the area of teeth which the model calculates. An example would better illustrate this.

For this example, we are looking at Sidney Crosby.

Sidney Crosby Smile Outline

Looking good! The model accurately highlighted Sidney Crosby’s smile. While the smile isn’t fully captured, it is a good approximation. Now, to determine which players have the largest smiles, we need a method to calculate the polygons which make up their smile.

Calculating the Size of a Smile

The shoelace formula (also known as Gauss’s area formula) is an algorithm to calculate the area of a polygon, even irregular ones.

Shoelace Formula

We can calculate the area of each player’s “smile” using this formula and then determine which players have the biggest smile!

With the areas calculated, we can now determine which players have the biggest smiles in the NHL

Here are the top 10 Smiles in the NHL by Area:

Top 10 Smiles in the NHL

Conclusion

I actually did this project for MLB Players earlier this week and thought it would be fun to apply it to NHL players. I wrote an article covering my methodology, and it also includes the code I used to complete the project.

You can check out my other work on Twitter!

I hope you enjoyed!