Please suggest me some methods on thick horizontal line detection in images. Any papers, libraries etc please.
相关问题
- How to get the background from multiple images by
- How to get the bounding box of text that are overl
- How to plot line in matlab with theta/rho data
- Create depth map from 3d points
- Tensorflow error: FailedPeconditionError: attempti
相关文章
- how to tell if android user came from home screen
- how to calculate field of view of the camera from
- Fastest way to compute image dataset channel wise
- Adb install progress bar
- Drawing a straight line iOS
- Which computer vision library & algorithm(s), for
- Image Enhancement using combination between SVD an
- How to get the transformation matrix of a 3d model
OpenCV is a good library. You may use a Hough transform to detect lines.
Note that the answer may depend on the quality of your images, some methods can be more effective that other ones.
If the line images are really easy to detect (say you can find the line from ten yards away), just scale the image from (width, height) to (1, height) and find the y-coordinate of the darkest pixel. Use CV_INTER_AREA when resizing.
Binary threshold the image, then use a combination of morphological operations to detect "borders that are thicker then N1 but thinner than N2" to produce several images and combine (logically AND) them to selectively detect borders of a certain expected thickness.