The Hough transform is a feature extraction technique used in image processing community.
1
vote
2answers
56 views
A good approach for detecting lines in an image?
I've written some code that uses OpenCV libraries to detect white lines painted on grass. I need someone's opinion on the approach I used (as I'm sure there's a much better way than mine). Also, the ...
-3
votes
0answers
24 views
Can someone explain me this this code for iris detection? [closed]
It is written in matlab, it is used for iris recognition on a image . I know what it has to do but I dont know how it doing it , I have hough transform function too, it finding circles in the image
...
0
votes
0answers
69 views
How to use Matlab image processing toolbox Hough transform for detecting not just lines and circles?
I'm working on an image processing project with Matlab. I know about houghlines and houghcircle functions but I want to detect other things too with Hough transform. For example I want to detect a ...
0
votes
1answer
52 views
TypeError: expected a single-segment buffer object
I am trying to use OpenCV and Python to detect circular shapes in a webcam capture. Im using a Hough transform for the circle detection, which in it self took several hours for me to figure out (and ...
-5
votes
0answers
93 views
ellipse detection using hough transform code [closed]
We are university students.(senior) We are researching about the hough transform. And we need a 'ellipse detection using hough transform code'
Our professor said it would be easy to find on the ...
1
vote
2answers
58 views
Hough transform returns the collinear and semi collinear points
I have points in an image. I need to detect the most collinear points. The fastest method is to use Hough transform, but I have to modify the opencv method. Actually I need that the semi collinear ...
0
votes
0answers
14 views
Is there a Hough Transform with “glue” constraints?
A Hough transform is a specific method that is used a lot in computer vision to map 2D straight lines to points in a 2D Hough space. It can be seen as:
a specific form of the Radon transform (1)
a ...
1
vote
0answers
51 views
Reading dots of a dice using Hough circles
I have an image of a dice. I want to count the number of dots. I first tried just separating it using the color of the dots and reading the number of connected paths. But it is failing since the photo ...
0
votes
0answers
51 views
Hough lines tansform opencv program breaks
I am trying to use houghlines transform. The function is working well but program breaks after imshow("detected lines",cdst) somewhere in free.c file in free_base function.
please help me out
Here ...
0
votes
1answer
69 views
Implementing Hough Transform for Lines
I am trying to implement Hough Transform for line detection in an already pre-processed image.
So my input image is a black-white edge image, 0 - background and 255 - foreground. I do not wish to use ...
0
votes
1answer
165 views
Detect colored spheres with OpenCV using HSV and HoughCircles
I am trying to detect colored spheres with openCV using an Iphone. For the first test case I was using one single yellow marble with the given code:
cv::Mat thresholdHSV;
cv::Mat imgHSV;
...
2
votes
1answer
106 views
Where are the C++ implementations of the advanced ellipse detection algorithms?
I'm a novice in the field of ellipse detection/extraction. But I know this topic has a long history. Although there are tons of papers addressing ellipse detection, I can hardly find any C++ ...
0
votes
0answers
63 views
hough transform along sub image in opencv - constraining centers to that area
The images I'm dealing with have a number of circles, all along a straight line.
I have already found the equation of a line in my images roughly through these circles using features that I know ...
0
votes
1answer
346 views
Generalized Hough Transform and OpenCv
I’m looking for an OpenCv implementation of Generalized Hough Transform, or at least something in c++.
Despite I searched for a while, I’ve not been able to find nothing interesting.
Any suggestion?
1
vote
1answer
78 views
Transforming Hough Image to different origin in matlab
I'm using the image processing toolbox implementation of the Hough transform in Matlab.
It works well, but it puts the origin at the upper left corner of the image and that results in an ...
0
votes
1answer
165 views
Python openCV detect parallel lines
I have an image and it has some shapes in it. I detected lines with using hough lines. How can I detect which lines are parallel?
0
votes
1answer
60 views
Setting roi to eyes and mouth only in camera capture and further processing
I am making a drowsiness detection system. so for that i want to set the ROI of the camera capture to eyes and mouth only and i further want to note their characteristics. i am able to set the ROI ...
0
votes
1answer
149 views
Using Hough Transform in robot navigation
My goal to for an autonomous robot to navigate a walled mazed using a camera. The camera is fixed atop the robot and facing down to be able to view the walls and the robot from above.
The approach I ...
0
votes
1answer
136 views
Understanding the Hough transform for lines
I am trying to understand exactly how it works. I believe I understand the concept:
For all edge pixels, find all lines that go through it, and for each of these lines up the accumulator array ...
0
votes
0answers
408 views
Detecting specific lines using hough transform/houghlines in matlab
I am currently doing a matlab project where I must isolate a barcode from a image and read the barcode information.
The method that I am using is the Hough Transform, once the transform has completed ...
1
vote
2answers
65 views
no result after hough filter
In the program I use a canny filter like this:
circles = cv2.HoughCircles(cannyresult,cv2.cv.CV_HOUGH_GRADIENT,1,10)
if circles is None:
print'no '
Then the terminal prints no which ...
1
vote
1answer
229 views
Standard Hough Lines in EMGU CV
I am in need of using the standard Hough Transformation (instead of the using the HoughLinesBinary method which implements Probabilistic Hough Transform) and have attempted doing so by creating a ...
0
votes
0answers
309 views
To find minute circles using hough circle function in opencv for iris
I need to detect the iris of the eye picture I have using HoughCircle function thats available in opencv2. So ,
// Read the image
src = imread("D:/001R_3.png");
if( !src.data )
...
0
votes
0answers
131 views
Find angle between two lines using JavaCV
I'm trying to find the angle between two lines. I've used Canny to get the outline of an object, and this is the result:
http://i.imgur.com/xnr2wf7.png
I want to determine the angle at the bottom, ...
1
vote
1answer
110 views
Find slope (angle) of each line of the image
I have to calculate a slope (or an angle) of every single detectable line of the image. And even to detect the changes of the slope of the line, if it is possible.
I've performed 2D Fourier and I know ...
0
votes
1answer
97 views
How to get back image from contours?
I am working on a project where I reduced my image to one object's contours(Actually its the pupil of the eye).
Now I want to apply hough transform on the image that contains the contour of the ...
-3
votes
1answer
128 views
circle detection using python, numpy ?
I want to implement hough trasform algorithm using python,numpy and scipy.
I do not want to use opencv.
I am trying to detect Center of circle or circle in image without known radius.
can ...
1
vote
0answers
178 views
Python Opencv Hough Circles , fatal errors in storage access
I am trying to detect circles using a Hough transform with opencv.
When there is no circle in the scene I get a null pointer error. I can handle this with exceptions I think.
However, when there is ...
0
votes
0answers
109 views
Detect aligned points in set of points OpenCV
Given a set of points on an image, I want to detect groups of aligned points like this:
How can I do this? Any help will be appreciated.
0
votes
0answers
399 views
Circular Hough Transform using gradient
I'm trying to implement hough transform algorithm to detect circles in a gray scale image.
I ran edge detector and used the gradient's orientation at each point in order to get the line on which the ...
0
votes
0answers
123 views
Why i get this error with opencv and houghlines?
I'm using VS2010, OpenCV 2.1, Windows XP and I get the error:Exception at memory location
Generally this is because something in NULL, but this is not the case:
VideoCapture cap = VideoCapture(); ...
3
votes
1answer
304 views
Detect a shape that is close to a circle using Hough in OpenCV
I'm still a beginner in OpenCV, and I'm trying to detect circles using HoughCircles with the following parameters:
HoughCircles(gray, circles, CV_HOUGH_GRADIENT,2, gray.rows/8, 200, 90, 0, 130 );
...
0
votes
0answers
199 views
Custom Hough Transform function
I'm implementing a custom hough transform in MATLAB, here's my code so far:
function [ H ] = HoughTransform(M)
%M is a boolean matrix containg 1's where there is an edge 0 otherwise
...
1
vote
0answers
169 views
Detecting quadrilateral shapes from random set of lines segments
the image attached is the output of Hough Transform of Opencv 2.4.2
Could you please advise me with the best algorithm to detect the best Quadrilateral (not always rectangular) shape from these ...
0
votes
2answers
346 views
How to detect circles accurately
Is there any way to accurately detect circles in opencv? I was using hough transform which give me good result but most of the time, shadow of the object and surrounding,light etc gives bad results, ...
4
votes
3answers
714 views
How to detect a quadrilateral shape in an image in Java?
I want to detect a quadrilateral shape in an image in Java. I can use the HoughLinesP method in OpenCV (using javaCV for opencv java binding) to detect line segments. But I can't figure out how to ...
0
votes
1answer
760 views
how to use hough circles in cv2 with python?
I have the following code and I want to detect the circle.
img = cv2.imread("act_circle.png")
gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
circles = ...
1
vote
1answer
298 views
How to get the value of radius of a circle
For the Hough circle transformation, when I had detected the circle, how can I get the value of the circle's radius and the center point? I am doing an iris recognition system.
CvSeq* circles = ...
2
votes
1answer
132 views
Getting more information from CvHoughCircles
I am using the HoughCircles function of OpenCV.
Is there any way I can get more information about the results besides an ordered list of circle center and radius?
I'd like to get the score of each ...
3
votes
1answer
2k views
OpenCV: Using Hough Circle Transformation to detect iris
I am newbie to openCV, but I want to create iris recognition program. Although the system with webcam can detect the eyes, it cannot, however, detect the circular iris. I am using the Hough Circle ...
4
votes
1answer
345 views
OpenCV Unwanted Color Mixing
I've written a short program that demonstrates Hough Line Detection using OpenCV.
In the final step, the code takes the original, blurred, greyscale image, overlays the canny edge detection results, ...
0
votes
1answer
720 views
Unable to locate the lines using hough transform using opencv
I want to find lines in the following image using hough transform and I am failing miserably. Could somebody tell where the problem is?
I am using the standard code from opencv.
I am using python ...
1
vote
1answer
904 views
Opencv - cvHoughLines2
I am reading Learning openCV and I came across description of cvHoughLines2 in this book. But I can't understand one thing.
I read about Hough transform and I think I understand it, so the parameters ...
1
vote
1answer
566 views
OpenCV library for tennis ball detection using Hough Circle Transformation
I am using opencv library for tennis ball detection for my project in real time. I am using Hough circle transform method for detection, what it does is find a number of circles in the image including ...
2
votes
1answer
359 views
compare arbitrary shapes using generalized hough transform
I am using generalized hough transform to differentiate between various arbitrary shapes. Few shapes that I'll be dealing with is shown below:
http://i50.tinypic.com/2u550t5.png
I have implemented ...
3
votes
1answer
1k views
OpenCV Hough strongest lines
Do the HoughLines or HoughLinesP functions in OpenCV return the list of lines in accumulator order like the HoughCircles function does? I would like to know the ordering of lines. It would also be ...
1
vote
2answers
1k views
HoughCircles Parameters to recognise balls
After processing an image by converting it to grey scale and then blurring it, I'm trying to apply a Hough Circle Transformation with these parameters:
CV_HOUGH_GRADIENT
dp = 1
min_dist = 1
param_1 ...
4
votes
1answer
390 views
Generalized Hough Transform in CUDA - How can I speed up the binning process?
Like the title says, I'm working on a little personal research into parallel computer vision techniques. Using CUDA, I am trying to implement a GPGPU version of the Hough transform. The only problem ...
1
vote
2answers
241 views
exact working of hough transform in matlab
Can anyone guide me how the function 'hough transform' works in matlab?? The problem is that i have an image containing two straight rectangles and one rectangle is tilted at some angle. According to ...
0
votes
1answer
839 views
Hough Transform -Alternate method [closed]
I need an explanation of the paper "Efficient technique for circle detection using hypothesis filtering and hough transform." by W.C.Y. Lam and S.Y.Yuen . Can anybody help me understand it???
I am ...


