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

1
vote
0answers
24 views

EMGU/OpenCV FFT of image not yielding expected results

I'm trying to visualize the FFT of an image with EMGU. Here's the image I'm processing: Here's the expected result: Here's what I get: Here's my code: Image<Gray, float> image = new ...
0
votes
1answer
22 views

Element-wise division between two images using emgu

I want to perform an element-wise division between two images. I am using emgucv and tried the following but it doesn't perform element-wise division. Image<Gray, double> A = new Image<Gray, ...
-1
votes
0answers
16 views

How to detect a english letter by webcam in Emgu CV

I need to detect a English(if possible bangla) letter by webcam. Is there any code for that or any method for letter detection. Please help me.
0
votes
1answer
15 views

How to Convert Emgu.Cv.Image<Gray,byte> to System.Image

I was new to Emgu Cv and i was wondering if someone could let me know how i change Emgu.Cv.Image to System.Image?If there is a need for further explanation, let me know and i will do it.The language i ...
0
votes
0answers
16 views

Luxand API in Visual Studio 2010?

How can I use Luxand API to get to work in visual studio 2010? I need to detect points of chin in a given face, can I do it with any other API? I have tried this sample code: OpenFileDialog ...
0
votes
0answers
23 views

OpenCV (EMGUCV wrapper) integration in Unity

As you know OpenCV is very useful library that let you do amazing and powerful things in Computer vision. So I passed a good time to figure out how to use it in Unity3d, I had many problems, and ...
0
votes
0answers
17 views

Blob/Rectangle Collision from OpenCV with XNA

I use OpenNi and Kinect to detect movement of player, and then convert them to MCVBox2D rectangles. I'm looking for any way to attach physic to my generated shape - for example made circle bounce on ...
2
votes
2answers
66 views

Differences between two images

Using this image as a refernce I want to find the dirty spot at the bottom of this image. I was able to turn second image to the same scale and orientation and now trying fo find the spot using ...
0
votes
2answers
25 views

OpenCV: How to get corners of CvBox2D?

I need to find corner positions of CvBox2D (or MCvBox2D) to map found contours on game object in XNA. I have a problem with correct translation of rotation angle. I thought that this is kind of basic ...
0
votes
0answers
33 views

Extract polygons using OpenCV

I trying using OpenCV for polygon detection. After filtering and canny i have: How i can take polygon points and fix problems in green circles? Thanks.
0
votes
2answers
47 views

How to get coordinates of pixel after shape was rectified?

