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.
0
votes
1answer
307 views
Emgu Cv and 16 bit grayscale images
Does Emgu Cv offer any kind of support for working with 16 bit grayscale images? (working with c#).
If it doesn't is there any kind of easy-ish workaround for that?
thanks in advance
On here it says ...
0
votes
2answers
172 views
How to Declare Matrix array in Emgu CV?
I am new in Emgu CV . I need a matrix array to store pixel values of gray images. Is it possible to declare a matrix array .
I code like this for matrix array But is gives "Error"
public ...
0
votes
0answers
191 views
Object detection in Emgu CV
I would like to train some sample images that contains a set of objects (e.g., cat, dog) and then I want to find those objects (with locations) from videos. I am new in computer vision area and I am ...
4
votes
1answer
350 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 = ...
0
votes
0answers
217 views
Emgu CV (C# OpenCV) - Non Square pixels in video
Trying to add some text to the video.
I opened a capture capture = new Capture(Source); , query the frames, and on by one edit, and write to the new file:
captureOutput = new ...
0
votes
0answers
119 views
Cant' open image in C# emgucv,
I created a windows form and a picture box.
I add this code :
Image<Bgr, byte> My_Image = new Image<Bgr, byte>("c:\\sh.jpg");
But when I debug, image.cs is opened in a new visual ...
-3
votes
1answer
208 views
How to find coordinates of the center of a circle [closed]
How to find coordinates of the center of a circle if I don't have any parameters?
It's for face recognition with Emgucv. Program detects eyes and draw circle around. For every circle I want to find ...
0
votes
0answers
645 views
Emgu CV (Open CV in C#) - Cant write video
I'm trying to open(capture) a video, process it's images(add a text actually) and save it to another file.
I used this as my starting code, and used(just for experimenting) it to capture a video(avi) ...
1
vote
0answers
266 views
Emgu Cv Motion Detection
I'm working on hand detection using EmguCv. I have successfully detected the skin color object in live video feed. With in that skin detected object I want to track the moving hand only. Please ...
1
vote
1answer
261 views
How to convert Bgr pixel to Hsv pixel in EmguCV?
I'd like to convert a Bgr value (one pixel) to an Hsv value. How can I do that (without writing the conversion code from scratch) in EmguCV?
Please note that I am not interested in converting whole ...
-1
votes
1answer
154 views
Nvidia: the graphic driver could not find compatible graphic hardware
I can't install the nvidia installation in cuda toolkit. I don't have a nvidia card. Does that means I can't use emgu.cv? I been on this all yesterday and emgu.cv is still giving me problems.
Here ...
0
votes
0answers
204 views
Preprocessing Photo
I'm developing a face recognition system in .net (C#) , using EmguCV. I have been inspired by the fantastic Chris_Johnson code.
Before doing the recognition, the photos pass two preprocess phases :
...
1
vote
4answers
2k views
Exception initializing Emgu.CV
Hey this is my first time using this website, but I a problem. I saw this awesome youtube video about getting ocr to work with vb.net. Here the url:
http://www.youtube.com/watch?v=Kjdu8SjEtG0
So I ...
0
votes
1answer
279 views
Where does EmguCV use tesseract from?
In the Emgu.CV.OCR sample project, there is a class Tesseract, which is a wrapper for the Tesseract-OCR engine.
In Tesseract.cs, there are declarations like:
[DllImport(CvInvoke.EXTERN_LIBRARY, ...
0
votes
0answers
182 views
Load an Image in EmguCV's Imagebox, damned IImage
I have managed to load an Image on the control only by right-click' selecting the "load image" option while in runtime.
I want to know if there's a way to load it passing specifically the Image ...
2
votes
1answer
338 views
EMGU 2.4.0 BruteForceMatcher KNNMATCH not working?
Here is a snapshot of my code,
Matrix<byte> mask;
int k = 2;
VectorOfKeyPoint modelKeyPoints;
VectorOfKeyPoint observedKeyPoints;
SURFDetector surfCPU = new SURFDetector(500, false);
...
4
votes
1answer
178 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];
...
0
votes
2answers
161 views
How to get playing video as a camera input?
i want to detect specific object from live ongoing video.so i implement frame extraction part(opencv, c++) as one part and other detection function(emgucv, c#) for other part. for integrating those ...
0
votes
1answer
164 views
While want to make an instance of SIFTDetector: Get an Attempted to read or write protected memory exception Error
I am trying to use sift algorithm to make the keypoints and descriptors in c# by using opencv library.
fileAddress = dlg.FileName;
cap = new Emgu.CV.Capture(dlg.FileName);
...
0
votes
2answers
287 views
face detection in flex
I'm trying to write a simple program that will detect a face off a webcam and then trigger an event(optionally take a snapshot of the face)
I don't need anything fancy like to compare it to other ...
0
votes
0answers
147 views
How to filter an image in Emgucv? [closed]
Now I have a mask 1/5[0 1 0, 1 1 1, 0 1 0]. But I can't find any function in Emgucv to use the mask for an image. Any function I can use?
1
vote
0answers
180 views
SEHException when inverting huge matrix
I'm trying to calculate mahalanobis distance in c# using emgu cv. I have 3 image each sized 100x100. The step are, first I calculate the covariance matrix, then I calculate the inverse covariance ...
0
votes
1answer
251 views
How to solve exception “Unable to create ocr model using Path tessdata and language eng” in emgucv
when i trie to build c# project(project for road sign detection system), that could build and debug without excption. but when i click button in main interface of the project, there was an exception ...
1
vote
0answers
107 views
EmguCV detect keypoints from 3D Model
Is there a way i can retrieve the observed keypoints from a 3D model instead from an image. This is since i need to track an uneven object (simple spaceship right now: ...
1
vote
0answers
113 views
Acess violation exception emguCV cvQueryHistValue
I got stuck with Access violation exception in managed code. Histogram pointer is not null and everything seems ok. Got example of creating IntPtr's from ...
-2
votes
1answer
436 views
Emgu CV tennis balls and lines detection [closed]
I am new to image processing and I want to use Emgu Cv for my robot.
Mainly I want it to detect balls on the tennis court and pick them up and follow the lines on the court.
Any suggestion to what ...
1
vote
1answer
202 views
How to blur part of an Image using EmguCV?
We have a large number of Images taken from a car for a project. To satisfy privacy norms, we need to detect faces & License Plates and then blur those areas. I came to know of the Emgucv project, ...
1
vote
1answer
396 views
UI Freezes while processing frames from Kinect using EmguCV in WPF C# Application
I am working on a project which involves extracting features from color and depth frames from Kinect Camera. The problem I am facing is that whenever I try displaying 2 Images, the UI hangs. When I ...
4
votes
2answers
211 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 ...
0
votes
2answers
196 views
Putting a smaller image within a larger image.
I need to put a smaller image within a larger image. the smaller picture should be centered in the larger picture. I'm working with C# and OpenCV, does anyone know how to do this?
0
votes
2answers
90 views
How can I get quantity of numbers in array which are in some range?
I have this array filled by numbers:
Image<Gray, Byte> imgHue = channels[0];
I need somehow to get quantity of the number in array that are in the range of 100-105.
Any idea how to implement ...
0
votes
1answer
573 views
How to display EMGU histogram in chart control?
I have this code example:
//creating histogram using emgu cv c#
//Create a grayscale image
Image<Gray, Byte> img = new Image<Gray, byte>(400, 400);
// Fill image with ...
0
votes
0answers
266 views
EmguCV with AVI/MJPEG stream in C#
So, i'm using EmguCV in my project to do facial recognition. It works when using my webcam, but now I want to use an MJPEG stream.
Big edit: Turns out the stream wasn't AVI at all, it's MJPEG! Which ...
0
votes
1answer
168 views
XNA, EmguCV and perfomance issue with webcam
I started working with EmguCV, but I stumble upon a performance issue trying to convert from the grabber's bitmap to a Texture2D
This is my code
private void FrameGrabber()
{
...
8
votes
5answers
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 ...
0
votes
2answers
105 views
Any idea how to get background color of the poster or broadsheet?
In my project Im using EMGU librery.
I need to determine the background color of the urban poster or broadsheet.
As I see the background color of the poster or broadsheet is the predominant color.
...
0
votes
0answers
276 views
Looking for a function for motion detection on emgucv
I am new to emgu cv; I'm trying to find a code that makes motion detection. I tried this:
CvInvoke.cvAbsDiff(frame, _backgroundImage, BgDifference);
CvInvoke.cvThreshold(BgDifference, thresholded, ...
1
vote
0answers
223 views
background removal using emgucv
How to remove background from a live video feed using emgucv. I need some thing like this video. The only thing I want is a moving object or a human. i tried motion detection but didn't achieve the ...
0
votes
0answers
184 views
particle filter using c# with emgucv [closed]
How to implement particle filter in live video feed using emgucv. I want to track the position of hand using emgucv particle filter method.
0
votes
1answer
508 views
Why the GPU don't show the advantage than CPU for opencv SURF algorithm?
I want to using the GPU to accelerate SURF algorithm. But Actually I found the CPUs(enale TBB) are
more faster than the GPU for SURF algo.
My hardware and OS Info:
CPU: Intel(R) Xeon(R) CPU E3-1230 ...
0
votes
1answer
226 views
Open CV Surf And FindExtrinsicCameraParams2
Is it possible to use FindExtrinsicCameraParams2 to get the pose matrix instead of using homography decomposition with SURF feature detection ?
0
votes
2answers
560 views
Emgu.CV.CvInvoke threw an exception
Im using emgu in my project.
I get this exceptit:
Here the details of the exception:
The opencv_core242 is in the folder project,and platform target set to x86.
Any idea what might cause the ...
1
vote
1answer
574 views
Emgu circle detection using a webcam
I'm trying to write a program that detects a circle when you hold it in front of the webcam. I know how the circle detection works for an image, but I can't figure out how to get it to work with a ...
-3
votes
2answers
102 views
How to get a base class?
I created this type:
public class ImageHolder :Image<Bgr,byte>
{
private String imagePath;
public ImageHolder(String path):base()
{
this.imagePath = ...
0
votes
0answers
1k views
Emgu.CV.CvInvoke' threw an exception
I am trying to use EMGUCV for C#. Currently i have installed Visual Studio 2010 express Edition. When trying to execute some simple commands the Emgu.CV.CvInvoke threw an exception came out so i put ...
0
votes
1answer
310 views
EmguCV Detect Image Blurriness
I am attempting to detect an image's blurriness using EmguCV. Right now I am attempting to do an FFT of the gray image, but I am stuck because my program just hangs after calling CvInvoke.cvCopy. See ...
0
votes
1answer
70 views
How can I use EMGU in .NET2 project
I'm using .NET2
I need to use EMGU library in my project.
But when i try to attach EMGU DLL's I get this massage:
How I can understand .NET2 doesn't support EMGU.
Any ideas how can I use EMGU ...
0
votes
2answers
504 views
C# emgu cv: Recorded Videos playsback to fast/slow
I am trying to write the captured video to a file using VideoWriter and Capture from emguCV,
the problem is: If i playback the video that I have just recorded it plays to fast or to slow.
How can i ...
1
vote
2answers
609 views
Type initialization exception
I created imageHolder class:
public class ImageHolder : Image<Bgr, Byte>
{
private String imagePath;
public ImageHolder(String path):base(path)
{
...
1
vote
1answer
321 views
Algorithm to crop face image to a specific ratio using face detection
I have a lot of upper body/face pictures and i'm trying to create a page similar to this:
http://www.mediatechsummit.com/ehome/index.php?eventid=45432&tabid=76964&
The problem is my pictures ...

