How do they put graphics on the football field?

  • Thread starter Thread starter EnumaElish
  • Start date Start date
  • Tags Tags
    Field Graphics
AI Thread Summary
Special effects graphics on football fields, such as yardage indicators, are created using advanced sensor cameras that work in conjunction with on-air cameras. This technology can differentiate players based on uniform colors and analyze formations directly from the video feed. By utilizing pan and zoom capabilities, 3D elements can be superimposed onto the live image of the field. Techniques like image extraction technology and alpha blending are employed to enhance visual effects, allowing for realistic overlays that can adapt to camera movements. Additionally, fixed camera setups enable easier integration of virtual objects, while more complex models can simulate occlusion to maintain realism. The evolution of this technology has significantly advanced in recent years, enhancing viewer experience during broadcasts.
EnumaElish
Science Advisor
Messages
2,346
Reaction score
124
On TV, "special effects" graphics seem to appear on a football field (e.g. indicating yardage of a run), and they look pretty real. Who puts it there, and how?
 
Computer science news on Phys.org
They have sensor cameras that work side by side with the on air camera to analyze what's going on in the field. The technology can distinguish players based on differences in color of their uniforms from the field green as well as what team they're. It pretty fascinating, it can even analyze player formations from the image alone.

Also based on the pan and zoom of the on-air camera it is possible to superimpose 3d rendered elements onto the video image of the field. Its interesting stuff, google " Image extraction technology".

There are even computer webcams out that can follow your face around by the whites of your eyes and superimpose funny images of glasses and googly eyes and whatnot.
 
Have you noticed on TV that some stadiums have scoreboards that would block the view of the fans or be a hundred feet high if they actually existed...? That's a neat capability too.
 
If the camera is fixed to a point superimposing things is quite easy, if all the players (or anything else likely to move, e.g. crowd) are in front of or behind the virtual object (e.g. the players are always in front of the ground) you can make a texture map for deciding whether to render the video feed or the 3d model. If you know anything about alpha blending, just consider extending it to a cubemap (i.e. a texture for each face of a cube) and rendering that alpha cubemap like a skybox. Not very flexible, but I'm sure it gets used for some of those effects, because as the camera wobbles the blending does not, and it notices.

If you are not constrained to a point you can model occlusion with low detail 3d models, standing in for real objects. You take a line from the camera to the point in the object you want to test for visibility, if it intersects a plane from the "blocker" model and is within the bounds of one of its triangular face, then you render the video feed there. You would still need to measure the path the camera takes, however.

The more complicated stuff, I have no idea about though... lots of digital image processing.
 
Last edited:
lol, for the longest time while i was a little kid, i always thought that some one would run out there and paint it...then erase it when the team had moved lol.
 
Mike628 said:
lol, for the longest time while i was a little kid, i always thought that some one would run out there and paint it...then erase it when the team had moved lol.

I only remember it being used within the last 5-6 years. :)
 
lol..well maybe i was 10 then? hahaha either way.. lol
 
Last edited:
Back
Top