0
votes
0answers
23 views

OpenCV: selection of contours in a processed image

I'm a newbie in OpenCV, and I want to know if you could select a contour in a processed image, for example, you are detecting 1 circle 2 squares and 1 triangle, and you want to know the distance ...
0
votes
2answers
57 views

How to compute the orthonormal basis of a matrix

I need to find a way of computing the orthonormal basis for range of a matrix. In matlab this function does it. I need to do this in c/c++ and I am actually working with OpenCV However, I haven't ...
0
votes
1answer
16 views

How to draw a rectangle in an image which will only be shown when mouse moves over certain location in opencv?

In openCV, i need to do the following: when user moves mouse over certain location, a rectangle will be shown over the image but when he moves cursor out of the location , the rectangle will be gone. ...
0
votes
1answer
30 views

Writing a text in a QPixmap

I'm having what is follow: QLabel* label_PM= new QLabel(this); QPixmap PM ("C:/PM.jpg"); label_PM->setPixmap(PM); I would like to insert to the PM a text like what is done in OpenCV cv::putText. ...
0
votes
1answer
54 views

weird image while trying to compress YUV image to jpeg using libjpeg

I am using Qt,OpenCV and libJpeg to compress a YUV422 image, but the output is not correct. if I convert the yuv to rgb and then compress, I get a correct output, but what I understand that Jpeg is ...
0
votes
0answers
43 views

Linker error using openCV with fftw3 Visual Studio 2010

I'm having trouble trying to implement fftw3 with openCV in the same project. I'm new to c/c++ and any help will be much appreciated. The following is just a sample code i used: #include "fftw3.h" ...
9
votes
1answer
227 views

color object tracking in openCV keeps detecting the skin

What I intend to do is as follows: Fix a colored object. Track it across video frames using histogram-backprojection approach with camshift. I use the following code and it always ends up detecting ...
1
vote
1answer
36 views

OpenCV Assertion failed on Matrix multiplication

I'm multiplying two matrices with OpenCV, A in NxM and B is MxP. According to the documentation: All the arrays must have the same type and the same size (or ROI size). For types that have ...
0
votes
0answers
43 views

OpenCV and GTK+ in a multithreaded video streaming application

i'm developing a multi camera streaming application that uses OpenCV to encode (on the sender) and decode the various video streams. This application is obviously multi-threaded and i implemented a ...
0
votes
0answers
53 views

constrcuting a 3D model with set of 2D images [closed]

I want to figure out a way to construct a 3D model with set of 2D images. I have done this using kinect RGB and depth images. But this time i want to do this using only 2D rgb image set. Can anyone ...
0
votes
1answer
41 views

OpenCV argc and argv confusion

I'm checking some OpenCV tutorial and found this line at the beginning (here is the link, code is under the CalcHist section http://opencv.willowgarage.com/documentation/c/histograms.html) if (argc ...
-3
votes
0answers
62 views

multiple object detection with open cv [closed]

I need to detect multiple object at a time in live camera stream. I have tried the following code, it is working fine for a single object detection. I am using OpenCV SURF technology for this ...
1
vote
1answer
70 views

Is TBB pre-Enabled in Opencv-2.4.5?

I have posted a question in Opencv answers group regarding the performance of TBB. An this is the link. The answer in this link states as below. Probably you used the 2.4.5 library with and ...
0
votes
1answer
23 views

Opencv Static Linking Gives Error

Recently I build opencv as static library(by using BUILD_SHARED_LIBS=OFF) while dynamic libraries are already there, but at different location. And when I build may program I am getting many error. I ...
1
vote
1answer
37 views

Background extraction based on OpenCV

I trying to make a programm based on openCV, that extracts the Background in Video, my Problem is that that the Program take a small change in the intensity (light) as change of the whole background, ...
2
votes
1answer
59 views

Background and foreground in OpencV

i'm working on a project using OpenCV243, I need to get the foreground during a stream, my Problem is that I use the cv::absdiff to get it doesn't really help, here is my code and the result . ...
-5
votes
0answers
41 views

OPEN CV : Analyzing Image data and show the RGB value [closed]

I am gonna do some Image processing job with OPEN CV. I'd like to know RGB value of Image data using OPEN CV with webcam. More detail, I am gonna make some robot which tracks with specific ...
0
votes
0answers
47 views

Calling userdefined functions in thrust

I'm loading a .png file using OpenCV and I want to extract its blue intensity values using thrust library. My code goes like this: Loading an image using OpenCV IplImage pointer Copying the image ...
0
votes
1answer
64 views

Matrix multiplication by it's transpose returning zeros matrix?

I'm multiplying a matrix by it's transpose and I'm getting a zeros matrix. I am multiplying other matrices and not having any problems. I've tried this both with cvMul and cvMulTransposed and always ...
0
votes
1answer
71 views

error streaming from two webcams in opencv

I am trying to make a cheap stereo camera by reading from two usb webcams simultaneously. My code: int main(int argc, char** argv) { char * window1_name = "Cam 1"; char * window2_name = "Cam ...
1
vote
1answer
54 views

What to use : Ipl? or Mat? [closed]

I really don't know what to use for the next projects: IplImage? or Cv::Mat? Knowing that I want : a better performance considerable speed response regarding the different tools to use ...
5
votes
2answers
88 views

Thresholding a range of colors from an image

The plan My project is able to capture the bitmap of a target window and convert it into an IplImage, and then display that image in a cvNamedWindow, where further processing can take place. For the ...
-2
votes
0answers
35 views

How to get the new element in a frame using opencv

I'm trying to write a program in C++, using OpenCV, in which I get the new object that appears in the frame. I tried the to subtract the new frame from the old one but it doesn't really work. Is ...
0
votes
1answer
27 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
0answers
33 views

Draw rectangle over optical flow feature points

I want to draw a rectangle over feature points get from optical flow process. I'm using cvSeqPush method to draw it: CvSeq* trackCarContour = cvCreateSeq(CV_32FC2, sizeof(CvSeq), ...
0
votes
1answer
113 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
43 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
35 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
64 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 ...
1
vote
1answer
230 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
73 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
112 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
1answer
62 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
36 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 ...
1
vote
0answers
118 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
31 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
2answers
117 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
44 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
75 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
53 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
42 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
206 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
58 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
47 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
63 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
97 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
120 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
62 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
197 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
49 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): ...

1 2 3 4 5 15