hi! i've found some topic on iglasses. i need to use it in order to set the exposition manually. i found
this for example, but there is no more the same path..or file inside it.
I'm using opencv in processing..one of the issues, critical for me, is to mix and split the colors blobs. I mean..if I have two blobs: 0 (255,0,0) and 1 (0,255,0) I want the following one (255,0,0)...this in case the area is the same...otherwise the proportion is different. When I want to split the last blob..I want also to split the color..and it depends again basically on how much area they have now.
So for example, if I divide the blob in 10 / 90 % the following blob should get 10 % of (255,255,0) and 90 % (255,255,0).
by now...i just putted some conditions..based on area pixel and blob ID..
etc...but it doesn't make sense when I want the new color blob as a sum of the previous ones.
Essentially the only initial condition is to have a 255,255,255 for one blob..and then to subtract value more and more I split it. I don't mind if I don't get exactly the same colors after 2/3 operations..but it's important to have a right color from the previous where it comes from, eventually from more than two blobs.
Any help or suggestion would be really appreciated. Thanks!
Hi everybody! :) I'm using opencv in processing...i was woundering if there is the possibility to use a threshold in between..for example instead of one value (150)...to use a value between (ex. 150 and 200).