How to crop the coin circular and neglect the rest area?
2 次查看(过去 30 天)
显示 更早的评论
I have a coin image and I want to crop the circular section of the coin, I tried below code but this doesn't worked well.
I want to crop out the coin with the outer boundary with a perfect circle. Any help would be appreciated. Thank you
Code which I tried:
%B1 is in coin.mat coin image
B2 = B1/max(B1(:));
k=B1*200;
k(k>-6000) = 1;
k(k<-6000) = 0;
bw2 = imfill(k,'holes');
figure,imshow(bw2)
bw3 = imopen(bw2, ones(3,3));
figure,imshow(bw3)
bw3 = imopen(bw2, ones(5,5));
0 个评论
采纳的回答
Image Analyst
2023-4-5
That's what I do in my popular tutorial.
It's a generic, general purpose demo of how to threshold an image to find blobs (coins), and then measure things about the blobs, and extract certain blobs based on their areas or diameters.
0 个评论
更多回答(1 个)
Cris LaPierre
2023-4-4
I would use the Image Segmenter app. After loading the image, you can define a circuilar ROI, apply a mask, and export the result back to MATLAB.
Just be aware that the result is always going to be a square, as the image is stored in a matrix. There is no circle version of it. You can use the mask to adjust the background color if you want.
You can learn more in the Using the Image Segmenter App video, which is part of the Image Processing for Engineering and Science Specialization on Coursera. It is a self paced course created by MathWorks, and you can enroll for free.
3 个评论
Image Analyst
2023-4-5
If extremely high precision is really a requirement then you'd do things to enable that. This includes
- Using as high a resolution camera as you can.
- Using a telecentric lens (instead of a regular lens).
- Using a uniform background of contrasting color (like black velvet).
- Using proper lighting.
Alternatively you can use a caliper micrometer.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing and Computer Vision 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!