
Object extraction from image
조회 수: 16 (최근 30일)
이전 댓글 표시
Hi, I need to extract rice grains from (rice.png) . I just need guidance for algorithm . Which algorithm or technique should I use?
댓글 수: 0
답변 (1개)
KALYAN ACHARJYA
2021년 1월 4일
편집: KALYAN ACHARJYA
2021년 1월 4일
Simplest Case:
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
:)
Kalyan
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!