how to count number of Corner Detected in matlab
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I have implemented certain number of algorithms to detect corners in matlab like harris corner ,moravec corner ect.. Now my question is how to detect the number of corners detected. In other words i want the count of number of corners detected.
0 Kommentare
Antworten (1)
Wei Zhang
am 19 Okt. 2020
Harrispoint = detectHarrisFeatures(im_gray);
[Numberofcorners, ~] = size(Harrispoint);
0 Kommentare
Siehe auch
Kategorien
Mehr zu Feature Detection and Extraction 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!