I want to get all pixels coordinates that have same color as one pixel
List<cv::Point> GetAllPixels(cv::Point x)
{
//imp
}
How can I do this in EmguCV or OpenCV?
|
I want to get all pixels coordinates that have same color as one pixel
How can I do this in EmguCV or OpenCV? | ||||
|
feedback
|
|
Here is a possible solution using OpenCV C++:
I used this input image: And achieved this output image: Enjoy! :) | |||
|
feedback
|
|
The answer should get you started. Also consider using Cmp function for IplImage it may be something like this:
use mask_img to extract coordinates; you may find equivalent operations for cv::Mat, greets | |||
|
feedback
|