Measuring Diameter of Calibration Pin

1 visualización (últimos 30 días)
Ang Xian Jia
Ang Xian Jia el 28 de Nov. de 2019
Editada: Ang Xian Jia el 30 de Nov. de 2019
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)

Respuesta aceptada

Image Analyst
Image Analyst el 28 de Nov. de 2019
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 comentarios
Image Analyst
Image Analyst el 30 de Nov. de 2019
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 el 30 de Nov. de 2019
Editada: Ang Xian Jia el 30 de Nov. de 2019
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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by