Tagged Questions
The hough-transform tag has no wiki summary.
17
votes
5answers
8k views
Peak-finding algorithm for Python/SciPy
I can write something myself by finding zero-crossings of the first derivative or something, but it seems like a common-enough function to be included in standard libraries. Anyone know of one?
My ...
12
votes
3answers
927 views
Algorithm to detect corners of paper sheet in photo
What is the best way to detect the corners of an invoice/receipt/sheet-of-paper in a photo? This is to be used for subsequent perspective correction, before OCR.
My current approach has been:
RGB > ...
10
votes
2answers
561 views
Lane Detection in an artificial Environment
I'm writing an app that can detect lanes in a driving simulator. The environment is relatively simple, its mostly straight multi-lane roads and almost no curvature at all. At the moment, I can ...
9
votes
1answer
193 views
Splitting Coordinates into 3 Subspaces To Resolve Unboundedness
I'm trying to implement the Cascaded Hough Transform (I have already implemented the 'normal' version.) but I'm having trouble understanding the following:
After applying HT on an image, I am left ...
7
votes
4answers
6k views
Rectangle detection with Hough transform
I'm trying to implement rectangle detection using the Hough transform, based on
this paper.
I programmed it using Matlab, but after the detection of parallel pair lines and orthogonal pairs, I must ...
4
votes
2answers
94 views
Hough transform to determine lines and their width
Are there any implementations or papers that modify the Hough transform to detect the width of line segments? Hough space maxima can be used to determine potential lines, and line segments are groups ...
4
votes
3answers
476 views
Hough Transform for finding curve segments
Hough Transform can be used to extract lines from images. It can also be used to extract curves - this is a little harder though because higher dimensional Hough transforms are resource consuming. I ...
4
votes
2answers
559 views
Explain Hough Transformation
I am just being adventurous and taking my first baby step toward computer vision. I tried to implement the Hough Transformation on my own but I just don't get the whole picture. I read the wikipedia ...
4
votes
3answers
2k views
Hough transformation for iris detection in opencv
I wrote the code for hough transformation and it works well. Also I can crop the eye location of a face. Now I want to detect the iris of the crop image with applying the Hough ...
3
votes
1answer
118 views
Circular Hough Transform Improvements
I'm working on an iris recognition algorithm that processes these kind of images into unique codes for identification and authentication purposes.
After filtering, intelligently thresholding, then ...
3
votes
1answer
114 views
Using Hough transform to compute similarity
Can I use Hough matrix to compute similarity of two binary images in MATLAB?
[H,T,R] = hough(bw) H is Hough matrix and bw is binary image.
3
votes
3answers
575 views
accumulator filling for Hough transform
I wrote a piece of code that needs to be optimized. Just felt like checking with community to see if that code is indeed optimal. It fills up the accumulator for the Hough transform. I actually just ...
3
votes
3answers
2k views
OpenCV Python HoughCircles error
I'm working on a program that detects circular shapes in images. I decided a Hough Transform would be the best, and I found one in the OpenCV library. The problem is that when I try to use it I get an ...
3
votes
3answers
1k views
How to count number of lines (Hough Trsnform) in OpenCV
I am successfully able to detect hair strands in an image as lines. I see that the output image detects each hair as line.I use cvHoughLines2() with method parameter as CV_HOUGH_PROBABILISTIC.
Now I ...
2
votes
1answer
80 views
How to find the location of barcode in an image
How can I find the location of barcode in an image?
Original Image
2
votes
3answers
321 views
How can I access the OpenCV HoughCircles results in python?
I'm developing a proof of concept algorithm for iris-related biometrics. I'd like to be able to test it on a series of images, but in order to do so, I need to know the iris boundaries. Following the ...
2
votes
2answers
1k views
Horizontal Line detection with OpenCV
I am trying to find horizontal and vertical lines from an image which came from a "document". The documents are scanned pages from contracts and so the lines look like what you would see in a table or ...
2
votes
1answer
541 views
hough transform error in matlab and openCV?
I have been using the Hough transform in my application both using Matlab and OpenCV/labview and found that for some images, the hough transform gave an obviously wrong line fit (consistently)
Here ...
2
votes
1answer
160 views
How do we modify OpenCV and generate new DLLs
The OpenCV library is great. Most functions have the required functionality, however, I would like to modify some of the functions and recompile so that it fits my specific needs. how would we ...
2
votes
2answers
2k views
Houghlines in Matlab
After detecting the lines in an image using Houghlines, how can I use it to calculate the change in angle(rotation) of the lines of a reference image?
Thanks.
1
vote
2answers
79 views
Three Dimensional Hough Space
Im searching for radius and the center coordinates of circle in a image. have already tried 2D Hough transform. but my circle radius is also a unknown. Im still a beginner to Computer vision so need ...
1
vote
1answer
108 views
Identify directions of similar triangles in MATLAB
I have a BW bitmap of similar triangles. I am trying to identify the direction each triangle is facing. By "facing" I mean describing the direction in a way what is constant across all triangles, by ...
1
vote
2answers
102 views
having difficulties finding the radius of the circle
http://imageshack.us/photo/my-images/189/unledgev.png/
i h'v having problem with finding the radius of this circle. i converted the original image in to gray scale and performed a edge detection ...
1
vote
1answer
411 views
Android OpenCV Drawing Hough Lines
I am trying to use OpenCV on an android phone to detect lines. I modified the 'Tutorial 1 Basic - 2. Use OpenCV Camera' sample. I am also using Hough Line Transform as an example.
However, I am ...
1
vote
1answer
116 views
Using Hough Transform to find lines, but also need to track the points found on these lines
This isn't really a 2D problem, but actually a simplification of a 3D problem. So it's not a straight image analysis question.
I have a set of 2D points that I will use to render a 3D surface map. ...
1
vote
1answer
81 views
efficient line from hough transform coordinates
i'm working with a hough transform (polar coordinates). i'd like to compute a vector representation of a line from a coordinate from the hough transform.
my current implementation loops through all ...
1
vote
1answer
280 views
OpenCV: parabola detection using Hough Transform
I want to detect parabola(s) of type : y^2 = 4a*x in an image[size: 512 X 512]. I prepared an accumulator array, acc[size: 512 X 512 X 512]. I prepared a MATRIX corresponding to that image. I used ...
1
vote
2answers
311 views
Hough transform in MATLAB
Does anyone know how to use the Hough transform to detect the strongest lines in the binary image:
A = zeros(7,7);
A([6 10 18 24 36 38 41]) = 1;
Using the (rho; theta) format with theta in steps of ...
1
vote
1answer
278 views
How to find the coordinates of a point w.r.t another point on an image using OpenCV
Today I wrote a program for detecting circles using Hough Transform using OpenCV in C.
The program inputs 3 images, each image contains a fixed small circle and a big circle with variable position. ...
1
vote
1answer
160 views
Generating a histogram array for detecting curve segments using Hough Transform
I basically understand the theory behind using the Hough Transform to detect parabolas (i.e. y = a( x - x_c ) + y_c).
However, I want to implement it myself in MatLab so I can see it working (I don't ...
1
vote
1answer
433 views
How to convert coordinates back to image (x,y) from hough transformation (rho, theta)?
I have a vector of lines produced by calling hough transformation function in Opencv, and need to convert them back to image coordinates. I found this piece of sample code from Opencv's official ...
1
vote
3answers
1k views
Road Detection based on Hough Transform
Is it possible to detect and track a road, in an autonomous vehicle, using Hough Transform? If so, are there any algorithms that implement this already? Would love a link to one as I haven't really ...
1
vote
1answer
2k views
How to select maximum intensity in hough transform in Matlab?
After doing the hough transform in Matlab, how do I pick the lines so that I can compare between 2 or more images? Thanks.
I followed the example given by Amro below and actually what I wanted to ...
0
votes
1answer
80 views
Laser data line extract use hough transform in matlab
I have a set of laser range finder data, after transform it to global frame, it has negative and floating point data, for example the x-y coordinate are:
x=[1.1 -2.2 3.45]
y=[0 4.67 -5.6]
how to ...
0
votes
1answer
128 views
Hough transform MATLAB - custom implementation
I'm trying to implement hough transform for lines in matlab. And I have been struggling with this for days, I don't know why my code isn't working the way it should. Yes, it is part of the homework, ...
0
votes
4answers
143 views
Unknown code fragment - 0xff000000
I came across this program under hough transform in java example. But im doing my project in C#, i cannot figure out what is ment by this partial code "0xff000000 ". what this piece of code - ...
0
votes
1answer
94 views
Three Dimensional Hough Space Conversion
i need to implement three dimensional Hough space which detects a unknown radius of an circle. i implemented the 2d hough space. Actually i need to find the radius of the circles in the image. can ...
0
votes
3answers
235 views
Trying to find an algorithm to detect rectangles in images
At the moment I have detected edges in an image and I am planning to extract line segments from the edges using a hough transform. Once I have the segments I am planning on finding corners where two ...
0
votes
1answer
91 views
Detect the circle and measure pixels
In this image I need to detect the vehicle rims and measure the pixel length of the rims via image processing. I think I should follow the circular Hough Transform for circles. can you guys please ...
0
votes
2answers
899 views
Ellipse Detection using Hough Transform
using Hough Transform, how can I detect and get coordinates of (x0,y0) and "a" and "b" of an ellipse in 2D space?
This is ellipse01.bmp:
I = imread('ellipse01.bmp');
[m n] = size(I);
c=0;
for ...
0
votes
1answer
357 views
cvHoughLines2 memory leak
Does OpenCV method HoughLines2 has a memory leak that's not been fixed since now (version 2.1.0.6), or there's something wrong with this part of my code ?
CvMemStorage *storage = ...
0
votes
1answer
206 views
Horizon detection
Hi
How is the Hough transform used to detect the horizon in an image? How can we use texture information in images?
0
votes
0answers
245 views
What polar coordinate orientation does cvHoughLines2() use?
Just wanted to confirm my suspicion of the inconsistency.
If I have a straight diagonal line in the upper left quadrant, shooting from the center to the upper left corner, I would expect Hough to ...
0
votes
2answers
475 views
Search for lines with a small range of angles in OpenCV
I'm using the Hough transform in OpenCV to detect lines. However, I know in advance that I only need lines within a very limited range of angles (about 10 degrees or so). I'm doing this in a very ...
0
votes
2answers
236 views
logic behind the code
could any one explain me logic behind this code??
pt1.x = cvRound(x0 + 1000*(-b));
pt1.y = cvRound(y0 + 1000*(a));
pt2.x = cvRound(x0 - 1000*(-b));
pt2.y = cvRound(y0 - 1000*(a));
0
votes
2answers
2k views
Hough Transform question
I implemented Hough Transform in C# this way:
List<Point> forme = new List<Point>();
forme.Add(new Point(260, 307));
forme.Add(new Point(268, 302));
...