access pixel values inside the detected object / c++
If I could detect a circle by using canny edge detector, How can I have access to all values which are inside the circle?
void Canny(InputArray image, OutputArray edges, double threshold1, double threshold2, int apertureSize=3, bool L2gradient=false ) output of this function will give me the edges values which is detected by the edge detector, but what I want is all value inside the circle.
thanks in advance