open cv for thermal image
As I am new to open cv. I can't get a clear idea. Help me to create code in thermal imaging( Among the given objects help me to find most reddish object)
As I am new to open cv. I can't get a clear idea. Help me to create code in thermal imaging( Among the given objects help me to find most reddish object)
From OpenCV point of view thermal image is same as normal image You have to fit your image into a cv::Mat using most appropriate data type than apply needed algorithm. In your case cv::compare, cv::inRange, cv::threshold , cv::adaptiveThreshold, could be a good starting point.
Asked: 2017-02-19 22:38:39 -0600
Seen: 1,006 times
Last updated: Feb 20 '17
Can you provide the samples of the such images and show result that you want to get on them?
this sounds, like you're looking at some false-color mapped version of your image. rather try to acquire the original, 1 channel image, and work on that.