Reputation: 721
I am new to computer vision, and need some advice on where to start.
The project is to estimate speed of a moving object(A) relative to the moving object(B) which is tracking it(A).
what should I need to do if I assume-
I want to do this using opencv and c++
Any advice on where to start, general steps would be very appreciated. Thanks in advance!
Upvotes: 0
Views: 2220
Reputation: 3408
If your camera is attached to object B, first you will have to design an algorithm to detect and track object A. A simplified algorithm can be:
Loop the steps below:
The best way to do this is to get started with at least a simple C++ program that captures frames from a camera, and keep adding steps for detection and tracking.
Upvotes: 1