Tagged Questions
0
votes
1answer
16 views
OpenCV portability
I created an algorithm in C, using Dev C++ 4.9.9.2 and OpenCV 2.1 in Windows XP SP3, and I need a solution to run the executable in other computers, without opencv's installation. Just copying the ...
0
votes
1answer
83 views
Translating from Matlab to C a function
I m translating a funciton from MAtlab to C. I have a problem with just some lines with Fourier Transform. This is the code, the commented lines are in Matlab and is what I need to translate.
Mat ...
0
votes
0answers
21 views
How to extract images from gif using giflib to cv::Mat in C++
I'm trying to extract images from gif using giflib in order to bind them in Opencv Mat.
I'm currently using Opencv-2.4.5 and giflib-4.1.6-10.
My problem is that I can extract only extract the first ...
0
votes
1answer
26 views
HSV conversion with cvCvtColor() issue
I'm trying convert RGB image to HSV with the function cvCvtColor(), but the results are unexpected. For example, white are converted to something near to red.
cvCvtColor(img, hsv, ...
1
vote
2answers
33 views
Dev C++ Crashing with OpenCV
I'm writing a simple algorithm to convert a RGB image, from my webcam, to HSV, it's compiling fine, but crashes when the .exe is executed.
#include <cv.h>
#include <highgui.h>
int ...
0
votes
1answer
89 views
Eclipse + OpenCV + Cygwin --> cv.h: No such file or directory
Hi I'm having troubles in Eclipse including OpenCV Library. I Follow a lot of tutorials but i can't compile anything. Here is the output from the console.
Building file: ../hand.c
Invoking: Cygwin C ...
0
votes
1answer
65 views
What is the difference between calls to `imread`in openCV?
what is the difference between this calls to imreadin openCV?On my local machine both of them work.
1) cv::imread(filename.c_str(), CV_LOAD_IMAGE_COLOR);
2) cv::imread(filename, ...
0
votes
1answer
92 views
Understanding openCV code snippet
I have a question about this peace of code.
...............
cv::Mat image;
image = cv::imread(filename.c_str(), CV_LOAD_IMAGE_COLOR);
if (image.empty()) {
std::cerr << "Couldn't open ...
1
vote
2answers
48 views
trouble with Open Cv and GPIO on mini6410
I am doing a simple project on arm based mini6410. I have debian package installed on mini. My project is to interface one IR motion sensor and I USB webcam with the mini6410. the working will be ...
0
votes
2answers
27 views
Instance of overloaded function in OpenCV
Hello I am trying to implement a Fast Feature Detector code,in the initial phase of it i get the following errors
(1)no instance of overloaded function "cv::FastFeatureDetector::detect" matches the ...
0
votes
0answers
63 views
OpenCV rotate, distort and translate ROI in new image
I have an image from which I want to get a vertical ROI, apply some transformations and add to another image.
I read a lot of questions and answer on StackOverflow and other forums, but I'm still ...
2
votes
1answer
29 views
Open CV Multiplying huge matrices segmentation fault
I am facing a problem while implementing matrix multiplication as a part of my project in OpenCV. The following is my code:
cvInitMatHeader( mat, 12300, 10, CV_64FC1, matrix);
cvInitMatHeader( matty, ...
0
votes
1answer
96 views
how to effectively allocate memory for 20000*20000 matrix?
My code follows the PCA algorithm in order to find the eigenvectors and eigenvalues of a 20000 *35 matrix. So in order to find the eigenvector, I need to find the covariance matrix, which on ...
0
votes
0answers
41 views
Saving specific image using opencv
I have to take images from my still camera (webcam) and checking whether vehicle is in image or not , but i think it take much memory , so i think i only save the image in which i have vehicle in the ...
1
vote
0answers
68 views
Insufficent Memory
I am new to Open CV and have been working on a project on gesture recognition. I was implementing PCA and while calculating eigen vectors i stumbled upon insufficent memory error. The 2D arrays i ...
0
votes
0answers
51 views
Severe breaks and leaks
I have a code which basically detects playing cards, isolates them from a dynamic background based on HSV settings, then uses contours to detect the 4 points of the card to find the exact x and y ...
0
votes
1answer
36 views
Steal the resource of cv::Mat to IplImage
below is the source codes of copying the resource of cv::Mat into the IplImage
//copy the resource of src into IplImage
void copy_mat_Ipl(cv::Mat const &src, IplImage **dst)
{
IplImage* ...
0
votes
1answer
148 views
Opencv C++ to C interface function conversion
void doCorrectIntensityVariation(Mat& image)
{
Mat kernel = getStructuringElement(MORPH_ELLIPSE, Size(19,19));
Mat closed;
morphologyEx(image, closed, MORPH_CLOSE, kernel);
...
1
vote
2answers
51 views
output cvRect as an image
I just want to double check that the ROI that I've set is the correct ROI.
Hence, I want to be able to output the ROI as an image. The ROI uses cvRect as the 2nd argument and I don't really know how ...
0
votes
1answer
41 views
Obtain X Y coordinates from CvPoint
I have a code which finds contours in the image. This works fine and the contours found are stored and CvPoints are used to draw lines around the contours.
Now I want to set the ROI for the image
and ...
2
votes
0answers
38 views
opencv image loading using buffer without saving?
plugin for gimp to capture a frame from camera and to load it to gimp workspace.till nw i got the code to capture image and load the image but it is done by saving the captured image but i want to ...
1
vote
2answers
74 views
Retrieve elements of a CV_32FC3 CvMat?
I'm creating a CvMat structure by calling
cvCreateMat(1,1,CV_32FC3);
This structure is filled by a subsequent OpenCV function call and fills it with three values (as far as I understand it, this is ...
0
votes
0answers
86 views
Image pixel scaling error - calculating SNR of CCD lens
I am trying to calculate the signal to noise ratio of two loaded images taken from the same digital camera. The idea is to calculate the signal to noise at numerous light levels to achieve a graph ...
1
vote
1answer
48 views
About OpenCV coordinates
I had a quick question about OpenCV and how it presents coordinates of a ROI when performing face tracking. I was able to print out (x,y) coordinates. But I'm trying to figure out a good way to plot ...
0
votes
1answer
126 views
OpenCV 2.4.4 and GPU support for face detection
I am using GPU for faster face detection. I have found an acceptable tutorial here. I am using VC10 compiler along with CUDA 4.2. The device is well installed and devicequery passes the tests. I also ...
1
vote
3answers
48 views
Specifying the pointer when copying with OpenCV
I'm having an image memory that I stocked and saved it in a pointer to not loose its address.
I would like now to assign it to an IplImage by the following function memcpy (what I have tested):
...
0
votes
1answer
79 views
Close Opencv window using Close button
I have seen lot of examples in opencv exampes to Exit a window by pressing "ESC" key. I am working in a windows platform where I need to use the close button in the window to close the opencv ...
0
votes
1answer
126 views
How to get separate contours (and fill them) in OpenCV?
I'm trying to separate the contours of an image (in order to find uniform regions) so I applied cvCanny and then cvFindContours, then I use the following code to draw 1 contour each time I press a ...
0
votes
1answer
56 views
Linear algorithm to fill a contour
I am trying to make an algorithm that will fill a contour in linear complexity. I know such an algorithm exists. I've read somewhere that it has to do with the number of crossings, but there is a ...
2
votes
1answer
65 views
Getting opencv to work (segfault)
I'm debugging this small program in Linux compiling the code with:
gcc `pkg-config --cflags opencv` `pkg-config --libs opencv` -o videoHandler videoHandler.c
And when I run it I get this output:
...
0
votes
0answers
65 views
OpenCV crashing with error on ntdll.dll
I work with OpenCV 2.2. The code below crashes in Visual Studio 2010 with an error:
message d'erreur: Exception non gérée ntdll.dll
In English: error message: Exception not handled ntdll.dll
...
-1
votes
1answer
279 views
compare histograms of grayscale images in opencv
hi can anyone provide me with a simple open cv program to load two RGB images, convert it to Gray scale, calculate histogram and then compare their histograms. I saw a similar program done in the open ...
1
vote
1answer
138 views
Face detection using opencv
I am using haarcascade_frontalface_default cascade for face detection using Viola Jones Object Detector.
Can anyone suggest any other method/xml file to increase the range (unto 20ft) (maximum ...
1
vote
2answers
143 views
Printing Eye Coordinates through OpenCV tracking
I have managed to perform some simple face and eye detection/tracking. It's not too accurate but it works. I was wondering if there was some way in the OpenCV library where I could extract the ...
1
vote
1answer
81 views
C and OpenCV memory leaks
I have problem with memory leaks. In this simple program:
#include <stdlib.h>
#include <stdio.h>
#include "opencv2/core/core.hpp"
#include "opencv2/highgui/highgui.hpp"
int main() {
...
0
votes
1answer
132 views
opencv .dll files not found
I am running windows 8 64 bit and using Code::Blocks as well as Eclipse as IDE for OpenCV v.2.4.4.
I am following the online tutorial at ...
0
votes
1answer
68 views
Assertion failed
why do i keep receiving this error when i use cvIntegral()
if ((image = cvLoadImage(filename,1))==0){
return -1;//if there is something wrong exit with -1
}
image2 = ...
1
vote
1answer
75 views
How do I access elements of a yml file in opencv?
I have a yml file which looks like this:
%YAML:1.0
X: !!opencv-matrix
rows: 13
cols: 40
dt: f
data: [ 166.000000, 162.666667, 159.333333,
156.000000, 152.666667, 149.333333, ...
1
vote
1answer
39 views
Python opencv returns Bad Properties
I have the C code which works and returns good properties:
int main(int argc, char** argv) {
CvCapture *capture = NULL;
const char* filename = "foo.mov";
capture = ...
-3
votes
1answer
155 views
OpenCV conversion from C++ to C
I have a C++ openCV code that I need to convert to C. However I could not find a guide to check what I should use instead of
cvScalar, cvNamedWindow, cvSmooth
Also, if you see any other ...
-1
votes
1answer
42 views
Threading face_detection on camera with opencv
I am training to use thread on face,nose,eyes detection. Because, when I did not, the camera is working very slowly. I wrote this code. I can not find mistake in code. But when I compiled it is ...
0
votes
0answers
188 views
The thread 'Win32 Thread' (0x1464) has exited with code 0 (0x0)
There is an error in my code. which is The thread 'Win32 Thread' (0x1464) has exited with code 0 (0x0).
'deneme1.exe': Loaded 'C:\Windows\System32\msyuv.dll', Cannot find or open the PDB file
...
0
votes
1answer
57 views
undeclared identifier error
I wrote this code for face detection on thread, than I will write for eyes,nose,mouth. But there is a mistake which is ---'threadface_func' : undeclared identifier--- I can't find what it is.
...
0
votes
0answers
95 views
Makefile Help Required (OpenCV)
I want to track a ball by using OpenCV. I have two servos and a webcam attached to them. When ball changes its location, servos will turn and adjust webcam's location. (If ball goes right, webcam will ...
0
votes
3answers
310 views
copy a part of image with openCv c++
I am using opencv and I want to create an image from a part of another image.
I didn't find a function that do that so I try to implement my Idea which consist of copying the image pixel by pixel
but ...
3
votes
1answer
148 views
How can I perform Template Matching process in SUB-IMAGE extracted from ORIGINAL-IMAGE and Display the results in Original Image
One whole day I have tried a lot to get all the related matches (with matchtemplate function) in sub-Image , which is ROI i have already extracted from the original image with the mousecallback ...
0
votes
1answer
91 views
Open an OpenCv Project in XCode - Run destination My Mac 64-bit is not valid
I downloaded openCV and extracted the project. I navigated into the Samples/FaceTracker folder. Double clicked on the project (FaceTracker.xcodeproj), and clicked on the run button when the project ...
5
votes
4answers
170 views
How I can access my C++ function in my C code or vice versa?
I want to implement a project in C, but it is comfortable to code some part of project in C++ and then call them from main C code.
Is it possible?! if yes, how I can do it?!
thanks in advance :)
P.S.
...
0
votes
1answer
44 views
Populate a list of cvHistogram pixel by pixel
I have an image, and a function
int getRegion(int x,int y)
That gives me a unique identifier to which component a pixel belongs to.
class Component
{
int Identifier;
CvHistogram* hist;
}
...
0
votes
1answer
52 views
cv::namedWindow() hangs when called
I am using Netbeans C++ to create a small project. I have this simple code:
int main(int argc, char** argv) {
cv::namedWindow("Output");
// Create Receiver and Decoder on another thread
...