I'm using EmguCV wrapper for OpenCV and I'm rectifing this shape: with help of this code: public Image<Bgr,byte> Rectify() { try { Image<Bgr, byte> ...
0
votes
0answers
25 views

Camera Calibration and 3d Reconstruction [duplicate]

the result of 3d reprojection using StereoSGBM (in opencv) algorithm is the X,Y,Z coordinates of each pixel in the depth image. points = PointCollection.ReprojectImageTo3D(disparityMap, Q); ...
0
votes
0answers
36 views

An unhandled exception of type 'System.AccessViolationException' EmguCV

I'm getting "An unhandled exception of type 'System.AccessViolationException'as given below in my code. The video file I have given is 91 MB of size and my RAM is 4 GB (OS - Windows 32 bit) An ...
1
vote
1answer
61 views

Ignore external points when finding rectangles

I have some images like this where I need to find the central rectangle Im using a variation of the EmguCV examples to find rectangles and came with this using (MemStorage storage = new ...
0
votes
0answers
59 views

Stereo Calibration and 3d Reconstruction

the result of 3d reprojection function is a matrix that has X,Y,Z of each pixel. let's take the first element of this matrix points[0] which has: X= 414.580017 Y= -85.03029 Z= 10000.0 what is the ...
0
votes
2answers
20 views

Element-Wise square of a matrix in EMGU CV

I need Element-Wise square of a matrix. In mathlab i find this code . If A is matrix then A.^2 calculate the element wise square of the matrix. Is there any function in Emgu Cv that do the same? ...
0
votes
0answers
106 views

Face Recognition code using emgu cv and C# and it returns a black image and unknown/unrecognized label all time

I was working on Face Recognition project. After training the database and calling EigenObjectRecognizer, the result is a black image with unrecognized label.When the code runs, it looks like the ...
0
votes
1answer
176 views

C# - Emgu CV - Face Recognition code stops execution at EigenObjectRecognizer and exit without error

I was working on Face Recognition and when i run the code it stops execution at the point where EigenObjectRecognizer is initialized and exits the program with out any error.Have any one else faced ...
0
votes
0answers
35 views

Eye tracking - estimating face position

I want to create an eye-tracker using EmguCV. I came across the problem of calculating the face position, which I need to get in order to correctly estimate the gaze of a person. I wanted to use the ...
0
votes
0answers
40 views

EmguCV First Principal Component

I am working on hand detection, tracking and recognition and i need to calculate the First Principal Component. I am using C# and EmguCV. My experience with PCA is way limited and I've been looking ...
1
vote
1answer
32 views

Pixel-wise summation and subtraction in EmguCV

I'm looking for an elegant way to perform pixel-wise summation and subtraction in EmguCV. I'm trying to calculate the Haar-like features of an image. For a one-dimensional situation, it's done by ...
0
votes
0answers
75 views

C# - Emgu Cv - Face Recognition- Loading training sets of Faces saved to Access database as a binary in to EigenObjectRecognizer for Face recognition

I was having a hard time loading training set from Ms Access database in to the main form that does the Face Recognition. I saved the training sets with their names and ID in to the database as a ...
0
votes
0answers
33 views

How to get PCA and save it to Ms Access Database for Face Recognition using Emgu CV and C#

I was wondering if someone could tell me how i save PCA of Faces of Training set to my Access database. I am doing my recognition by saving the image in binary to the database. When i read it from ...
0
votes
0answers
13 views

EmguCv writing a “header frame” to an avi file

I want to create an encrypted video by encrypting all frames taken from camera. But first i want to add a header to the video in a form of an image. So, before staring grabbing images from camera I am ...
0
votes
1answer
81 views

Harris corner using Emgu CV

Im trying to apply Harris corners using Emgu CV Wrapper, and I'm learning from a book titled "Open CV 2, Computer Vision Application Cook Book" , the book examples are based on C++, below is their ...
0
votes
0answers
26 views

How to train images with EigenObjectRecognizer

i am developing a C# app with emguCV and i am new to emguCV. I have seen this example in internet. Image<Gray, Byte>[] trainingImages = new Image<Gray,Byte>[5]; ...
1
vote
1answer
95 views

EmguCV - Face Recognition - 'Object reference not set' exception when using training set from Microsoft Access Database

I've been developing a face recognition application using EmguCV (C#). I got the whole thing working okay if I store the face images (training set) in simple windows folder. But, after I tried to ...
0
votes
1answer
27 views

Exact measurement of translation and rotation of marcer objects using OpenCV/EmguCV

I would like to measure the displacement of an object between two images. The displacement can be anything in the image plane. The result should give the displacement, if possible in sub pixel ...
0
votes
1answer
40 views

How to add pixels in EmguCV

Hi I'm using EmguCV and I enjoy programming with it. However I'm wondering whether there is an elegant way to add two pixels individually. To add images, you can use CvInvoke.Add(), but for ...
0
votes
1answer
62 views

Convert System.Drawing.Image to Emgu.CV.Image<Gray,byte>

Is there any way to convert an Image of type System.Drawing.Image in to Image of Emgu.CV.Image type or vice versa on EmguCV using C#? I will explain per your request if additional explanation is ...
0
votes
1answer
45 views

How to use CvInRange in Emgu CV

I am learning to use Emgu CV and stumbled upon this Open CV example : http://www.aishack.in/2010/07/tracking-colored-objects-in-opencv/ I want to recreate the CvInRange function in Emgu by creating ...
0
votes
2answers
65 views

emgu finding image a in image b [duplicate]

I'm new to emgu and would like some advice on where to start. I've looked through the shape detection but its far too complex for what i need .. i think.. and my surfexample isn't working. I get this ...
0
votes
1answer
39 views

Draw a circle in an Emgu ConvolutionKernelF

I want to convolute my image with a kernel that has the shape of a circle (not filled) using Emgu. I found the ConvolutionKernelF which suits my needs (Gaussian Noise in emgucv). Does anybody know ...
0
votes
0answers
52 views

How to get the selected region of an Emgu CV ImageBox?

In an Emgu CV ImageBox, you can drag the mouse to mark an area of the image. The image is then zoomed in, but not always to the area that I marked, but often to an area of the same size somewhere else ...
0
votes
0answers
19 views

EmguCV EigenObjectRecognizer can not be instantiated

I've got a weird problem regarding EigenObjectRecognizer class. My system specs are as follows: 1. MS Visual Studio 2010 2. WPF x86 Debug When I instantiated an EigenObjectRecognizer, it won't work ...
0
votes
0answers
24 views

EmguCV in a Video Player

is it possible to have sound, seeking frames supports in the video player while tracking an object via EmguCV? Or how to combine video player and tracking together?
-1
votes
0answers
78 views

C# Camera Calibration and Object's Distance Calculation

I am using Emgu cv library (opencv Lib) on c# VS2010 to find object in the view of Robot head cameras and need to calculate depth information to pick and place this object by robot hands. after ...
0
votes
1answer
51 views

How to resize captured image inside imagebox (C# OpenCV winsforms)?

I want to resize the captured image inside the imagebox and to set the location of it inside the imagebox. is that possible if yes how can I do it?
0
votes
1answer
33 views

Show EmguCV Image in WPF form

I am building a program that needs to capture the image from a webam and show it to the user. I am using EmguCV to capture the image from the webcam and make some computer vision processing and then i ...
0
votes
0answers
47 views

EmguCV: How to convert code working with pointers and step?

I'm trying to convert some code from an open source library written with OpenCV 1.0 to EmguCV C# in .NET. Here is the problematic code: float* ptr = rotatedEdges->data.fl; int step = ...
0
votes
0answers
135 views

DFT with EMGU/OpenCV - I'm doing something wrong

I'm trying to run DFT in 4x4 blocks over this image (look closely, it's small) It may be a bit too small to see, but it's a 4x12 pixel image. The first 4x4 square is a checkerboard pattern with each ...
1
vote
0answers
115 views

EmguCV 'Emgu.CV.CvInvoke' Exception

I have installed EmguCV 2.4.2.1777. I have a 32-bit windows 7 so I installed it using the installer. Now I am trying to write a simple code to capture a webcam's video in a window in C#. The problem ...
0
votes
0answers
24 views

EmguCV : How to Detect whether the file has reached end of file using QueryFrame()

I am using Emgucv to capture frames from a video file Here is my Code private void Frame(object sender, EventArgs arg) { try { timesbetweenframes++; ...
2
votes
0answers
105 views

Upper Body Skeleton Detection

For an educational project we are currently working on a basic motion and gesture detection system. Our main goal is to detect a human body on a camera stream. Using this information we want to detect ...
1
vote
2answers
153 views

PCA using SVD in OpenCV

I have a matrix M of m*n dimension. M contains n number of data each has m dimension and m is very very large than n. Now my question is, how to compute or what are the steps or procedure to find PCA ...
-1
votes
1answer
99 views

Kept having “Array out of exception” in ZXing LuminanceSource and RGBLuminanceSource using EMGU.CV camera

I am using the ZXing barcode library and the EMGU.CV camera library for my project which is to create a barcode scanner. However, I have faced a problem which is the array out of exception error in ...
0
votes
0answers
114 views

EMGU CV Surffeature Detection and image comparision

I am new to use emgu cv and have not much idea about it. I am trying to detect a image object into another image using EMGU CV Library. I used the emgu cv example sample and able to successfully draw ...
0
votes
1answer
101 views

SURF features in EmguCv: how to extract a fixed number of features

I want to train a neural network in order to classify different classes of grayscale images. As input of this network, I want to use the features extracted by the SURF-128 algorithm. The following ...
0
votes
0answers
55 views

Crash when use SURFDetector in EmguCv

I cannot use the SURFDetector object, because the program crashes. I'm using the version 2.4.9 of Emgu (downloaded form here), and I've followed the instructions about adding the OpenCV dependencies ...
0
votes
0answers
89 views

get pixels of drawn line area in an image in c# emgu cv

I am working on c# emgucv. I am working on lane markers detection on road.I have drawn inclined lines on an captured image,now want to find the pixels of the area on which the lines are drawn.

1 2 3 4 5 11