Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

offside decision system in football The offside law states that A player is in an offside position if he is nearer to his opponent's goal

image text in transcribed

image text in transcribed

offside decision system in football The offside law states that A player is in an offside position if he is nearer to his opponent's goal line than both the ball and the second last opponent. In this project, you are requested to create a software that helps to detect offside situations in football games. The software inputs a picture (taken with an arbitrarily positioned camera) at the moment the ball is kicked, and a user has to click on the two players involved (player A and player B in the figure). From the positions on the screen, the distance between the two players along the x-axis of the field is computed (see Figure). - Depending on the implementation you are free to get additional information from the user (i.e. dimensions of the field). Minimal input from the user is two points clicked. - Your program should draw two vectors at the clicked points, perpendicular the field (ground plane). - Your program should draw two lines to the image, parallel to the goal line. The program should also compute the distance between these lines in metric units. Sample Code to get mouse input from user in Matlab IThe code draws line between points selected. f=figure: imshow ('moon.tif') ; [x,y]=getpts(f) fclick two point and hit Enter line (x,y, 'color', 'red', 'Linewidth', 2 ) ; What to submit: - Source codes - Input/output images - Report explaining details and theoretical background of your algorithm (equations

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions