Maximum line length in houghlines
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi. Is it possible to detect the lines using houghlines conditioned on maximum line length than the minimum line length. Meaning that, to detect only the lines that are less than or equal to X pixels.
Attached are some lines from the houghlines documentation.
lines = houghlines(BW,T,R,P,'FillGap',5,'MinLength',7);
figure, imshow(rotI), hold on
max_len = 0;
for k = 1:length(lines)
xy = [lines(k).point1; lines(k).point2];
plot(xy(:,1),xy(:,2),'LineWidth',2,'Color','green');
0 commentaires
Réponse acceptée
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur General Physics dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!