Measuring Diameter of Calibration Pin

1 回表示 (過去 30 日間)
Ang Xian Jia
Ang Xian Jia 2019 年 11 月 28 日
編集済み: Ang Xian Jia 2019 年 11 月 30 日
I want to measure the diameter of the pin but getting a bad edge detection image. Can someone help me to further improve it?
untitled.png
My edge detection image:
Edge.png
My coding:
%% Read and Binarize
load image.mat
I4 = imgaussfilt(I3);
I4 = I4 <120;
%%
I5 = edge(I4,'Sobel');
imshow(I5)

採用された回答

Image Analyst
Image Analyst 2019 年 11 月 28 日
Why are you doing edge detection???? I see no need for that. If the edges are about where you put them, then try thresholding and getting the area and divide by the width:
mask = grayImage < someValue;
mask = imfill(mask, 'holes');
diameter = nnz(mask) / size(mask, 2); % height = area / width. Answer is in pixels.
It's trickier if you want the inner, instead of outer, dark thing.
  5 件のコメント
Image Analyst
Image Analyst 2019 年 11 月 30 日
Do you have another, more trusted method? If not, then why do you doubt the image analysis? Why do you assume it's wrong if you don't have another more trusted method? If it's the only thing you have that gives you an answer, then why do you doubt it?
What you really need to ask is if the image analysis meets your needs. For example does it properly identify diameters that are for usable parts and unusable parts? If not, you can construct an ROC curve.
Ang Xian Jia
Ang Xian Jia 2019 年 11 月 30 日
編集済み: Ang Xian Jia 2019 年 11 月 30 日
In measurement field, I think it's a headache to ask myself whether the image analysis had met my need. I think using more sample as you had mentioned is the best way to know whether I had done enough step/coding to process the pin image. Thank you so much, Image Analyst! #LongLiveImageAnalyst

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by