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!