Tagged Questions

Computer vision enables images, or sequences of images, to be processed by a computer using an algorithm. The aim of the algorithm is to extract information from the image. Sometimes this information produces an updated image or sometimes other measurements. An example of an updated image is to obtain the edges in the image --- called edge detection.

learn more… | top users | synonyms (1)

69
votes
12answers
29k views

Face recognition Library

I'm looking for a free face recognition library for a university project. I'm not looking for face detection. I'm looking for actual recognition. That means finding images that contain specified ...
29
votes
7answers
3k views

What are good algorithms for vehicle license plate detection?

Background For my final project at university, I'm developing a vehicle license plate detection application. I consider myself an intermediate programmer, however my mathematics knowledge lacks ...
22
votes
5answers
4k views

Viola-Jones' face detection claims 180k features

I've been implementing an adaptation of Viola-Jones' face detection algorithm. The technique relies upon placing a subframe of 24x24 pixels within an image, and subsequently placing rectangular ...
20
votes
7answers
5k views

How can I determine distance from an object in a video?

I have a video file recorded from the front of a moving vehicle. I am going to use OpenCV for object detection and recognition but I'm stuck on one aspect. How can I determine the distance from a ...
20
votes
4answers
11k views

How to use SIFT algorithm to compute how similiar two images are?

