0
votes
0answers
8 views

EMGUCV --W/C is not initialising?

my vB2010 code for Surf detection the problem is when ever i select the webcam radio check box , the form disappears... i have done the try catch block even though it is not showing anything.. my wc ...
0
votes
0answers
35 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
18 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
70 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
29 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
35 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
50 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
45 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
65 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
66 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
0answers
143 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
0answers
42 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
1answer
85 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
1answer
28 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

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 ...
-1
votes
0answers
84 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
53 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?
1
vote
0answers
127 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 ...
2
votes
0answers
113 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
161 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 ...
0
votes
0answers
117 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
120 views

Correct way to extract Translation from Essential Matrix through SVD

I calibrated my camera and found the intrinsic parameters(K). Also I have calculated the Fundamental Matrix (F). Now E= K_T* F * K . So far so good. Now we pass the Essential Matrix(E) to the SVD to ...
0
votes
0answers
17 views

“Unknown array type” in cvCnvColor (Emgu)

I have a Bayer image that I'm trying to convert to Rgb using Emgu's OpenCV port to .Net. I receive 2 IntPtrs bayerChannel, rgbChannel and an image object CurrentImage which I use to get the image ...
4
votes
0answers
126 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 ...
0
votes
1answer
39 views

How to set values for multichannel matrix in Emgucv

I didn't find any explanations how to use a matrix with more than one channel im emgucv var matrixa = new Matrix<float>(usablePoints.Count, 1, 2); I tried with the Split() function but it ...
0
votes
0answers
58 views

camera doesnt start capturing

im having a little problem in my project. i have a main form witu buttons , from this form im starting my game. when im starting my game it should automaticlly start capturring, but it doesnt. only ...
0
votes
1answer
53 views

OpenCV: src.depth() == dst.depth() && src.size == dst.size exception

I have a code that calculate the rotation and translation matrix as following: matrix Matrix<double> rt = new Matrix<double>(3, 4); if (positiveCount[0] > positiveCount[1]) { ...
0
votes
1answer
124 views

image capturing is failing after one capture

I'm working on my project which is a robot air hockey player; in the project I'm using a Microsoft lifecam to identify the "ball" place. that's working. the problem is when I'm running the project ...
0
votes
1answer
38 views

equivalent of hierarchy in emgu

I am converting Python OpenCV code to Emgu. In Python, function findContours can return hierarchy hierarchy – Optional output vector, containing information about the image topology. It has as ...
1
vote
2answers
268 views

Parts Recognition / Classification with OpenCV

I am just starting to explore OpenCV and the EmguCV .NET wrappers for it and need some general direction from folks who understand the big picture of its capabilities and perhaps those who have ...
0
votes
0answers
27 views

Unknown array type exception in EmguCV ConcateVertical method

I'm trying to concatenate one matrix(rows - 0, columns - 1000) with another matrix(rows - 1, columns - 1000) vertically using EmguCV::ConcateVertical method. Then, I get Unknown array type exception ...
1
vote
2answers
296 views

Kinect Depth Image only partly visible

I am new to Kinect and C#. I am trying to get the Depth Image from the Kinect, convert it to a bitmap to perform some OpenCV operations and then display it. The problem is, I am getting only a third ...
0
votes
0answers
80 views

Implement push_back in OpenCV using EmguCV

I need to implement push_back in OpenCV using EmguCV. I used the add function in Matrix. However, it does not seems to be working. Even though, I have added elements, matrix is empty. Here is my ...
1
vote
1answer
232 views

Standard Hough Lines in EMGU CV

I am in need of using the standard Hough Transformation (instead of the using the HoughLinesBinary method which implements Probabilistic Hough Transform) and have attempted doing so by creating a ...
0
votes
1answer
159 views

OpenCV: Unknown Array Type error in Matrix.cpp

I'm using EmguCV Matrix.Add method to append one matrix to another matrix. Emgu.CV.Matrix<float> descriptors = new Emgu.CV.Matrix<float>(0, dictionarySize); Emgu.CV.Matrix<float> ...
0
votes
0answers
306 views

EmguCv TypeInitializationException Thrown by EmguCv.CV.CvInvoke

Let me start off by saying that I have indeed followed many tutorials such as the one located on EmguCv's main site in their entirety but get a TypeInitializationException thrown. Now, listen ...
0
votes
2answers
89 views

Error in BOWImgDescriptorExtractor in EmguCV

I get the following error when I try to invoke the BOWImgDescriptorExtractor compute method with BriefDescriptorExtractor and BruteForceMatcher. An unhandled exception of type ...
0
votes
1answer
200 views

emguCV getting the largest blob

i'm working on color tracking.. and i'm specifically tracking an orange ball, a basketball ball perhaps, along with kinect for the body, i'm making a free throw shooting guide. here's my case i have ...
0
votes
1answer
151 views

Right side Face detection with EmguCv

Hello everybody, I works on a face detection and recognizing project with EmguCv in C#, so i already do some steps: -detect front face and left face -recognize faces but the problem it when i want to ...
0
votes
0answers
47 views

Is cvCreateTrackbar available in emguCV?

I'm in the process of converting my application that was using an old OpenCV wrapper to EmguCV (updated and very good wrapper). So far so good, except that in one of my class, I was using 3 trackbars ...
0
votes
1answer
196 views

Exception using cvKMeans2 in EmguCV

I'm trying to convert this snippet of code in Emgu CV using C#. I think I converted most of the thing in what they are supposed to be in EmguCV but the cvKMeans2 keeps shooting me Exception that ...
0
votes
2answers
587 views

CV.Invoke on emgu

I keep getting a cv.invoke when I try to read a simpe image. My application has no further code than this (emgu-opencv wise). I checked the call stack and it says Thrown: "Unable to load DLL ...
2
votes
4answers
294 views

Real Time Optical Flow

I'm using optical flow as a real time obstacle detection and avoidance system for the visually impaired. I'm developing the application in c# and using Emgu Cv for image processing. I use the Lucas ...
0
votes
2answers
310 views

PCA for data set using Emgu

I am trying to perform PCA on a data set currently I have 8 sets of data and for each piece of data I have 618 pieces of information about it. Below is the code I have tried so far: double[,] ...
0
votes
1answer
177 views

Emgu CV - Anisotropic Diffusion

Can anybody guide me to some existing implementations of anisotropic diffusion, preferably the perona-malik diffusion?
0
votes
2answers
181 views

Modifying EmguCV to add a missing function using P/Invoke

It has been a month now while I am making a robot that would explore an unknown area and would make a 3D map using the Kinect sensor. As I am a C# developer, I am using EmguCV as a wrapper to the ...
1
vote
0answers
249 views

OpenCV - detecting a shape in a shape collection (e.g. human in a group of humans)

I am performing blob extraction from video and using the blob's aspect ratio to classify into humans or vehicles. Works pretty well since vehicles and humans have quite differentiated aspect ratios. ...
0
votes
1answer
147 views

Filter for red hue - emgucv/opencv

How do I filter an image for red hue? I understand that red lies around zero between 330° and 30° (represented by 165 to 15 in OpenCV?). How can I use that range with the InRange method as there is an ...
0
votes
1answer
174 views

Detect patterned areas using openCV

I'm working on some image processing problem where I have to detect areas with a specific pattern. There is absolutely no other usable informationen in the image than the pattern - no color, no way ...

1 2 3 4 5