Cloud Identification and Tracking
Hi, I'm working on sky images and I can detect cloud areas per frame. Then now I want to calculate movement vector for once identified clouds but as you guess, shapes of clouds changes frame by frame even cloud counts(because of cloud joining/seperation). Do you have any idea for matching clouds in sequential frames? (except area/percentage matching)
Background Subtraction Methods maybe helpful
I guess @sturkmen that he is already passed the stage of seperating them, for which he would use background subtraction. As to the question, I guess you will need to make a sort of lookup table of what centerpoints are doing. If the position changes drastically, you know a merge or split has happended, then you will need to keep track of two closest points and merge them. It is like building some sort of history lookup table over time.
@StevenPuttemans thank you. I'm going like this already but looking for more suitable opinions. BTW I'm new in opencv even the image processing.
Hello @rca , I'm new in computer vision, I want to ask you what algorithm you've used for cloud identification. I'm interested on it
Hello, I know this post is a little old, but for one of my project I have to do cloud detection just like you did. Could you give us the steps your followed for your algorithm ?
@aruno14, look into background subtraction algorithms or HSV based segmentation techniques. I am guessing that is about what he has done.