Top "Edge-detection" questions

Edge detection is a tool in computer vision used to find discontinuities (edges) in images or graphs.

Image Processing - Implementing Sobel Filter

I've got a task to implement Sobel filter which is, as you know, an image processing filter for edge detection. …

image-processing edge-detection
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 …

image-processing opencv edge-detection hough-transform image-segmentation
How to control node placement in graphviz (i.e. avoid edge crossings)

I'm using graphviz (dot) to generate the graph you can see below. The node in the lower left corner (red …

graphviz edge-detection dot
Sobel filter kernel of large size

I am using a sobel filter of size 3x3 to calculate the image derivative. Looking at some articles on the …

image-processing computer-vision edge-detection sobel
Applying the Sobel filter using scipy

I'm trying to apply the Sobel filter on an image to detect edges using scipy. I'm using Python 3.2 (64 bit) and …

python scipy edge-detection
OpenCV's Canny Edge Detection in C++

I want to extract the edges of hand but I get the following result. I've tried adjusting the low and …

c++ opencv contour edge-detection
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 …

opencv image-processing feature-detection edge-detection hough-transform
OpenCV Edge/Border detection based on color

I'm fairly new to OpenCV, and very excited to learn more. I've been toying with the idea of outlining edges, …

c++ opencv edge-detection
How can I select the best set of parameters in the Canny edge detection algorithm implemented in OpenCV?

I am working with OpenCV on the Android platform. With the tremendous help from this community and techies, I am …

opencv image-processing edge-detection image-segmentation
Canny edge detector in MATLAB

I am trying to perform canny edge detector without calling the canny function in Matlab. I wrote a few functions …

matlab image-processing computer-vision edge-detection