Tagged Questions
Edge detection is a tool in computer vision used to find discontinuities (edges) in images
14
votes
4answers
2k views
Best articles to start learning about edge detection/image recognition
I am involved in a personal project which will require pretty extensive knowledge of edge detection and image segmentation/object recognition.
I know the importance of planning/understanding before ...
12
votes
3answers
934 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 > ...
8
votes
9answers
6k views
Detect an object in a camera image in C#
I have an image, taken from a live webcam, and I want to be able to detect a specific object in the image and extract that portion of it to do some further processing.
Specifically, the image would ...
7
votes
2answers
499 views
How to simulate clothes changes in 2D image?
I'm working on small project which requires: Change clothes (shirt/pants etc.) of a person in any 2D image he chooses to upload. So somehow edges needs to be detected and relevant areas are supposed ...
6
votes
1answer
445 views
ActionScript Face Detection
I'm looking to get the edges of user's head when the user is in front of a web-cam. I tried googling but to no avail. Can someone point me to some ActionScript examples for the same ?
Peace \m/
5
votes
1answer
2k views
Sobel Edge Detection in Android
As part of an application that I'm developing for Android I'd like to show the user an edge-detected version of an image they have taken (something similar to the example below).
To achieve this ...
4
votes
6answers
749 views
What is the fastest way of edge detection?
I am thinking of implement a image processing based solution for industrial problem.
The image is consists of a Red rectangle. Inside that I will see a matrix of circles. The requirement is to count ...
4
votes
2answers
977 views
Algorithm to implement a lasso selection tool?
I am developing a Mac OS X application which, as part of it's UI, will display many visual elements in it's main view which can be selected. These elements can be positioned really anywhere within the ...
4
votes
3answers
2k views
Implementing ridge detection
I'm trying to write a ridge detection algorithm, and all of the sources I've found seem to conflate edge detection with ridge detection. Right now, I've implemented the Canny edge detection algorithm, ...
3
votes
2answers
224 views
what are my research areas for image processing project?
For my final year project I'm doing a vehicle detail modification system. the system should be able to these following tasks. I'm using a size image of a vehicle taken from a fixed distance lets say ...
3
votes
1answer
594 views
EmguCV Cut Face+Neck Skin Only And Save New Image
In my app, I will input a human image and I want to get the face and neck only of that person as output in separate image. Example: Below image as input:(Source:http://www.fremantlepress.com.au)
...
3
votes
2answers
2k views
Canny Edge Detector in C
I am looking for a bit of clarification on how the algorithms implemented in Canny edge detection - Wikipedia entry - work. It seems pretty straightforward to perform noise reduction using a 2D ...
2
votes
2answers
62 views
How can I get the MATLAB source code of the Canny algorithm
How can I get the source code of the Canny algorithm as used by MATLAB, it is fast and accurate. I want the source code because I want to implement it on hardware.
2
votes
1answer
50 views
how to correct scan mistakes, like rotation?
I'm trying to scan some pictures together (personal 3x4 cm images) and then split them into separated images. the first step about scanning is done but about second step (edge detection and splitting) ...
2
votes
1answer
171 views
Genetic algorithms for image processing project
I'm thinking of starting a project for school where I'll use genetic algorithms to optimize digital sharpening of images. I've been playing around with unsharp masking (USM) techniques in Photoshop. ...
2
votes
1answer
79 views
What's a simple and efficient method for extracting line segments from a simple 2D image?
Specifically, I'm trying to extract all of the relevant line segments from screenshots of the game 'asteroids'. I've looked through the various methods for edge detection, but none seem to fit my ...
2
votes
1answer
341 views
openCV vs GIMP, edge detection fails in openCV
I am doing Sobel edge detection in openCV using the with following parameters:
cv.Sobel(mat, edgemat, 1, 1)
# mat -> source image
# edgemat -> taget output image
# 1 -> xorder (int) – Order ...
2
votes
2answers
729 views
Edge detection on C#
I have a black and white image like this (color overlays are mine, and can be removed):
I need to figure out the edge of the hand shown, how can I do that?
My current algorithm:
...
2
votes
1answer
886 views
Creation of edge detection based image in PHP
I'm curious - is it possible to ahieve in PHP:
1) Send image file to server
2) Process image = detect edges and create simple strokes basing on the edges
3) Save file on server / send it to user's ...
1
vote
1answer
58 views
DETECT the Edge of a Document in iPhoneSDK
I am looking something like attached image, How can I implement this in iPhoneSDK.
Can anybody suggest me some open source API or Algorithm Code to detect the corners of captured image of a document.
...
1
vote
0answers
45 views
Where to find materials about edge detection and which is good for virtual wardrobe application?
I am trying to build an application called virtual wardrobe where I am planning to capture the image of a human and then allow him to select different clothing and instantly see his virtual image ...
1
vote
1answer
43 views
Linking segments of edges
I have written a canny edge detection algorithm for a project. I want to know is there any method to link the broken segments of an edge, since i am getting a single edge as a conglomeration of a few ...
1
vote
1answer
52 views
Algorithm for finding the edges of an unknown # of shapes
I'm looking for an efficient algorithm that can give me all the edges of a random shape. I can write one, but if anyone knows of an existing solution that may be optimized, it would be appreciated as ...
1
vote
1answer
176 views
OpenCV C++/Obj-C: Detecting a sheet of paper / Square Detection
I successfully implemented the OpenCV square-detection example in my test application, but now need to filter the output, because it's quiet messy - or is my code wrong?
I'm interested in the four ...
1
vote
3answers
146 views
How to detect the Sun from the space sky in OpenCv?
I have task to detect the Sun from the space sky.
These are examples of the input images:
I've got such results after Morphologic filtering ( open for two times )
Here's the algorithm code of ...
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
0answers
231 views
OpenCV - Object Detection in Xcode
I am working on a project for object detection (not faces), I need some guidance on this subject.
I have read a lot of websites but none of them give good advice for doing anything with xcode (mac). ...
1
vote
1answer
170 views
Top head detection from overhead camera
I have a camera set up on a ceiling , capturing people standing in line. I need to count the amount of people. Currently I do that with background subtraction and Hough transform. The detector works ...
1
vote
1answer
294 views
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 scipy 0.9.0 on Windows 7 Ultimate (64 bit). Currently my code is as follows:
import ...
1
vote
1answer
607 views
Markerless AR lib for iPhone
I'm searching a functional AR Markerless library for the iPhone (from 3GS and supporting iOS 4.3 at least).
I've already tested a large amount of SDKs including Qualcomm AR, Layar, ARToolkit, but ...
1
vote
3answers
187 views
Roberts Operator just makes the image brighter
I posted another question about the Roberts operator, but I decided to post a new one since my code has changed significantly since that time.
My code runs, but it does not generate the correct ...
1
vote
1answer
294 views
Edge detection and removal
I am new to Image Processing. I am developing a web application. I need to take an image (free hand drawings) and remove parts of it. For example, take an image of cat and remove everything except its ...
1
vote
1answer
656 views
OpenCV cvCanny memory exception
I am trying to do the examples in the OpenCV book and I got to the part regarding cvCanny. I am trying to use it, but I keep getting a memory exception error of
Unhandled exception at 0x75d8b760 in ...
1
vote
1answer
627 views
openCV: Sobel edge detection gives me assertion error
I am using python-openCV. When using the Sobel edge detection I get the following assertion error:
src.size() == dst.size() && src.channels() == dst.channels() && ((src.depth() == ...
1
vote
2answers
536 views
Off-screen multiple render targets using Frame Buffer Object (FBO) or?
Situation: Generating N samples of a shape and corresponding edges (using Sobel filter or my own) with different transformations and rotations, while viewport (size=600*600) and camera remain ...
1
vote
2answers
242 views
What is the difference between 1x2 and 1x3 image gradient kernel filter definition
Recently I have a debate with my colleague on image gradient operation.
Normally, the image gradient is defined as:
dI_dx(j,k) = I(j,k+1) - I(j,k) # x partial derivative of image
dI_dy(j,k) = ...
1
vote
2answers
478 views
Determining Similarity of Edge-Detection-Processed Images
I was hoping that I could achieve some guidance from the stackoverflow community regarding a dilemma I have run into for my senior project. First off, I want to state that I am a novice programmer, ...
1
vote
0answers
30 views
Recommend libraries for a commercial project that would analyse the simple sort of graphics you have on a form (application form/bank form etc)?
I need to detect the editable bits on a form i.e. the bits you would write on with a paper version. There is a lot of stuff for edge detection etc but a lot of it seems far to over complicated for ...
1
vote
1answer
993 views
Canny edge detector for Android — StackOverflow on recursive function
I'm working on an augmented reality app for Android. I'm implementing Tom Gibara's canny edge detector class and have replaced BufferedImage, which is not supported by Android, with Bitmap.
The ...
1
vote
2answers
224 views
ITK Insight Toolkit - Slow Canny Filter
I am using the Canny Edge Detection of the ITK toolkit.
Compared to the OpenCV Canny Detection it seems to be pretty slow. My estimation is 0.5 sec for an image of size 144x176.
Or should the ...
1
vote
2answers
671 views
Measure distance between two or more image after edge detection feature extration
I need to read 10 images in 1 folder and do feature extraction onto 10 images.
Does anyone can suggest any good edge detection by using C++ / VB.Net / C# language?
After I can successfully detect the ...
1
vote
1answer
54 views
Differentiate table line from big letters
I'm doing some graphics processing and I have a logic where in I have a bitmap with edges and I disregard all table edges from the letters E.g.
0000000000
0111111110
0100000010
0102220010
0100200010
...
1
vote
2answers
276 views
How to measure lengths of edges in edge-detected images?
I want to get the boxes count in a warehouse by using image processing edge detection techniques. So I used Sobel algorithm to detect edges. Now I need to measure the edge length. Does anyone know how ...
1
vote
1answer
1k views
Accessing negative pixel values OpenCV
I am attempting to perform a zero-crossing edge detection on an image in OpenCV. I blur and use the cvLaplace() then scale it from (0, max). My question is: How can I access the pixel values in that ...
1
vote
1answer
1k views
Canny edge detection - grayscale images always coming up as 3-channel, unusable?
I am working through the book "Learning OpenCV" from the O'Reilly series and am trying to perform a canny edge detection sample.
Any grayscale image I choose seems to come up as having 3 channels, ...
1
vote
3answers
595 views
cleaning up noise in an edge detection algorithm
I recently wrote an extremely basic edge detection algorithm that works on an array of chars. The program was meant to detect the edges of blobs of a single particular value on the array and worked by ...
1
vote
3answers
226 views
Managed code (C#) vs Matlabs and C++ for speed
I am about to start developing an edge detection system (once I've read through a couple of books, which I'm doing so at good speed), but one thing I am wondering is the speed of an app like Matlabs ...
1
vote
4answers
1k views
Edge Detection and transparency
Using images of articles of clothing taken against a consistent background, I would like to make all pixels in the image transparent except for the clothing. What is the best way to go about this? I ...
1
vote
2answers
550 views
Resources about Shen Castan algorithm
I have started some simple project about Text Detection in images. And one of steps in solving this problem is implementation of Edge detector. I wanted to implement Shen Castan, because it gives ...
0
votes
0answers
11 views
DCT Coefficient Pixel Value, Edge Detection [migrated]
Getting the DCT coefficient based from what I read is usually done through a matrix, usually 8x8 or 16x16 using these formulas:
However, I would like to know if it is possible to determine the ...