How to detect and separate squares and circles on image ?

조회 수: 51 (최근 30일)
Amar Mesic
Amar Mesic 2022년 1월 18일
편집: Adam Danz 2022년 1월 18일
Hi guys.As a total beginner in Matlab i couldn't find a way to do this task myself, so my last hope is someone here.I need to detect squares in one image,then separate them(hide everything else in picture)and count them.Same with circles. The picture is shown below.

채택된 답변

Adam Danz
Adam Danz 2022년 1월 18일
편집: Adam Danz 2022년 1월 18일
This should get you started. It uses regionprops to compute the circularity of each object. I've set a subjective threshold of 0.9 where circularity values >0.9 are defined as circles and <=0.9 are not circles. See inline comments for details. Requires Matlab R2019a or later.
% Read image file, convert to binary
file = 'image.png'; % full path is usually better
RGB = imread(file);
mask = imbinarize(rgb2gray(RGB));
% Detect shapes, compute circularity (Assumption: Shapes do not overlap)
stats = regionprops(~mask,{'Circularity','SubarrayIdx'});
circleThreshold = 0.9; % circularity values greater than this are cirlces
% Copy the colored image twice; eliminate circles and squares
RGBcircles = RGB;
RGBsquares = RGB;
for i = 1:numel(stats)
circularity = stats(i).Circularity;
if circularity <= circleThreshold
% remove object if it's not a circle
RGBcircles(stats(i).SubarrayIdx{1}, stats(i).SubarrayIdx{2},:) = uint8(255);
elseif circularity > circleThreshold
% remove object if it's a circle
RGBsquares(stats(i).SubarrayIdx{1}, stats(i).SubarrayIdx{2},:) = uint8(255);
end
end
% Count objects
nCircles = sum([stats.Circularity] > circleThreshold);
nSquares = sum([stats.Circularity] <= circleThreshold);
% Show results
figure
tiledlayout(2,2,'TileSpacing','compact','Padding','compact')
nexttile([1,2])
imshow(RGB)
title(sprintf('Original: %d objects', numel(stats)))
axis on
nexttile
imshow(RGBcircles)
title(sprintf('%d circles', nCircles))
axis on
nexttile
imshow(RGBsquares)
title(sprintf('%d squares', nSquares))
axis on
  댓글 수: 7
Image Analyst
Image Analyst 2022년 1월 18일
You can use area and perimeter to get circularities:
stats = regionprops(~mask, 'Area', 'Perimeter', 'SubarrayIdx');
allAreas = [stats.Area];
allPerimeters = [stats.Perimeter];
stats.circularities = (4 * pi * allAreas) ./ allPerimeters .^2;

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Image Analyst
Image Analyst 2022년 1월 18일
See my attached shape recognition demos. Circularity is one way. Also getting distance from centroid and counting peaks is another way. Most ways will breakdown as the shapes get smaller and more pixellated/quantized. And just because a shape has a certain number of vertices does not indicate a certain shape. For example a pentagon and star both have 5 outward vertices.

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by