4
votes
3answers
140 views
Fill the holes in OpenCV
I have an edge map extracted from edge detection module in OpenCV (canny edge detection). What I want to do is to fill the holes in the edge map.
I am using C++, and OpenCV libra …
0
votes
0answers
13 views
how to install opencv in ubuntu karmic koala [closed]
anyone know how to get a working install of opencv in karmic? I've tried pretty much every way i can find in a google search and none seem to work..
0
votes
0answers
15 views
converting image into matrix and vice versa???
Please tell me how to convert image into matrix of pixels and vice versa...using opencv??
0
votes
3answers
28 views
IOError with Python and OpenCV
Hello,
i want to do some OpenCV Basic Operations using Python. My Problem is that the Pythoninterpreter says that the file i want to open with cv.LoadImage() dont exists.
But as y …
1
vote
2answers
62 views
Recognizing striked out handwritten words
I am working on handwriting recognition and related stuff on visual studio platform and using openCV libraries. Input is in the form of binary scanned .tif images.
Currently I wen …
0
votes
5answers
46 views
Open CV + Visual Studio 2008 weird Debugging problem
I've recently installed OpenCV2.0 under Visual Studio 2008 professional edition, built the libraries, dll-s and got everything working but when I run the first example program:
#i …
1
vote
0answers
24 views
What is the best method for object detection in low-resolution moving video?
I'm looking for the fastest and more efficient method of detecting an object in a moving video. Things to note about this video: It is very grainy and low resolution, also both the …
1
vote
2answers
63 views
Testing complex datatypes?
What's are some ways of testing complex data types such as video, images, music, etc. I'm using TDD and wonder are there alternatives to "gold file" testing for rendering algorithm …
1
vote
1answer
32 views
Displaying OpenCV iplimage data structures with wxPython
Here is my current code (language is Python):
newFrameImage = cv.QueryFrame(webcam)
newFrameImageFile = cv.SaveImage("temp.jpg",newFrameImage)
wxImage = wx.Image("temp.jpg", wx.BI …
0
votes
1answer
41 views
How to solve QPixmap::fromImage memory leak?
Hello everyone!
I have a problem with Qt.
Here is a part of code that troubles me:
void FullScreenImage::QImageIplImageCvt(IplImage *input)
{
help=cvCreateImage(cvGetSiz …
0
votes
3answers
80 views
“error: too few arguments to function”
I have a C program called opencv2.0 function :
cvSaveImage( out_img_name, img);
Compiler gcc reports that
too few arguments to function cvSaveImage
The prototype of cvSave …
0
votes
1answer
68 views
How/Why is imagedata stored as char - OpenCV
I'm a tad confused.
I am just getting started with OpenCV and its image data is pointed to by a char pointer. I can't quite work out how that works considering the actual data it …
0
votes
1answer
50 views
EmguCV/OpenCV Image addition/subtraction
I am using EmguCV and am trying to subtract 2 images to create a filter similar to AForge .NET's MoveTowards filter.
This is what my slightly modified version from the above URL t …
4
votes
5answers
5k views
Increasing camera capture resolution in OpenCV
In my C/C++ program, I'm using OpenCV to capture images from my webcam. The camera (Logitech QuickCam IM) can capture at resolutions 320x240, 640x480 and 1280x960. But, for some st …
0
votes
2answers
24 views
In OpenCV what is CvMatND structure used for?
I've noticed in the O'rielly book that when using histograms it refers to a cvMatND data structure. However, the book does not explain what this data structure is used for and how …
