Tagged Questions
0
votes
0answers
38 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
29 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
1answer
38 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
34 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
1answer
33 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
44 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
109 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
38 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
1answer
47 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
87 views
fullbody detection and estimating height of human by using emgucv
I am developing program for estimating height of human by using emgucv. I use fullbodydetection to detect human body. I use height of detected rectangular box as reference to estimating height.
My ...
0
votes
1answer
37 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
1answer
68 views
Multiply operation between images in EmguCV
I wish know if EmguCV permits a simple and efficient way to do what in MATLAB is done with the following line:
C = A .* B
(assuming that A, B and C are matrix representing grayscale images with the ...
0
votes
0answers
106 views
draw rectangle emguCv
i want to draw rectangle around circle with emgu cv..
My matlab code:
[B,L] = bwboundaries(binarea,'noholes');
stats = regionprops(L,'Area','Centroid','BoundingBox');
figure,imshow(im);
hold on
...
0
votes
0answers
76 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 ...
0
votes
1answer
175 views
Get r,g,b pixel from an image
I am new at image processing and I use emgu cv with c# and I have a problem.
How can I get R,G,B pixel value from RGB value from an image?
0
votes
0answers
113 views
counting people using emgu cv
I have a graduation project to count the people in the room using haarCascade to detect people and the problem is in the counting of people.What is the way in which I can count people when they reach ...
1
vote
2answers
111 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
115 views
EMGUCV fastest set pixel
I Need fastest way to iterate an EmguCV bitmap matrix and set pixel. i found this after google but it takes about 3 sec for 700x500 image:
Documents says that access (get) data matrix is just o(1) ...
1
vote
1answer
327 views
Trouble using Kinect ColorImageFrame with Emgu CV
I'm working on a project for school involving C#, Kinect, and Emgu CV. I fairly new to both C# and Emgu CV, so I may be missing something simple. What I am trying to do is use the image from the ...
0
votes
2answers
293 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
172 views
Emgu CV - Anisotropic Diffusion
Can anybody guide me to some existing implementations of anisotropic diffusion, preferably the perona-malik diffusion?
1
vote
0answers
246 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
169 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 ...
12
votes
2answers
931 views
Access Violation Exception mystery
I've been working with EMGU+OpenCV for quite some time and ran into this AccessViolationException mystery.
First thing first, the code:
class AVE_Simulation
{
public static int Width = ...
3
votes
1answer
228 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 * ...
-1
votes
2answers
634 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, ...
1
vote
0answers
234 views
Computer vision: marker shape and way to detect it
I want to develop a marker based augmented reality app, and I've chosen emgu as OpenCV wrapper because is the only framework I found that supports Mono for Android and Monotouch (if you know other ...
0
votes
1answer
409 views
Finding contour index using Seq(T).Item Property in EmguCV
I new to EmguCV. I am using Emgu CV 2.4.2 for my application. I've a problem to find the contour index using Seq(T).Item Property. When I used that property in contour, the system sent the error ...
0
votes
0answers
38 views
surfCPU.DetectKeyPointsRaw return unusable Vector
I'm using EMGU SURF algorithm to match two picture and detect if the first contain the second,
sometimes when I call the:
modelKeyPoints = surfCPU.DetectKeyPointsRaw(modelImage, null);
the ...
0
votes
1answer
125 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 ...
1
vote
1answer
1k views
Dividing the blob in Emgu CV
I am using Emgu CV 2.4.2 and want to perform the following algorithm:
Get the blob
Set the ROI to speed up computation
Get the pixel position of local minima from the blob
Dividing the blob
Draw the ...
-1
votes
1answer
153 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 ...
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 ...
1
vote
0answers
106 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: ...
0
votes
0answers
264 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
2answers
553 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
562 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 ...
0
votes
1answer
308 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
320 views
How to convert Emgu.image into image in C#?
How to convert Image< Bgr,Byte > to Image?
Thank you in advance.
0
votes
1answer
282 views
How to mask green pixels?
I need to mask a green pixels in the image.
I have have example of the masking red pixels.
Here the example:
Image<Hsv, Byte> hsv = image.Convert<Hsv, Byte>()
Image<Gray, Byte>[] ...
0
votes
0answers
80 views
CvMatchShapes function returns zero after matching to different shapes?
Sombody who had deal with CvMatchShapes function,
why CvMatchShapes function returns zero after matching to different shapes (contours or gray scale images)?
0
votes
1answer
365 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> ...
0
votes
0answers
417 views
Emgu CV capture from avi file: image being split
I'm trying to capture an image from an avi file using emgu. The avi file is a video previously recorded from a Kinect camera. For some reason the image becomes split and seems to offset (also adds a ...
0
votes
1answer
485 views
Video Player using Emgu CV
I want to make a video player with detection of objects using Emgu CV. I'd like to start with reading from a video source file and that is where I got an error. In line:
Capture capture = new ...
1
vote
0answers
244 views
cvMatchShapes function returns strange results
I compare two similar shapes with help of cvMatchShapes() function.
result = CvInvoke.cvMatchShapes(shapeA, shapeB, Emgu.CV.CvEnum.CONTOURS_MATCH_TYPE.CV_CONTOURS_MATCH_I3, 0);
But I get the ...
1
vote
0answers
96 views
Where is the source code of 'cvextern.dll' of Emgu OpenCV?
Where can I find the source code for 'cvextern.dll' of Emgu OpenCV?
Thank you.
1
vote
2answers
552 views
cvMatchShapes returns me result which is out of logic
I'm a newer in computer vision field.
I found some code examples in EmguCV(.NET wrapper for OpenCV) which I`m trying to use.
Currently I'm working on triangle traffic sign recognition and I'm using ...
0
votes
1answer
403 views
Draw image in specific coordinate
I want to make an app just like this http://andybest.net/2009/02/processing-opencv-tutorial-2-bubbles/ does in EMGU CV
the problem is, that I don't know how to draw multiple image in specific ...
0
votes
0answers
302 views
OpenCV Capture running slow
I have this code on a console application, that is about 250ms per frame capture, 4 fps. It is slow. How can I capture with better framerates? What is causing this so slow capture? How to fix it?
...