I have used the SIFT implementation of Andrea Vedaldi, to calculate the sift descriptors of two similar images (the second image is actually a zoomed in picture of the same object from a different ...
19
votes
6answers
686 views

How to train an artificial neural network to play Diablo 2 using visual input?

I'm currently trying to get an ANN to play a video game and and I was hoping to get some help from the wonderful community here. I've settled on Diablo 2. Game play is thus in real-time and from an ...
18
votes
3answers
16k views

What are some popular OCR algorithms?

I've been interested in machine learning and computer vision for a while, so I've decided to attempt to build a simple Optical Character Recognition demo in C#. I'm looking for a description of some ...
17
votes
3answers
465 views

How do you judge the (real world) distance of an object in a picture?

I am building a recognition program in C++ and to make it more robust, I need to be able to find the distance of an object in an image. Say I have an image that was taken 22.3 inches away of an 8.5 ...
17
votes
7answers
3k views

Where do I start learning about image processing and object recognition?

I'm interested in writing some basic computerized object recognition application, so I figure I need some theoretical background in image processing algorithms, along with some AI for decision making ...
16
votes
1answer
1k views

Implementing Watershed Segmentation in Java

I'm trying to write my own implementation of Watershed Segmentation for a project. I have a version that returns something resembling the correct segmentation given really trivial pictures. ...
16
votes
2answers
456 views

Camera Module Focus Adjust using Contrast Transfer Function

Currently I'm designing a test program for mobile phone camera module. I'm trying to control a precision motor that adjust the focus barrel of the camera to get optimum focus point. I've been looking ...
16
votes
4answers
14k views

Face detection in java

Can anyone recommend a decent java library for face detection (recognition not required, just detection). The library would preferably be pure java (e.g. no dependencies on other native libs, DLLs or ...
15
votes
6answers
355 views

Measuring the average thickness of traces in an image

Here's the problem: I have a number of binary images composed by traces of different thickness. Below there are two images to illustrate the problem: First Image - size: 711 x 643 px Second Image ...
15
votes
9answers
10k views

How to recognize vehicle license / number plate (ANPR) from an image?

I have a web site that allows users to upload images of cars and I would like to put a privacy filter in place to detect registration plates on the vehicle and blur them. The blurring is not a ...
14
votes
4answers
4k views

Logo recognition in images

Does anyone know of recent academic work which has been done on logo recognition in images? Please answer only if you are familiar with this specific subject (I can search Google for "logo ...
14
votes
5answers
660 views

computer vision research related blog

Does anyone know any authoritative online sources on computer vision. I am mainly interested in blogs or places where an open discussion is feasible, with a tendency towards academic computer vision ...
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 ...
14
votes
6answers
5k views

Robust Face Detection in C/C++?

I'm looking for a robust face detection algorithm/library, preferably in C (C++ is okay too; other languages I can port if necessary). I've used OpenCV's implementation in the past, but I don't think ...
13
votes
8answers
3k views

What algorithm could be used to identify if images are the “same” or similar, regardless of size?

TinEye, the "reverse image search engine", allows you to upload/link to an image and it is able to search through the billion images it has crawled and it will return links to images it has found that ...
13
votes
6answers
3k views

Machine vision in Python

I would like to perform a few basic machine vision tasks using Python and I'd like to know where I could find tutorials to help me get started. As far as I know, the only free library for Python that ...
13
votes
14answers
3k views

What is the best library for computer vision in C/C++? [closed]

What libraries do I have to pick from when working with Computer Vision in C/C++? I realize that Google has a lot of good results, but maybe there's great libraries out there that it missed.
12
votes
2answers
384 views

How to generate a point cloud?

Using the setup above, I have the hough equations of the laser-lines on both sides of the plane. I have even filtered out the pixel points on the object. I also have extrinsic parameters of my camera ...
12
votes
2answers
850 views

State of the art in face recognition

I have looked a little bit into face recognition recently. However I am overwelmed by the number of algorithm that there are. PCA, LDA, IDA, Gabor Wavelets, AAM ... Say you wanted to make something ...
12
votes
4answers
11k views

How can I detect and track people using OpenCV?

I have a camera that will be stationary, pointed at an indoors area. People will walk past the camera, within about 5 meters of it. Using OpenCV, I want to detect individuals walking past - my ideal ...
12
votes
8answers
2k views

Learning about Computer Vision

I am really intrigued by the field of computer vision and the potential it has. Are there any examples (preferably implemented in .NET) which I can study along with a reference book?
11
votes
4answers
217 views

How do I find Wally with Python?

Shamelessly jumping on the bandwagon :-) Inspired by How do I find Waldo with Mathematica and the followup How to find Waldo with R, as a new python user I'd love to see how this could be done. It ...
11
votes
1answer
195 views

Hidden Markov Models with C++

I've been looking into implementations of Hidden Markov Models in C++ lately. I was wondering If I could use any of the existing HMM libraries written in C++ out there to use with Action Recognition ...
11
votes
7answers
2k views

How to begin with augmented reality?

I'm currently an undergrad in computer science and I'll be entering my final year next year. Augmented reality is something I find to be a really interesting topic, but I have no idea where to start ...
11
votes
7answers
7k views

Image comparison algorithm

I'm trying to compare images to each other to find out whether they are different. First I tried to make a Pearson correleation of the RGB values, which works also quite good unless the pictures are a ...
11
votes
12answers
2k views

How can I learn the math necessary for working with computer vision?

I know that computer vision involves a lot of math, but I need some tips about how programmers gain that knowledge. I've started to use the OpenCV library but I have some major problems in ...
10
votes
5answers
169 views

How to extract a stroke from a Chinese character

I've been trying many times to create an algorithm to extract stroke information from Chinese characters. I've tried various methods but none was very satisfying, probably because of my limited ...
10
votes
1answer
240 views

Automated My Little Pony detection and classification

What I'm looking for is advice from people with experience with computer vision on what approach or algorithm would be best on this particular problem. I'm an experienced programmer (mostly .NET), but ...
10
votes
1answer
386 views

Improving k-means clustering

My lecture notes on computer vision mention that the performance of the k-means clustering algorithm can be improved if we know the standard deviation of the clusters. How so? My thinking is that we ...
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 ...
10
votes
9answers
6k views

How to recognize rectangles in this image?

I have a image with horizontal and vertical lines. In fact, this image is the BBC website converted to horizontal and vertical lines. My problem is that I want to be able to find all the rectangles in ...
10
votes
2answers
17k views

Convert RGB to Black & White in OpenCV

i need to know the function that convert RGB image into black &white(binary image) & i need to know if i can save modified image after conversion on hard disk if so what's this function?
9
votes
2answers
118 views

Supervised Motion Detection Library

Can anyone recommend a motion detection library that's trainable via a supervised learning algorithm? I have an IP webcam that I'm trying to detect motion from. I'm been using the motion software ...
9
votes
2answers
315 views

David Lowe's SIFT — Question about scale space and image coordinates (weird offset problem)

I realize this is a highly specialized question.. but here goes. I am using an implementation of SIFT to find matches on two images. With the current implementation that I have, when I match an image ...
9
votes
2answers
210 views

Framework/tool for processing C++ unit tests with numerical output

I am working on a C++ application that uses computer vision techniques to identify various types of objects in a sequence of images. The (1000+) images have been hand-classified, so we have an XML ...
9
votes
4answers
1k views

Comparing SIFT features stored in a mysql database

I'm currently extending an image library used to categorize images and i want to find duplicate images, transformed images, and images that contain or are contained in other images. I have tested the ...
9
votes
3answers
1k views

Good way to identify similar images?

I've developed a simple and fast algorithm in PHP to compare images for similarity. Its fast (~40 per second for 800x600 images) to hash and a unoptimised search algorithm can go through 3,000 images ...
9
votes
4answers
4k views

Computer Vision and AR libraries availabe for Android?

I am starting out as an Android Developer, and I would like to know if there are any Computer vision libraries or Augmented Reality libraries for the Android SDK, as I am planning to use these ...
8
votes
4answers
202 views

Debugging of image processing code

What kind of debugging is available for image processing/computer vision/computer graphics applications in C++? What do you use to track errors/partial results of your method? What I have found so ...
8
votes
3answers
3k views

simple and fast method to compare images for similarity

I need a simple and fast way to compare two images for similarity. I.e. I want to get a high value if they contain exactly the same thing but may have some slightly different background and may be ...
8
votes
3answers
2k views

What is the best open source pure java computer vision library?

As a practical developer I would like to make a good algorithm for my specific task, built from blocks, like a 'boundary extraction', or 'gamma correction' and so on, but I don't want to implement the ...
8
votes
5answers
333 views

Good source for machine learning datasets in computer vision

What is a good source for datasets that can be used to train machine learning algorithms, specifically image sets for computer vision projects. The best source I've found so far is: ...
8
votes
5answers
2k views

Marker Recognition on Android (recognising Rubik's Cubes)

I'm developing an augmented reality application for Android that uses the phone's camera to recognise the arrangement of the coloured squares on each face of a Rubik's Cube. One thing that I am ...
8
votes
6answers
3k views

image focus calculation

I'm trying to develop an image focusing algorithm for some test automation work. I've chosen to use AForge.net, since it seems like a nice mature .net friendly system. Unfortunately, I can't seem to ...
8
votes
3answers
666 views

Detecting image equality at different resolutions

I'm trying to build a script to go through my original, high-res photos and replace the old, low-res ones I uploaded to Flickr before I had a pro account. For many of them I can just use Exif info ...
8
votes
3answers
3k views

Face detection and comparison

I'm running a small research on face detection and comparison for my article. Currently, I'm using rapid face detection based on haar like features based on OpenCV cascade (I'll implement learning ...

1 2 3 4 5 16