Search code examples
c++opencvimage-processingmaskthreshold

OpenCV Binary Image Mask for Image Analysis in C++


I'm trying to analyse some images which have a lot of noise around the outside of the image, but a clear circular centre with a shape inside. The centre is the part I'm interested in, but the outside noise is affecting my binary thresholding of the image.

To ignore the noise, I'm trying to set up a circular mask of known centre position and radius whereby all pixels outside this circle are changed to black. I figure that everything inside the circle will now be easy to analyse with binary thresholding.

I'm just wondering if someone might be able to point me in the right direction for this sort of problem please? I've had a look at this solution: How to black out everything outside a circle in Open CV but some of my constraints are different and I'm confused by the method in which source images are loaded.

Thank you in advance!


Solution

  • //First load your source image, here load as gray scale
    cv::Mat srcImage = cv::imread("sourceImage.jpg", CV_LOAD_IMAGE_GRAYSCALE);
    
    //Then define your mask image
    cv::Mat mask = cv::Mat::zeros(srcImage.size(), srcImage.type());
    
    //Define your destination image
    cv::Mat dstImage = cv::Mat::zeros(srcImage.size(), srcImage.type());    
    
    //I assume you want to draw the circle at the center of your image, with a radius of 50
    cv::circle(mask, cv::Point(mask.cols/2, mask.rows/2), 50, cv::Scalar(255, 0, 0), -1, 8, 0);
    
    //Now you can copy your source image to destination image with masking
    srcImage.copyTo(dstImage, mask);
    

    Then do your further processing on your dstImage. Assume this is your source image:

    enter image description here

    Then the above code gives you this as gray scale input:

    enter image description here

    And this is the binary mask you created:

    enter image description here

    And this is your final result after masking operation:

    enter image description here