Detect correct number of CORNER coordinates from a

2019-07-24 11:54发布

I have a number of polygon images like a hexagon, a pentagon, any quadrilateral etc.. i need to generalize the detection technique to detect the RIGHT number of Corner coordinates.. no extra coordinates should be generated.

for eg:- the code should detect only 4 for a quadrilateral, 3 for triangle, 5 for pentagon and so on..

I used HARRIS corner detection to detect right corners by specifying the number of corners value but i cant use the same code for an image with different number of edges.

Reason for using the same code is i am trying to bulk process image -> Detect corners and print them... i cant change the code for each image.

Sample Images:-

Octagon:

enter image description here

Pentagon:

enter image description here

1条回答
Bombasti
2楼-- · 2019-07-24 12:38

There is a function called corner that works very well given the right input parameters.

For instance setting an appropriate QualityLevel give accurate results:

clear
clc

A = imread('Octagon.jpg');
A_gray = rgb2gray(A);

figure;
Ca = corner(A_gray,'QualityLevel',.2)

The coordinates ar stored in Ca as a N x 2 matrix. Here N = 8.

imshow(A)

hold on

scatter(Ca(:,1),Ca(:,2),80,'filled','k')
hold off

B = imread('Pentagon.jpg');
B_gray = rgb2gray(B);

figure;
Cb = corner(B_gray,'QualityLevel',.2)

imshow(B)

hold on

scatter(Cb(:,1),Cb(:,2),80,'filled','k')
hold off

Outputs:

enter image description here

and

enter image description here

Yay!

查看更多
登录 后发表回答