Drawing the major and minor axis of an elliptical object in Matlab

14 Ansichten (letzte 30 Tage)
This program currently inputs an image of a coin, thresholds it, binarizes it, and finds the major and minor axis lengths of the segmented elliptical using the regionprops function. What I want to do is output a subplot where I draw the axes used to calculate the 'MajorAxisLength' and 'MinorAxisLength' over the original image. Would really appreciate help with this.
I have appended the code for your perusal.
rgbImage = imread(coin2.jpg);
subplot(2, 3, 1);
imshow(rgbImage, []);
title('Original Image');
redChannel = rgbImage(:, :, 1);
binaryImage = redChannel < 100;
subplot(2, 3, 3);
imshow(binaryImage, []);
title('Binarized Image');
labeledImage = bwlabel(binaryImage);
area_measurements = regionprops(labeledImage,'Area');
allAreas = [area_measurements.Area];
biggestBlobIndex = find(allAreas == max(allAreas));
keeperBlobsImage = ismember(labeledImage, biggestBlobIndex);
measurements = regionprops(keeperBlobsImage,'MajorAxisLength','MinorAxisLength')
% Display the original color image with outline.
subplot(2, 3, 4);
imshow(rgbImage);
hold on;
title('Original Color Image with Outline', 'FontSize',fontSize);
boundaries = bwboundaries(keeperBlobsImage);
blobBoundary = boundaries{1};
plot(blobBoundary(:,2), blobBoundary(:,1), 'g-', 'LineWidth', 1);
hold off;

Akzeptierte Antwort

Rick Rosson
Rick Rosson am 3 Apr. 2012
Here's a start:
ctr = regionprops(keeperBlobsImage,'centroid');
theta = regionprops(keeperBlobsImage,'orientation');
xMajor = ctr(1) + [ -1 +1 ] * measurements(1)*cosd(theta)/2;
yMajor = ctr(2) + [ -1 +1 ] * measurements(1)*sind(theta)/2;
line(xMajor,yMajor);
  2 Kommentare
LoserG G
LoserG G am 5 Apr. 2012
thanks for the feedback, it was very useful.
ahmet ardahanli
ahmet ardahanli am 2 Aug. 2019
it was very useful. thanks but how to minor axis?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Lingaraj Hadimani
Lingaraj Hadimani am 24 Jun. 2016
Dear Sir,
After running the above code, I am getting the following error:
Undefined function 'mtimes' for input arguments of type 'struct'.
Error in axisMajMin (line 15) xMajor = ctr(1) + [ -1 +1 ] * measurements(1)*cosd(theta)/2;
I am naive to the Matlab. I would be thankful, if you could help me to solve this.

Kategorien

Mehr zu Convert Image Type finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by