Tagged Questions

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.

learn more… | top users | synonyms

9
votes
5answers
787 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 ...
7
votes
4answers
1k views

Face gender detection library

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?
6
votes
6answers
7k 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 ...
4
votes
1answer
89 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 ...
4
votes
4answers
12k 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, ...
3
votes
1answer
157 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
2answers
818 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 ...
3
votes
1answer
596 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

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
3
votes
2answers
550 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 ...
3
votes
1answer
557 views

Accessing Pixels and Object Tracking : Emgu CV or Aforge.Net? which one is faster and easier?

I am new to Image Processing and Machine Vision. I am going to write a simple app which works with multipage TIFF files and does some object tracking on them. I implemented the whole story in ...
3
votes
2answers
279 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 ...
2
votes
2answers
50 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.
2
votes
2answers
352 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 ...
2
votes
1answer
138 views

Why might EmguCV Gaussian blur not return identical results as OpenCV Gaussian blur?

I'm experiencing a mismatch between the OpenCV GaussianBlur function and the EmguCv CvInvoke.cvSmooth/Image.SmoothGaussian functions. The GaussianBlur call: GaussianBlur(src, dest, Size(13,13), 1.5, ...
2
votes
1answer
149 views

Order Motion components by velocity (Motion detection using Emgu)

I am trying to create an ordered list of Motion Components , ordered by motion. For example in a street view camera I would like the vehicles first, followed by bicycles, followed by pedestrians. Is ...
2
votes
3answers
493 views

Neural Networks for Image Classification (OpenCV/Emgu)

I am new to neural networks and have looked over the (sparse) code samples on emgu and on the forum. However could not figure out how to classify a images using the neural network implementation in ...
2
votes
1answer
740 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.
2
votes
1answer
432 views

How to speed up Blob analysis on Emgu CV C#

I'm trying to track a moving LED using Emgu CV C#. I threshold the captured image until I have only the LED as a white spot/blob. I've used blob analysis/tracking and it works but the problem is that ...
2
votes
1answer
754 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 ...
2
votes
1answer
655 views

open a video in C# and iterate into frames and save the processed frames as another video

I am trying to open a video in my application to process on the frames and then save the results into another video. I used OpenCV (Emgu) for my image processing with no issues. But I cannot use it ...
2
votes
1answer
644 views

Hough Circle in c# , dynamic memory

I have problem in dynamic memory allocation getting data from matrix Image image_gray = new Image("im1.jpg"); Matrix circles = new Matrix(100, 1, 3); Question 1: How can I locate dynamic memory ...
2
votes
0answers
2k 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 ...
2
votes
1answer
505 views

Drawing a rectangle on a video in C#

Hi I want to draw a rectangle on a video stream(web cam video or loaded saved video) that I have streaming on a picture box. This is a C# application and I am using EmguCV 2.1.0.0. I have been ...
2
votes
2answers
1k views

Real time object tracking in java(some java API) or C#(emgucv,dshownet,Aforge.NET)

I am doing a project called user initiated real time object tracking system. Here, is what I want to happen in the project: 1) Take a continuous stream from a web camera. 2) Using the mouse a user ...
2
votes
3answers
3k 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 ...
2
votes
1answer
1k views

MODI.Image from (Bitmap) Image NOT saved on hard disk.

i'm coding an OCR MODI application for numbers recognition. It works quite well but i'm trying to speed it up. I need to create a MODI.Document or a MODI.Image directly from a Emgu.CV.UI.ImageBox and ...
2
votes
1answer
2k 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 - ...
1
vote
1answer
48 views

How to add effects to image

