Tagged Questions
0
votes
0answers
54 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
1answer
98 views
Imagebox convert to bitmap
I am writing a C# program which use the webcam to capture image.
For the box to output image, imagebox (in EmguCV library) is chosen.
I am willing to get the pixel information from the output image.
...
0
votes
2answers
198 views
Convert EmguCV image to system drawing bitmap
I am writing a c# program with emgucv library.
I use the imagebox in emgucv to capture image from webcam.
And I want to get the color pixel of the image by using bitmap.Getpixel() by mouse clicking ...
5
votes
2answers
276 views
Color detection by using C#
I am developing a winForm c# program for smile detection with a webcam by using EmguCV library. I use some haarcascade_smile xml file to do it successfully.
However, a detection error occures in some ...
-1
votes
2answers
663 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
0answers
93 views
Video frames pauses on clicking the title bar of windows form
I have C# Windows Form app running, I m using application.idle += processfrm ....to start frames.
But when I left click (trying to drag the window) on title bar of the windows form, the video frames ...
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.
0
votes
2answers
512 views
watershed function provided by EmguCv
I want to use watershed function provided by emgucv.I used the following code but all I get is a white picture.Please help me and correct this code.Thanks.
Image im;
Bitmap bm;
Bitmap bmF;
...
0
votes
1answer
579 views
Switching between multiple Cameras using Emgu CV
I have a quick question: I need to switch between the two camera on a tablet. Front and Back. By default, the Front camera is always used by Emgu CV.
Thanks.