The opencvdotnet tag has no wiki summary.
0
votes
1answer
50 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
0answers
146 views
cannot find opencv_traincascade in openCV
I installed openCV 2.4.3 and tried to find opencv_traincascade.exe to train the classifier. However, I can only find C:\opencv\apps\traincascade with some C++ files.
Do I need to do something to get ...
0
votes
0answers
32 views
what is the best .net wrapper for opencv that has similar syntax with opencv c++?
i was thinking to make a prototype of my opencv application in visual studio .net so than when i make the actual software with QML and C++ in QT it would be an easy.
5
votes
1answer
264 views
Wierd output while finding entropy of frames of a video in opencv
#include <cv.h>
#include <highgui.h>
#include <iostream>
#include <cmath>
#include <cstdlib>
#include <fstream>
using namespace std;
typedef struct histBundle {
...
0
votes
0answers
142 views
Runtime error while using FileStorage in Opencv
Here is a code from Opencv Documentation that uses FileStorage for writing XML/YAML files:
#include <opencv2/opencv.hpp>
#include <time.h>
#include <iostream>
using namespace cv;
...
0
votes
1answer
25 views
Where is the code for the CacadeClassifier's load function in Opencv?
The declaration of the function load(string) is in objdetect.hpp
I want to know the inner code of the function, so that this question could be answered.
I have tried whatever has been answered in ...
0
votes
1answer
341 views
Error in loading cascade classifier in Opencv using cascade.load()!
I am using the facedetect.cpp code given in opencv samples.
But the after building and running an error comes up because cascade.load(cascadeName) given an error i.e. returns zero.
It was working a ...
0
votes
1answer
91 views
Why is Object detection using haar classifier causing so much delay?
I have around 500 positive samples and 900 negative samples for haar classification.
All of a sudden the object marker utility has started taking around 20 seconds to detect an object. Earlier it ...
0
votes
1answer
89 views
Reason for this error during OPENCV haar training?
OpenCV Error: Assertion failed (rect.width >= 0 && rect.height >= 0 && rect.x <
image->width && rect.y < image->height && rect.x + rect.width >= ...
2
votes
1answer
132 views
Getting more information from CvHoughCircles
I am using the HoughCircles function of OpenCV.
Is there any way I can get more information about the results besides an ordered list of circle center and radius?
I'd like to get the score of each ...
1
vote
0answers
1k views
Emgu CV VideoWriter with specific codec
I need to use the VideoWriter class of Emgu CV library in order to capture a screen at real time.
what is problem now is the FILE SIZE... so, i have to use the specific codec.
so far i have tried ...
0
votes
0answers
142 views
I want to compute GLCM features. Any open-source libraries?
I am seeking an open source library to compute GLCM.
I have tried OpenCV GLCM but it is legacy and not supported any more, do you know a replacement? and why they stopped supporting it without ...
-1
votes
4answers
347 views
Working with real-time data, bypassing CvloadImage
This is how we display and process an Image using Opencv:
int _tmain(int argc, _TCHAR* argv[]) {
IplImage* img = cvLoadImage( "MGC.jpg" );
cvThreshold( img, img, 200, 255, CV_THRESH_BINARY ...
-2
votes
2answers
2k views
OpenCV: Merging two images using OpenCV
What is the best way to make the size of box 2 equal to Box 1 so that CvCopy(); can be applied:
EDIT:
Perhaps I did not put the question properly. So I am re-phrasing it. Given an Image 2 (as ...
0
votes
1answer
115 views
OpenCv: Application hangs when rotating an image in a for loop
The following code gives seg fault and some time stalls/hangs and never works.
for(i=0;i<360;i++)
{
CVrotate(image, i); //i is angle
display("image" in some window);
}
but the ...
2
votes
3answers
3k views
CvMat and Imread Vs IpImage and CvLoadImage
Using OpenCv 2.4
I have two options to load images:
1- CvMat and Imread
2- IpImage and CvLoadImage
Which one is better to use? I tried mixing the two and end up in seg fault.
-1
votes
2answers
438 views
OpenCV: Optmized way for Finding Peak Location on x-axis
Location of Peak (on x axis) in the following image is to be detected
If the image were vertical I would have applied CvMinMax to locate the peak. But since here it is horizontal I am facing ...
1
vote
1answer
731 views
Algorithm for speed measurement of moving objects in a video
You captured a video of a moving car using your camera equipped in a smart mobile phone. The video is very high resolution and assume that some loss-less encoding was done. (Obviously the size will be ...
0
votes
1answer
334 views
OpenCV MATLAB: How to draw a line having a particular Intensity profile?
Below is an arbitrary hand-drawn Intensity profile of a line in an image:
The task is to draw the line. The profile can be approximated to an arc of a circle or ellipse.
This I am doing for ...
2
votes
2answers
1k views
OpenCV: Error in cvHoughCircles usage
I am using cvHoughCircles to find the two white ovals in the following image:
I first used thresholding for locating the white regions and then used Hough Transforms. But the output is not coming ...
0
votes
1answer
96 views
Error:Application development based on opencv
I done my opencv code using windows console application vs2008 than i make that as a dll and used it in windows application vb.net.
while running i got this error.i didn't get where i did mistake.The ...
0
votes
0answers
134 views
How to add velX & velY to my current image?
Suppose velX & velY are defined as following:
Image<\Gray, float> velX = new Image<\Gray, float>(imGrayNext.Size);
Image<\Gray, float> velY = new Image<\Gray, float>(imGrayNext.Size);
...
0
votes
2answers
738 views
How to save an Emgu `Image<Bgr, Byte> frame` in a memory stream as JPEG?
How can I save an Emgu Image<Bgr, Byte> frame in a memory stream as JPEG?
2
votes
3answers
469 views
Region of Interest using OpenCV
With reference to the following Image can someone guide me how to go for extracting all the bulbs (b1, b2, b3, b4, b5) and putting them in separate image (b1.jpg, b2.jpg, b3.jpg, b4.jpg, b5.jpg).
...
1
vote
1answer
504 views
opencv mouse handling on windows form application vc++
I am unable to perform opencv mouse handling in vc++ windows form application. I am getting following error
Error 29 error C3867: 'touch_gui_trial1::Form1::mouseHandler': function call missing ...
2
votes
1answer
2k views
How to get Confidence value in face recognition using EMGU CV?
I am working on a project in which i should design an application which can detect all the faces of the persons passing by...I have a very large database comprising of several known people...I have ...
2
votes
1answer
2k views
How to perform to Template Matching in Emgu CV
Sir,
I am new to Emgu CV.I am making a face recognition software.I was able to detect the faces using HaarCascade xml Classifiers.But i m stuck up at the next step regarding how to recognise the ...
0
votes
0answers
209 views
How to create marker using opencv for fiducial marker system
i am new to opencv. I wanted to know how a marker used for augmented reality application is created. can anyone provide me any sample example to understand how a marker is created because i am person ...
2
votes
1answer
1k views
Finding all matches with matchtemplate opencv opencvsharp
I am using opencv with opencvsharp.
When doing a matchtemplate and afterwards minmaxloc I only get the first match. How do I get all matches?
Cv.MatchTemplate(tempImg, ...
0
votes
1answer
100 views
implement matlabs graycomatrix() in vc++ with openCv
how to implement matlabs graycomatrix() in vc++ with openCv;
is there same of graycomatrix() in openCV?
1
vote
0answers
446 views
Open source code for cast shadow detection and removal
I have implemented foreground subtraction to detect moving cars and the results look pretty good. The only issue is in removing the shadows , which form a part of the foreground.
I searched online to ...
0
votes
1answer
442 views
How to display live video in picturebox using opencvsharp?
This is what I am trying
CvCapture cap = CvCapture.FromCamera(0);
for (int i = 0; i <= 10;i++)
{
IplImage src = cap.QueryFrame();
video.Image = src.ToBitmap();
CvWindow.WaitKey(5);
}
...
1
vote
1answer
171 views
calibration of two images using 8 points
i am new to opencv and i have loaded two chessboard(http://kvisit.com/amaAY)images one next to other captured from different angles and i have computed the four corners of each image in 3d pts and i ...
0
votes
2answers
296 views
OpenCv CvWindow removal
I am trying to get the output of a camera and display it in a c# gui using OpenCvSharp. This is the code I have based on samples. However, this code pops up a second window, CvWindow, which I would ...
1
vote
2answers
429 views
how to cluster colors in a single image?
I have some experience in Opencv.
I want to cluster colors of an image.
For example if I cluster the below image:
i should get 6 clusters each having a cluster name as their RGB value along with ...
0
votes
1answer
483 views
Problems with dllimport in c# under Windows 7 x32
Iam having problems with dll import in c#. I created library under windows xp x32 and tried to use it on windows 7 x32. My library is using another libraries called opnecvsharp which uses dllimport to ...
1
vote
1answer
554 views
Camera extrinsics calculation wrong
I am trying to find camera extrinsics from 2 images. I have the intrinsics from CameraCalibration and the scene has known dimensions (created with 3DSMAX).
The chessboard is 1000*1000, each square ...
2
votes
1answer
525 views
Is there any OpenCV wrapper for Monotouch?
OpenCV (Open Source Computer Vision) is a library of programming
functions for real time computer vision and augmented reality.
http://opencv.willowgarage.com/wiki/
I've only found a couple of iOS ...
0
votes
1answer
418 views
Opencv C++ finding movement in a thresholded image
I am using openCv with C++ and I am trying to find a moving ball under different lighting conditions. So far I am able to filter an image by thresholding it using HSV color space. The problem with ...
0
votes
1answer
1k views
OpenCV 2.2 installation - everything fine but debug output shows “cannot find or open PDB file”
I have just installed the OpenCV 2.2 library with VS 2010 following the willowgarage install guide. at first no dll could be detected so I copied every .dll file in the OpenCV folder to Windows, ...
5
votes
4answers
2k views
Is there a book that is specifically written for OpenCV 2.2?
I have been finding a book for OpenCV, but Learning OpenCV is all what I can find. Unfortunately, the book is written for OpenCV 1.1 and is quite out of date. So I searched in Stackoverflow and found ...
6
votes
4answers
6k views
c# face recognition
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
2answers
471 views
windows phone 6 Vs windows phone 7
Hi
I am going to buy a new htc mobile phone to use it in a project.In my project I need to use the SDK of the mobile and instal other libraries like openCv .
the problem is there is two mobiles HTC ...
6
votes
2answers
426 views
opencvdotnet and FFMPEG - are there any integration options?
opencvdotnet or its analogs and FFMPEG - are there any integration options? like open FLV flie or save to some exotic format... Please, provide a simple code example.
