Infrared LED tracking: How to track with OpenCV?
I'm trying to replace a tracking system with my own openCV implementation. I want to know if what I need is possible with openCV?
The current system:
- Relies on infrared led transmitting
- Each led transmit a unique 8 bit signal
- Gives an (x, y, z) coordinate of each unique led
- Uses 4-8 infrared cameras
- The system is very synchronized and accurate
Would there be any major obstacles in reproducing such a system with OpenCV?
Just things that pop in my head and will make your life miserable. 1) the hardware calibration, making sure that everything is synchronous 2) retrieving the correct 8 bit channel code the led transmits :) It is a tough challege and I guess openCV can only solve the software side, not the hardware configuration.
@StevenPuttemans I have the hardware side down solid. We have a system fully working but its with a third party software which is expensive and hard for our users to work with.
Then I think it will be possible :P