About EMGU EMGU opens the OpenCV (Open Source Computer Vision Library) library of programming functions mainly aimed at real time computer vision to C# developers. OpenCV was originally developed by Intel and now supported by Willow Garage. Current versions for both x86 and x64 architectures are ...
9
votes
5answers
852 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 ...
4
votes
3answers
95 views
Double click timer event
I am developing an application that maps users eye movements with the cursor movements, hence developing ahands free cursor control system.
I am using Open CV library's .NET Wrapper for C# i.e. Emgu ...
3
votes
2answers
458 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
1answer
254 views
Find the bounding box of each character in a license plate
I use emgu with c# to read a license plate in an image. After edge detection I want find the bounding box of each character in it and use neural networks to recognize characters. How can I do it?
...
3
votes
2answers
292 views
Image conversion in OpenCV C#
Image<bgr,byte> WeightedImg;
.
.
double color;
for (int i = 0; i < dataArray.Length; i++){
color = dataArray[i, 2];
WeightedImg.Bitmap.SetPixel(x, ...
3
votes
1answer
2k 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
2
votes
3answers
81 views
Implementing double click event using timer
As I mentioned in this question, I am trying to implement a feature in my app whereby placing a cursor over some point for a while (say 3-5 seconds) triggers a double-click event. Based on the answers ...
2
votes
2answers
105 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
111 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 ...
2
votes
1answer
197 views
Sharpen Image Filter
I have code that takes an image saved on my computer and processes into a grayscale, smoothed gray, and canny edge image. What I would like it to do is sharpen the image by adding some type of filter ...
2
votes
1answer
206 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
617 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
965 views
Extract transform and rotation matrices from homography?
I have 2 consecutive images from a camera and I want to estimate the change in camera pose:
I calculate the optical flow:
Const MAXFEATURES As Integer = 100
imgA = New Image(Of [Structure].Bgr, ...
1
vote
3answers
64 views
Get all pixels coordinates that have same color
I want to get all pixels coordinates that have same color as one pixel
List<cv::Point> GetAllPixels(cv::Point x)
{
//imp
}
How can I do this in EmguCV or OpenCV?
1
vote
1answer
253 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
363 views
Fill the holes in emgu cv
How can i Fill the holes in binary image in emgu cv ?
In Aforge.net it's easy,use Fillholes class.
thanks
1
vote
2answers
257 views
Color Image Quantization in .NET
I want to reduce the number of unique colors of a bitmap in c#.
The reason I want to do this is that an image which is initially created with three color but due to many factors (including ...
1
vote
1answer
416 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 ...
0
votes
0answers
3 views
'cvCreateContourTree' in DLL 'opencv_imgproc231' - deprecated?
I get this error:
Unable to find an entry point named 'cvCreateContourTree' in DLL
'opencv_imgproc231'.
I am programming in EmguCV 2.3 and have the latest binaries for OpenCV. I checked the ...
0
votes
1answer
38 views
How to perform to Template Matching in Emgu CV
Sir,
I am new to Emgu CV.I am making a face recognition software.I was able to detect the faces using HaarCascade xml Classifiers.But i m stuck up at the next step regarding how to recognise the ...
0
votes
0answers
52 views
Kinect and EMGU (OpenCV) - BitmapSource issue
Alright, so basically I am trying to use openCV with the Kinect (Microsoft's new Kinect 1.0 SDK). I am very new to both C# and Kinect. But what I want to do is use the kinect for facial recognition ...
0
votes
0answers
7 views
Limiting the maximum of results in Emgu.CV.HaarCascade.Detect
Is it possible to limit the number of results in HaarCascade.Detect (i.e. stop the detection process once N results were detected)?
Thanks,
ury
0
votes
0answers
28 views
PGH using OpenCV (Emgu)
Could anyone share their code for calculating the PGH (Pairwise Geometric Histogram) similarity ? I need to find the most similar object from within a list of images.
I have written up the following ...
0
votes
0answers
51 views
using Emgu Image in unmanaged c++ code
I need to write wrapper to my C++ code to use it inside c# application. Basicly I need to preocess Emgu image from C# in c++ side and return it back. I try to do it this way in un-managed c++ side:
...
0
votes
1answer
68 views
cvcanny and emgu
I am developing an application called virtual wardrobe and for that application I need to know the size of the user .My question is how to obtain size of the user from edge detected image .I m using ...
0
votes
1answer
155 views
Resize Image<Gray, byte> without scaling. Emgu CV
I am using Image.InRange to create a mask from an image. In order to keep performance at its maximum, I am using the Image.ROI to crop the image and prior to using the InRange method. In order to to ...
0
votes
1answer
146 views
Emgu Example.CameraCapture => black image
Like the question here, I am trying to capture images with Emgu. But even when running the examples I get a black image. I have tried changing the new Capture() to new Capture(1) all the way through ...
0
votes
1answer
106 views
EmguCV very bad performance when querying high resolution Frames
I am using EmguCV to query frames sequentially from a capture that I defined as following:
Capture cap;
private void Form1_Load(object sender, EventArgs e)
{
cap = new Capture();
...
0
votes
1answer
470 views
unable to load cvextern in a c# project
i'm trying to debug my program, using emgu and HaarCascade in c#.
i'm getting an exception like so :
Unable to load DLL 'cvextern': The specified module could not be found. (Exception from ...
0
votes
1answer
110 views
Get snapshot from streaming video (newbie)
I have a video player written using Emgu (a .net wrapper for OpenCV) and I am capture the frames and performing some operations on certan frames. In on functionality, I let the user take a snapshot ...
0
votes
1answer
177 views
EmguCV - Motion detection not returning angles
I am runnng the motion detection algorithm against a video (file) and following the code sample motion detection, and trying to find the angle of each component and the overall motion. I do get a ...
0
votes
1answer
286 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");
...
0
votes
0answers
54 views
Emgu - GetHomographyMatrixFromMatchedFeatures returns null every time
I am using Emgu (an OpenCV C# wrapper), and every time I try to get a HomographyMatrix from the GetHomographyMatrixFromMatchedFeatures method, it comes back null. The ...
0
votes
1answer
416 views
System.TypeInitializationException using Emgu.CV in C#
At this point I have a function which calls for an image from my camera interface. This image is then saved to hard drive and also displayed in the Windows Forms GUI.
The function inside the camera ...
0
votes
1answer
313 views
EmguCV 2.3.0 in C# QueryFrame returns the previous queried frame
I am using EmguCV 2.3.0 and am querying frames at random intervals from a Capture to be saved to hard drive. The problem is when I call the Capture.QueryFrame() or Capture.QuerySmallFrame() it is ...
0
votes
1answer
273 views
Emgu CV: HaarCascade.Detect respects ROI?
I looked in the documentation of Emgu CV but didn't find anything relevant. I just want to make sure: does HaarCascade.Detect respect the ROI, so that the detection is only performed in the subarea ...
0
votes
0answers
115 views
cvFindCornerSubPix() runtime error
I use the following function after cvGoodFeaturesToTrack function in an attempt to detect motion in a video.
...
0
votes
1answer
83 views
Which's the best performance between multiFaceDetection VS Face tracking (in multi faces)
I was tried to detect all faces in live picture (from camera) this detection refreshed every 3 seconds and draw a rectangle around the face
but the disadvantage of this way that if the face have been ...
0
votes
1answer
424 views
Work with matrix in emgu cv
I have a matrix (2D) of an image in EMGU cv,how can I fill the rest of the matrix with zeros but keep a certain area(rectangle) with the original data?
0
votes
2answers
164 views
unrecognized or unsupported array type exception in C# [closed]
Possible Duplicate:
Image conversion in OpenCV C#
WeightedImg.Bitmap.SetPixel(x, y,Color.FromArgb((int)Math.Ceiling(color * R),
(int)Math.Ceiling(color * G),(int)Math.Ceiling(color * ...
0
votes
1answer
276 views
error concerned with cvextern.dll file (opencv in C#)
when I add this file (cvextern.dll) to reference or I use the command csc from cmd .. I get this error
fatal error CS0009: Metadata file "file_path" could not be opened -- 'An attempt was made to ...
0
votes
1answer
318 views
emgucv face recognition
can someone please show me an example, or links, about using emgucv to create a face recognition application? I've managed to create a webcam capture and face detection, but having trouble to ...
0
votes
1answer
616 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
0
votes
1answer
230 views
Is Picture-in-Picture possible using OpenCV?
I would like to add a smaller image on top of a larger image (eventually for PiP on a video feed). I can do it by iterating through the relevant data property in the large image and add the pixels ...
0
votes
1answer
727 views
emgu cv CvInvoke.cvRemap hangs when trying to udistort from stereo calibration data
I'm trying to implement a stereo camera calibration app using emgu cv.
My problem is when I try to use CvInvoke.cvRemap to undistort an image the function just hangs. No errors or crashes, it just ...
0
votes
1answer
1k views
Emgu CV Blob Detection
I'm using Emgu CV 2.1 and want to have a simple blob detection. I search for white blobs in a black image. Unfortunalty I can not find out how to do this! Do I need an additional library? Or how is ...
0
votes
1answer
258 views
emgu cv matrix access row and cloums with channel c#
hiii,
how can i access a matrix with a specified row , column and channel
Matrix<double> tensor = new Matrix<double>(yMax + 1, xMax, 4); //4 channels
CvInvoke.cvZero(tensor );
...
0
votes
0answers
48 views
Apply JPEG or JPEG2000 encoder to an “Image<Luv,Byte>” object.Emgu CV
How can i apply the jpeg or jpeg2000 encoder to an Image object.The Image<> object is an EMGU CV object.
0
votes
1answer
526 views
How can I detect direction and number of objects using Emgu?
How can I detect direction and number of objects using Emgu?
Objects are moving in all directions (2D); and a camera is seeing these objects (on a 2D surface). Object may have little differences in ...
0
votes
2answers
808 views
Detecting people crossing a line with OpenCV
I want to count number of people crossing a line from either side. I have a camera that is placed on ceiling and shooting for the floor where the line is (So camera sees just top of people heads; and ...