Emgu CV is a cross-platform .NET wrapper to the Intel OpenCV image processing library. Allowing OpenCV functions to be called from .NET compatible languages such as C#, VB, VC++, IronPython etc. The wrapper can be compiled in Mono and run on Linux or Mac OS X.
13
votes
3answers
25k views
How to create Haar Cascade (xml) for using with OpenCV?
If you familiar with OpenCV library, you know what is haar cascade image object detection. I mean image object detection like human face or something else.
I have haar cascade xml for face detection, ...
12
votes
6answers
3k views
People Counting System
I want to develop a "People Counting System" using OpenCV (or Emgu CV).
Please guide me on how to implement or lead me to some examples or open source projects.
(I have done some work: extracting ...
12
votes
2answers
1k views
Access Violation Exception mystery
I've been working with EMGU+OpenCV for quite some time and ran into this AccessViolationException mystery.
First thing first, the code:
class AVE_Simulation
{
public static int Width = ...
10
votes
3answers
4k views
How do I choose an image interpolation method? (Emgu/OpenCV)
The image resizing function provided by Emgu (a .net wrapper for OpenCV) can use any one of four interpolation methods:
CV_INTER_NN (default)
CV_INTER_LINEAR
CV_INTER_CUBIC
CV_INTER_AREA
I roughly ...
10
votes
5answers
6k views
Face gender detection library [closed]
I'm looking for an SDK or library that can detect faces in a webcam stream, and detect gender. Free or paid, C++ or C# under Windows.
Any suggestions?
9
votes
7answers
12k views
Dice face value recognition
I’m trying to build a simple application that will recognize the values of two 6-sided dice. I’m looking for some general pointers, or maybe even an open source project.
The two dice will be black ...
8
votes
6answers
5k views
EmguCV - nvcuda.dll could not be found
I've been asked to build a real-time face recognition application, and after some looking around I've decided to try EmguCV and OpenCV as the facial recognition library.
The issue I'm having at the ...
7
votes
1answer
884 views
Is it possible to find the edge of a “spotty” region in emgucv?
I have an image that looks like this:
and I want to find the edges of the dark part so like this (the red lines are what I am looking for):
I have tried a few approaches and none have worked so ...
7
votes
2answers
4k views
Need Haar Casscades for Nose, Eyes & Lips(Mouth)
I need Haar Cascades xml files for Mouth, Eyes & Nose. Do provide me useful links.
Any kind of help would be highly appreciated.
6
votes
2answers
951 views
Motion Tracking vs Blob Tracking
Hi all I have a simple question that I have been struggling with....what is the difference, if any, between motion component (blob?) tracking and blob tracking? As defined by OpenCV.
Does one cover ...
6
votes
1answer
3k views
Calling the on-screen keyboard using a button in C#
I am creating a windows application using C#, where in a button on the GUI when clicked, should display the on-screen keyboard.
Would appreciate if any help is granted. thanks.
Also, since I am ...
6
votes
1answer
3k views
EMGU CV SURF image match
I have been working with the SURF feature detection example from the EMGU CV library.
So far it's working amazingly; I can detect matching objects between 2 given images but I have run into a ...
5
votes
4answers
3k views
How do I equalize contrast & brightness of images using opencv?
I've got an image that I've scanned, but the white paper is not white on the screen. Is there a way to equalize the contract/brightness to make the background whiter?
Update
I've tried the ...
5
votes
2answers
5k views
How to cut a sub-part of an image using Emgu CV (or OpenCV)?
I want to cut a sub-purt of an image (or crop it) using Emgu CV (or OpenCV) and calculate average color of that part; looking for changes.
Thanks
5
votes
1answer
5k views
Motion tracking using Emgu CV (or OpenCV)
How can I do motion tracking using Emgu CV or OpenCV?
What are different ways of doing it?
I want to track objects against a fixed background.
Best Regards
5
votes
1answer
4k views
How to merge detected edges to a colour capture in Emgu CV
I am trying to make a C# desktop application (with Emgu CV wrapper) which captures the feed from the camera, detects edges in the feed and then displays the original feed (coloured) with the edges - ...
5
votes
1answer
308 views
How to achieve good sharpness with twain/emgu/open cv?
I am using an Epson Perfection V700 scanner and selecting the following options when scanning using their tool:
ICM Color correction (source: EPSON-Standard and target: sRGB)
Unsharp Mask (medium)
...
5
votes
0answers
174 views
Drawing match pairs in image-calculated by KNN and the potential bug in Features2DToolbox.DrawMatches
I wrote a code that it finds the K closest matches by KNN algorithm. After getting the matMatch and matchIndices I tried to draw the match pairs between two consequence frames.
I feed matMask and ...
5
votes
2answers
320 views
Color detection by using C#
I am developing a winForm c# program for smile detection with a webcam by using EmguCV library. I use some haarcascade_smile xml file to do it successfully.
However, a detection error occures in some ...
4
votes
1answer
68 views
Fastest way to get number of white pixels in gray image using OpenCV
What is the fastest way to get number of white pixels in a gray picture using OpenCV? Is there something faster than using two for loops and accessing the image pixel by pixel?
4
votes
2answers
224 views
How to transform the image?
You can see the lanes are askew. I want to make the lanes perpendicular.
I used Photoshop's perspective transformation function, got the result:
Although the lanes are vertical now, the cars in ...
4
votes
3answers
2k views
Improve face detection performances with OpenCV/EmguCV
I am currently using EmguCV (OpenCV C# wrapper) sucessfully to detect faces in real-time (webcam). I get around 7 FPS.
Now I'm looking to improve the performances (and save CPU cycles), and I'm ...
4
votes
1answer
196 views
Convert each row of matrix( float) in to a vector
I have a float[n,128] array. Now I want to convert each row into a separate vector as following:
// The code here is a Pseudo Code
int n=48;
float[,] arrFloat=new float[n,128];
...
4
votes
1answer
356 views
How to detect and count a spiral's turns
I need to detect a spiral shaped spring and count its coil turns.
I have tried as follows:
Image<Bgr, Byte> ProcessImage(Image<Bgr, Byte> img)
{
Image<Bgr, Byte> imgClone = ...
4
votes
2answers
1k views
Gesture Recognition OpenCV ( for media player )
Can someone please help me out with how exactly to start from scratch for using OpenCV for hand gesture recognition? We're basically creating a media player that can function with hand gestures ...
4
votes
1answer
2k views
Calculating distance using a single camera
I would like to calculate distance to certain objects in the scene, I know that I can only calculate relative distance when using a single camera but I know the coordinates of some objects in the ...
4
votes
2answers
2k views
Unable to load DLL 'opencv_core242': The specified module could not be found. Emgu CV
I'm trying to start using emgu CV open CV for C#. But I'm having trouble making it work.
I'm following this guide to make simple program using emgu CV Link but I get following error: (any idea what ...
4
votes
1answer
605 views
Rectification of uncalibrated cameras, via fundamental matrix
I'm trying to do calibration of Kinect camera and external camera, with Emgu/OpenCV.
I'm stuck and I would really appreciate any help.
I've choose do this via fundamental matrix, i.e. epipolar ...
4
votes
0answers
3k views
Emgu (OpenCV for C#) - building a disparity map using cvStereoRectify
I've been using the great Emgu C# wrapper for OpenCV to collect images from a home built stereo rig. Two webcams bolted down to a piece of wood, 35cm apart to hopefully let me produce depth maps in ...
4
votes
1answer
1k views
Emgu CV - memory-leaks (memory consumption)
I am using EmguCV, the OpenCV wrapper for .NET. I am disposing all created objects but my app is still using more and more memory (in release configuration too). I have debugged my app using .NET ...
3
votes
4answers
8k views
OpenCV/EmguCV face recognition
I am trying to make an app that detect faces and recognizes it. I made Face detection but I want some idea to when making recognition. I'm using a web cam for tracking and it can detect the face.Then ...
3
votes
3answers
8k views
How to install and use Emgu CV in C#?
I'm trying to do an image processing project using Emgu CV, but I still dont know about the requirements. Can anybody tell me what the required dll files are? And where should I copy them in order to ...
3
votes
3answers
2k views
OpenCV (Emgu.CV) — compositing images with alpha
I'm using Emgu.CV to perform some basic image manipulation and composition. My images are loaded as Image<Bgra,Byte>.
Question #1: When I use the Image<,>.Add() method, the images are ...
3
votes
1answer
3k views
How to detect triangle edge in opencv or emgu cv?
http://i.imgur.com/jlS4X.png
I am using Emgu CV, i want to detect two sharp in the picture, first i convert the image to gray,and call cvCanny, then call FindContours, but just one contour found, the ...
3
votes
1answer
3k views
Emgu Capture plays video super fast
When I am playing back a video using Emgu, it plays back way faster than it should. Here is the relevant code.
public Form1()
{
InitializeComponent();
_capture = new Capture("test.avi");
...
3
votes
2answers
1k views
How to Crop Image without changing the aspect ratio
I need to crop a image without changing its aspect ratio. i am taking picture from CANON1100D using EDSDK. Captured image
Width = 1920 and Height=1280
so aspect ration is 1.5. but i need picture ...
3
votes
1answer
2k 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
1answer
1k views
How to convert Image<Gray, Byte> to Image<Gray, float>?
I'm trying to substract 1 image from another, somewhat like this:
Image<Gray, float> result, secondImage;
Image<Gray, byte> firstImage;
result = firstImage - secondImage;
But it gives ...
3
votes
1answer
613 views
EmguCV FindFundamentalMat - input params
I'm using EmguCV wrapper for OpenCV and I'm trying to do uncalibrated rectification via fundamental matrix.
I've found image points with FindChessboardCorners function,from both cameras, and then I ...
3
votes
2answers
860 views
Detecting concentric circles with Hough Circle Transform
I am trying to detect images of CDs from a database of images. I figured that I would be able to use a Circle Hough Transform on each image, and select ones which contain concentric circles with a ...
3
votes
1answer
756 views
Fast algorithm for image distortion
I am working on a tool which distorts images, the purpose of the distortion is to project images to a sphere screen. The desired output is as the following image.
The code I use is as follow - for ...
3
votes
1answer
3k views
Get a Image Mask of the Differences Between Two Images Emgu CV
I was wondering how to take two different gray images and create a mask of the differences between the two. Any help would be much appreciated.
3
votes
1answer
2k views
Emgu OpenCV Intptr to IplImage?
I'm using the Emgu OpenCV C# wrapper, and I'm trying to convert the IntPtr(s) that its functions return and access the actual IplImage OpenCV objects. Any ideas? I'm new to C#, so any suggestion is ...
3
votes
1answer
2k views
Converting EmguCV/OpenCV to Windows Phone Runtime
I'd like to know whether there are any image processing libraries available for Windows Phone 7 apps.
EmguCV (.net wrapper for OpenCV) has all the features I want but I'm unable to use it on Windows ...
3
votes
1answer
4k views
Opencv Emgu c# face extraction
So far I have managed to make my programme to work and detect face and now what i want to do is that extract the area detected and display in new picture box that i have added also after this is done ...
3
votes
2answers
439 views
How to find the amount of pixels by which an image has moved?
I am trying to calculate by how much an object has moved in each consecutive image captured from a stationary camera. What we're testing here is the repeatability of our setup to place an object in ...
3
votes
1answer
271 views
What is the Emgu CV equivalent of the Open CV saturate_cast function?
Question
What is the equivalent of saturate_cast in emgucv?
Background
I have an Image<Bgr, byte> and I want to perform a simple calculation on every pixel within it (incidentally: alpha * ...
3
votes
1answer
694 views
FAST Feature Detector/Descriptor EMGUCV/OpenCV
I am a newbie with this stuff so please bear with me :-)
I am creating a object recognition application which can Recognize objects. Frames are grabbed by a webcam and tracking and recognition is ...
3
votes
2answers
5k views
Web Camera Capture
As the question here States, I am trying to capture an image with my web-camera. I am running Windows 7 (bootcamp) and have a camera connected as seen in the following screen capture.
But for some ...
3
votes
2answers
3k views
Robust motion detection in C#
Can anyone point me to a robust motion detection sample/implementation? I know EMGU has a motion detection sample, but its not very good, even small changes in light will be falsely detected as ...


