Assuming you are considering MATLAB internal image rice.png image. The image is quite clear, you may use directly thresholding to get the desired result.
bwImage=imbinarize(grayImage,.46);
%..............................^ adjust the threshold value as per requirement
bwImage=bwareaopen(bwImage,10); %Remove small objects from binary image
grayImage(~bwImage)=255; % Make all non segmented part as whilte pixels
imshow(grayImage)
In this particular image, this direct approach works better than othsu Method( To get the Global image threshold). Please do other sort of morphological operation, like smothing or other segmentation approach to get more better result.
Best Case: If you are at beginner level, request to refer to the image segmentation chapter in the Gonzalez Digital Image Processing Book
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
0 Comments
Sign in to comment.