Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Image Processing Programming

I wanted to know if there's any way by which we can detect the position of an object in an image using some programming language ?

For example : If i have an image of a ball that is updating itself say every 100 milliseconds,is it possible to get the coordinate of the ball through some program,using something?

like image 897
Anant Avatar asked Aug 15 '10 09:08

Anant


People also ask

What programming language is used in image processing?

C/C++/C# C, C++ and C# programming dialects of the C-family are used widely for the creation of artificial intelligence programs. Their native libraries and specifications such as EmguCV, OpenGL and OpenCV have built-in intelligent features for processing pictures and can be utilized for quick development of AI apps.

Does image processing require coding?

Other than this, it requires some of the basic programming skills on any of the popular languages such as C++ , Java , or MATLAB.

What is an image programming?

1. A process for representing an image with some other representations in view of reducing data for storage and/or transmission of this image.

Which algorithm is used for image processing?

Marr–Hildreth algorithm: It is an early edge detection algorithm. Canny edge detector algorithm: Canny edge detector is used for detecting a wide range of edges in images. Generalized Hough transform algorithm. Hough transform algorithm.


1 Answers

Have a look at OpenCV and the Hough Transform.

like image 110
Gregory Pakosz Avatar answered Sep 20 '22 02:09

Gregory Pakosz