How to detect only horizontal line exact parallel to one reference horizontal line in the same image?
Afficher commentaires plus anciens
matlab code for detecting only horizontal lines exact parallel to one reference horizontal line in the same image?
2 commentaires
Preethi
le 14 Oct 2016
hi,
If you have the co-ordinates of the reference line then 1. you can calculate the distance between the points.
2. keep y co-ordinate constant increase x xo-ordinate(which will be the next pixel) and again calculate distance. this distance should be same the distance calculated at starting point. make sure that the value is non-zero before calculating.
3. keep continuing for all rows
Deshbhushan Patil
le 18 Oct 2016
Réponses (2)
Swarooph
le 14 Oct 2016
0 votes
You can use hough transform to detect lines. Once lines are detected, you can use properties such as theta on the houghlines structure to filter your lines compared to a reference line.
1 commentaire
Deshbhushan Patil
le 18 Oct 2016
Deshbhushan Patil
le 22 Nov 2016
0 votes
Catégories
En savoir plus sur Hough Transform dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!