I am new to the image processing.I want to know that how i can add the effects to the image using EmguCV or any other technique.Just like Microsoft LifeCam.(ex. showing hat on the head,showing name on ...
1
vote
3answers
102 views

How can I change the contrast of an image using OpenCV?

I'd like to look at the contrast of an image in a certain masked region, and reduce it if it is too great. Are there built-in functions that can help me with this? If not, what sort of algorithm ...
1
vote
2answers
107 views

How to create rotating bounding area while using Capture in EmguCv?

My problem is as follows: Using EmguCv (C# OpenCV) I have to write an application that can detect if my figure rotate or not using webcam in my computer. I used Capture to catch frames from my ...
1
vote
1answer
60 views

Who should care of MemStorage deallocation when contour is created?

I use Emgu CV wrapper for OpenCV. I want to create function which generates contour in some way and returns it. To create contour I use the following like: Contour<PointF> contour = new ...
1
vote
2answers
206 views

Color edge detection + opencv

In the canny edge detector the input required is a gray image... Is there any direct color edge detector function in open-cv ? Or is it same if i convert to gray scale and use canny ? I ask this ...
1
vote
1answer
370 views

Emgu CV - How i can get all occurrence of pattern in Image

Hi have already function solution but one issue: // The screenshot will be stored in this bitmap. Bitmap capture = new Bitmap(rec.Width, rec.Height, ...
1
vote
1answer
195 views

EmguCV 64-bit build runtime error

I am running into issues building an existing 32-bit EmguCV (Version 2.3) into 64-bit using .net 4.0 and VS2010 on a W7/x64 OS. I have purchased a commercial license, if that matters and downloaded ...
1
vote
2answers
228 views

EmguCV - how to specify jpeg quality when saving image?

I save jpeg image using the following C# EmguCV code: Emgu.CV.Image<Gray, byte> image ... image.Save("imageName.jpg"); But image is stored in extremally low quality (1 color square per 8x8 ...
1
vote
1answer
343 views

Fourier Transform + emgucv

Can anybody tell me what is the problem in this code... Basically I am trying to compute the dft of the image and show it as an image on my screen. Image<Gray, float> GreyOriginalImage = new ...
1
vote
1answer
102 views

Naive Bayes Classifier Biased Output?

I'm using Emgu CV to implement a machine learning technique in c# to classify pixels of my image into 3 different categories. Everything works perfect so far, but the problem is that it is fully ...
1
vote
0answers
137 views

The “pixels between the eyes” rating of opencv's facial recignition?

Ya about says it all. And if anyone has, can post, or point me to a comprehensive list of facial recognition solutions, with the pixel between the eyes ratings, and pricing/licensing when concerning ...
1
vote
1answer
242 views

Create c# structure for CvMat.data union or any way to access it in C#

I need to access 'data' property EmguCV MCvMat structure. But that property is a pointer(IntPtr). I found that structure for this property(data) is an union. It's like this, union Data { char* ...
1
vote
1answer
458 views

Value range for Image HSV for color extraction EMGUCV

In the following, Image<Hsv, Byte> hsvimg = img.Convert<Hsv, Byte>(); Image<Gray, Byte>[] channels = hsvimg.Split(); Image<Gray, Byte> ...
1
vote
1answer
399 views

Capture RTSP with Emgu CV

I have this line of code: _capture = new Capture("rtsp://192.168.0.61/12345"); It captures the rtsp stream for some seconds and then stops working. Why? If there is a work around what is it? Or if ...
1
vote
1answer
254 views

Showing processed images from an IP camera

I have an IP-camera that serves images. These images are then processed via EmguCV and then I want to display the processed images. To show the images, I use this code: Window1(){ ... ...
1
vote
0answers
566 views

EmguCV image depth problem with Code Laboratory Kinect Calibration

I'm using the Emgu wrapper for OpenCV in C#, and I have the following nagging problem. I'm using the Code Laboratories Kinect API and the code to get an image out of the Kinect looks like this: ...
1
vote
2answers
495 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 ...
1
vote
1answer
192 views

Grouping multiple bounding boxes

I am using background subtraction to detect movement on the screen then I use cvFindContours to detect contours when I use cvBoundingRect I get a lot of small rectangle this is due to background ...
1
vote
1answer
330 views

How to write a program from scratch in C# using EmguCV

I am trying EmguCV 2.2.1 in Visual Studio 2010 Express (C#) All the examples given with the Emgu Installation work absolutely fine, and give the desired output. But when i write a program myself, an ...
1
vote
1answer
336 views

EmguCV hand dectection

I am creating a detection program in C# in a Windows Form Application and I am using the C# Wrapper EmguCV to handle the OpenCV library. In the Emgu package there are HaarCascades (which are XML files ...
1
vote
2answers
484 views

How to do non-perspective image warping in OpenCV?

I have an image where the user selects an arbitrary 4-cornered polygon. I want to stretch this polygon into the entire image. I've tried doing it with homography and cvWarpPerspective, but the result ...
1
vote
1answer
293 views

short[] array to EMGU Image , fastest way?

Hey everyone. I have an array of Int16[19200] I want to turn it into an Image[160,120,1] What is the fastest way of doing this ? I need to do it at 120fps, so it needs to be really efficient. Thanks ...

1 2 3 4