0
votes
2answers
45 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
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 = ...
1
vote
2answers
113 views

Exception in setting up EMGU library in C#

I am trying to setup EMGU library for my C# project. I am following this link http://file.emgu.com/wiki/index.php/Setting_up_EMGU_C_Sharp. I am stuck in: x64 Architecture and the EMGU.CV.Invoke ...
0
votes
1answer
187 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 ...
3
votes
1answer
230 views

What is the Emgu CV equivalent of the Open CV saturate_cast function?

Question What is the equivalent of saturate_cast in emgucv? Background I have an Image<Bgr, byte> and I want to perform a simple calculation on every pixel within it (incidentally: alpha * ...
5
votes
1answer
293 views

How to achieve good sharpness with twain/emgu/open cv?

I am using an Epson Perfection V700 scanner and selecting the following options when scanning using their tool: ICM Color correction (source: EPSON-Standard and target: sRGB) Unsharp Mask (medium) ...
-1
votes
1answer
53 views

Auto switching between multiple versions of referenced assemblies

I need to reference EmguCV from a solution containing one C# WinForms project. There are four versions of the same library i.e. x86 vand x64, each with and without GPU support. The library requires ...
-1
votes
2answers
650 views

Eye and Mouth detection from face using haar-cascades

I have extracted eyes and mouth from the face, but want to extract emotions from eyes and mouth.. However, mouth is not detected properly.. This is my code.. private void timer1_Tick(object sender, ...
0
votes
1answer
126 views

Save EMGUCV VectorOfKeyPoint to XML and load again

Using EMGUCV, for C#, it is possible to save a Matrix to XML so it can be read later. Being that VectorOfKeyPoint is a Serializable class, it can also be saved to a XML file. Nonetheless, when it is ...
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
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
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
570 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
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
2answers
559 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 ...
-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
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 ...
1
vote
2answers
608 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 ...
-1
votes
1answer
1k views

How to convert Image type to Image<Bgr, Byte>?

Any Idea how to convert Image type to Image<Bgr, Byte> type? I get the image from PictureBox Control and I need to convert it to Image<Bgr, Byte> type. Image pictureBoxImage = ...
0
votes
1answer
371 views

emgu Calculate histogram with matrices

I found a similar question: creating histogram using emgu cv c# and it works well when i passed grayscaled images, but when i use the Matrix, program throws exceptions. my code: Matrix<double> ...
1
vote
1answer
2k views

Object Recognition using SURF in emgu CV

For my project I need to recognize the Object(In my case it is a door) using SURF. I'm using emguCV (openCv c# wrapper). I have been working with the surf feature detection example from the emguCV ...
0
votes
0answers
175 views

The given path's format is not supported -Exception

Here is the class: class SignDetect { private string filePath; public SignDetect(string file) { this.filePath = file; } public void FindShape() { ...
1
vote
1answer
391 views

Kinect wrist/hand joints position changing depending on palm size

I'm creating Kinect mouse aplication. The idea is to hand/wrist kinect joint, as a source for cursor position, and finger detection to perform clicks, holds etc. I got finger detection and palm ...
0
votes
0answers
47 views

EmguCV not debug on. NET4.0

I have trouble debugging an application made ​​on. NET 4.0. A written WPF/.NET4.0 and other in WPF/.NET3.5 both compiled fine, but in .NET4.0 I can not debug, the application abruptly closes, I have ...
7
votes
1answer
801 views

Is it possible to find the edge of a “spotty” region in emgucv?

I have an image that looks like this: and I want to find the edges of the dark part so like this (the red lines are what I am looking for): I have tried a few approaches and none have worked so ...
0
votes
2answers
320 views

How can I convert List of PointF to IntPtr?

I am working with EmguCV and I don't know how I can pass array of 2xN, Nx2, 3xN, Nx3 or 1xN (N is number of points) for image points like documented here. I have a method to create an array of ...
2
votes
2answers
1k views

How can I get a continuous polygon using EmguCV?

I am using EmguCV 2.3.0.1416 from a simple console application (.net 4.0 and c#) and I have a question around canny's, edge detection etc. Given the following code: var colours = new[] ...
0
votes
3answers
894 views

motion detection from webcam to control mouse pointer using .NET

My .NET application captures detects motion of a specific type of object from webcam. I am able to control movement of mouse within my form by translating the motion of the object. However I want to ...
0
votes
1answer
1k views

Flipping an image horizontally in OpenCVSharp

I recently shifted my project library from Emgu CV to OpenCVSharp. The code for flipping the image(using pictureBox) in Emgu CV was: Image<Bgr,Byte> f = ...
3
votes
1answer
680 views

FAST Feature Detector/Descriptor EMGUCV/OpenCV

I am a newbie with this stuff so please bear with me :-) I am creating a object recognition application which can Recognize objects. Frames are grabbed by a webcam and tracking and recognition is ...
0
votes
1answer
433 views

Can't open a mpg-File for capture using EmguCV with C#

I'm trying to open a mpg-File using emguCV. I use the following code: if (instance == null) { lock (m_lock) { try { instance = new ...
2
votes
1answer
351 views

How to programmatically make a click happen at the co-ordinates the cursor is pointing to?

I am wondering if there is anyway to trigger a click/double click event at the place where the cursor is hovering? I am using c# and emgu CV for my application.
1
vote
0answers
337 views

Hands free cursor control application using C# and Emgu CV [closed]

I am building an application that will allow users to control the cursor on the screen using their head movements. i am using Camshift algorithm for this purpose. Also, my application will facilitate ...
6
votes
1answer
2k 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 ...
2
votes
1answer
523 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 ...
2
votes
1answer
1k 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 ...
1
vote
1answer
346 views

AccessViolationExeption in Parallel.ForEach loop

I'm trying to execute this code in .NET using EmguCV: Parallel.ForEach<Bitmap>(GetImagesFromCamera(), bmp => { Image<Gray, Byte> src = new Image<Gray, Byte>(bmp); ...
0
votes
1answer
411 views

How to draw an unfilled square on top of a stream video using a mouse and track the object enclosed in the square automatically in C#?

I am making an object tracking application. I have used Emgucv 2.1.0.0 to load a video file to a picturebox. I have also taken the video stream from a web camera. Now, I want to draw an unfilled ...
2
votes
3answers
3k views

EmguCV - MatchTemplate

I have some code like this to find all instances of the template in the result image. Image<Gray, Byte> templateImage = new Image<Gray, Byte>(bmpSnip); Image<Gray, float> imgMatch = ...
1
vote
3answers
2k views

How do I get a .NET Bitmap and an OpenCV image to point to the same chunk of memory?

How do I get a .NET Bitmap and an OpenCV image to point to the same chunk of memory? I know that I can copy from one to the other, but I would prefer that they just point to the same pixels. Bonus ...
9
votes
6answers
11k 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 ...
1
vote
2answers
2k views

EmguCV/OpenCV QueryFrame slow/buffers

We have an application, where we get a message from an external system and then we take a picture, do some processing and return something back to the external system. Doing some performance testing, ...