Linked Questions
12 questions linked to/from Horizontal Line detection with OpenCV
2 votes
3 answers
8k views
Detect horizontal white lines from image and get their coordinates with OpenCV Python
My goal is separate web pages into parts (header, contacts, footer,...) with OpenCV Python. I converted the image of the web page to grayscale and used Canny. Here's the result: As you can see, the ...
3 votes
3 answers
4k views
Horizontal and vertical edge profiles using python-opencv
I am trying to detect a vehicle in an image (actually a sequence of frames in a video). I am new to opencv and python and work under windows 7. Is there a way to get horizontal edges and vertical ...
3 votes
0 answers
6k views
OpenCV Python - How to implement RANSAC to detect straight lines?
I'm trying to detect lines on an image which contains a road. Using gaussian smoothing and Canny edge detection, I reached a wall while trying to implement RANSAC. I basically don't know a single step ...
1 vote
2 answers
4k views
Extract text with strikethrough from image
Here's an example image -> I would like to extract text that has text-decoration/styling of strikethrough. So for the above image I would like to extract - de location How would I do this ? Here's ...
1 vote
1 answer
2k views
Extract coordinates from image file
How to get an array of coordinates of a (drawn) line in image? Coordinates should be relative to image borders. Input: *.img . Output array of coordinates (with fixed step). Any 3rd party software to ...
3 votes
2 answers
1k views
Can tesseract correctly recognise underscores in images?
I have pictures that look like this: And I am trying to get the output: "_ _ _ _ _ _ _ _ _ _ c _." I was working in Python 3.6 and tried to use tesseract for this. What I got so far is the following ...
1 vote
1 answer
2k views
Line detection with OpenCV
I'm trying to detect the presence of lines from a picture of a geometrical drawing. For example, there is a triangle, and I'm looking for the bisector of one of its angles. So I know exactly where and ...
0 votes
2 answers
1k views
is there a function to count the number of horizontal lines in an image, and return it in a string type
This is the image in which I want to count the lines I've tried this code already: Horizontal Line detection with OpenCV but it returns the output as an image too, as well as this code: Python How ...
4 votes
2 answers
513 views
Categorize different images
I have a number of images from Chinese genealogies, and I would like to be able to programatically categorize them. Generally speaking, one type of image has primarily line-by-line text, while the ...
1 vote
1 answer
391 views
Detecting location of translucent black rectangluar area in image matrix Python OpenCV
Say I have an image like this: I want the location of the start and end points of the black strip in the image matrix. I have tried several method like horizontal line detection in Python OpenCV and ...
0 votes
0 answers
207 views
Edge Detection of object among objects
I want to detect edges of shelf only to count number of shelves and count of partitions in shelf. I used OpenCV but it detects edges of all objects in images but I don't want to detect edges of other ...
0 votes
0 answers
107 views
How to extract number plate of white colored vehicle [duplicate]
Possible Duplicate: segment digits in an image - Matlab I am working on vehicle number plate recognition system using MATLAB. I tried extracting the number plate using threshold and mathematical ...