Tagged Questions
-1
votes
0answers
30 views
Identifying clothes in opencv [closed]
I know OpenCV can detect humans. Now I need to know whether it can be used to identify set of uniforms they wear, which the uniform images are stored in database or something. What kind of technique ...
1
vote
1answer
27 views
Using LIBSVM on Visual studio 2010
I wanted to use libsvm in visual studio 2010 just for classifying my test sample and nothing more ..
I've worked with libsvm using the documentation provided by its official site ...
So I used ...
1
vote
2answers
30 views
Two situations regarding Declaring / Releasing IplImages
I do care a lot about the memory in my project. It has crashed before due to memory leak.
I'm thinking of two approaches:
Declaring the different IplImages just once in the main project part.
...
-2
votes
0answers
19 views
Installing VS2010 [closed]
I just have a trial version of VS2010 which is expired now. And I bought a full version. But it doesn't contain an online key. I should uninstall the free version that I was using and then, install ...
0
votes
1answer
30 views
Parallel OpenMP reduction vs. function definition?
I'm using OpenMP but the problem is that I'm declaring/defining a function as follow:
void compute_image(double pixel[nb], double &sum)
{
#pragma omp parallel for reduction(+:sum)
for ...
0
votes
0answers
41 views
How to load an OpenCV Mat object into a Label?
How can I set an opencv Mat image object into a C++/CLI label? I have tried the following.
Mat image = imread("C:/Users/Public/Pictures/Sample Pictures/Desert.jpg");
imageLabel->BackgroundImage ...
1
vote
1answer
41 views
Suitable QImage format
I'm having a one Channel image, and want to display it in a QImage
IplImage *img=cvCreateImage(cvSize(640, 480), IPL_DEPTH_8U, 1);
Knowing that When converting from an IplImage* to QImage, I did ...
0
votes
0answers
36 views
How to solve OpenCV Error "function not implemented (called functionality is disabled for current build or platform) when using VideoWriter_GPU?
Question Intro
I'm running an opencv project in Visual Studios 2010 and have implemented cuda support (refer to my previous question for precise info on my set-up). All cuda-functionalities are ...
0
votes
1answer
25 views
“Unhandled exception (KernelBase.dll) ” error in CvAcc function using visual studio 2010 and opencv 2.2
I am using Microsoft Visual Studio 2010 Ultimate with OpenCV 2.2 and I am trying to use the function CvAcc(img1,img2) that takes 2 images and sum them.
The Code is
#include <opencv/cv.h>
...
0
votes
0answers
36 views
Convert Mat to QPixmap
How can we convert directly cv::Mat to QPixmap without going through filename loading?
I have made some research about it but no hints!
As a first step, what I have tried is that I save the image, ...
1
vote
1answer
36 views
RealTime QImage
I'm generating regularly cv::Mat that I'm displaying as soon as it's ready to be displayed, in a separate window. It's kind of a RealTime cv::Mat.
I didn't find a way to display the Mat in my GUI so ...
0
votes
0answers
50 views
Passing OpenCV Mat to Delegate Function C++/cli
I am using OpenCV with a multithreaded approach where one thread runs the GUI and another thread handles the background tasks. I am using VS2010 with c++/cli.
In order to update controls on the GUI ...
-1
votes
1answer
23 views
OpenCV On VS10 opens then closes
I just started using opencv 2.4.0. So after installing, I tried to copy a sample code from here to my project. So click on F5 then a cmd screen opens then closes immediately. I tried googling but ...
1
vote
1answer
119 views
display cv::Mat (opencv 2.4.3) in pictureBox (Visual C++ 2010)
I need to read an image in Mat form using openFileDialog and display it in a pictureBox (in Visual C++/Visual Studio 2010).
I searched a lot but couldn't find the answer.
I am using this code:
...
0
votes
2answers
44 views
Adding two Mat into a window in OpenCV
According to the link of Operations on Arrays of OCV, I was not finding the way to have two different Mat and putting them into an only window which displays both of the images.
PS: It's not about ...
0
votes
1answer
32 views
Splitting an IplImage
I'm having a variable char* ImgMem which contains the image memory of the desired image (three channels / RAW 16) and I would like to split it by three and put each one of them in an IplImage of a ...
0
votes
1answer
27 views
Limitations of OpenCV regarding its depth?
Does OpenCV deals with data which occupies:
8 bits?
12 bits?
16 bits?
According to what I have combined, for a 3Channel IplImage, using unsigned bit, it can only deals with 24 bits and 48 bits.
...
0
votes
0answers
23 views
Confusion in displaying an IPL IMAGE
Here is the point.
The image that I'm having is 1/3 of the total size of my image and the 2/3 other part is black. It's like the original snapshot taken by my camera has been shrunken. It works good ...
1
vote
1answer
63 views
Negative image is completly black
Please have a look at the following code. It is OpenCV 2.4.5
Histogram1D.h
#ifndef HISTOGRAM1D_H
#define HISTOGRAM1D_H
#include <iostream>
#include <opencv2/core/core.hpp>
#include ...
0
votes
0answers
20 views
Error Message:Unable to run program , the specified file is not found
I downloaded the zip file form this link https://github.com/MasteringOpenCV/code
It contains multiple projects.
then I used CMake to configure and generate the project.
When I try to run the ...
0
votes
1answer
46 views
VC++ OpenCV Project Doesn't Show Camera Live Capturing in Release Mode
I have a VC++ project to program a camera, framegabber and also displaying live capturing using OpenCV. the prblem is that the program works fine in Debug mode and it shows the live capturing from the ...
1
vote
0answers
35 views
Incompatibility regarding color parameters in OpenCV
I must use RAW 8 color Mode for my project, according to some research it's having 8 pixels per bit, and it has got 3 channels since it's a color image that I want to display. The project was OK when ...
0
votes
0answers
30 views
Calculating the area of selected parts in an aerial image
I am trying to calculate the area of vegetation in aerial image but I don't have the information regarding the height at which the image is taken. By using the RGB values, I've extracted the ...
0
votes
2answers
98 views
File not found main.obj
I have QT installed in my PC, which is using the Visual Studio 2010 compiler
I tested this with a simple hello world application, and it works fine.
However now I am trying to use OpenCV with QT. ...
0
votes
2answers
75 views
OpenCV Image is not showing
Please have a look at the following code
Main.cpp
#include <opencv2/highgui/highgui.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main()
{
Mat im = ...
0
votes
1answer
110 views
OpenCV 2.4 - fatal error LNK1104
This is my first GUI attempt with Visual Studio Professional 2010, and yes, it involves OpenCV. Please have a look at the following code
The GUI code is very simple, which only contains 1 button.
...
0
votes
1answer
28 views
Converting images between colour spaces
In my book, the method to convert a image from one colour space to another is cv::cvtColor(). But, I can't find that method in cv namespace! In other words, I am using VS 2010 express, and the ...
1
vote
0answers
108 views
EmguCV 'Emgu.CV.CvInvoke' Exception
I have installed EmguCV 2.4.2.1777. I have a 32-bit windows 7 so I installed it using the installer. Now I am trying to write a simple code to capture a webcam's video in a window in C#.
The problem ...
0
votes
2answers
77 views
Access violation writing location 0x00000000
Please have a look at the following code
ColorDetector.h
#pragma
#include <iostream>
#include <opencv2\core\core.hpp>
#include <opencv2\highgui\highgui.hpp>
using namespace std;
...
-2
votes
1answer
88 views
Heatmap figures via OpenCV
According to some research done, the heatmap figures cannot be done via OpenCV. There is some other color maps (HSV, jet...) but not the one I'm looking for.
Do you suggest something to display them?
1
vote
1answer
78 views
Sharpening an Image - Accessing neighbor pixels
Please have a look at the following code
#include <iostream>
#include <opencv2\core\core.hpp>
#include <opencv2\highgui\highgui.hpp>
using namespace std;
using namespace cv;
void ...
1
vote
1answer
75 views
Adding my own function to OpenCV
I need to add a new method that computes connected components to OpenCV 2.4.4 to use in one of my own projects. I already have the code for the function from this question (Thanks to jason), I ...
0
votes
1answer
49 views
cannot convert from 'cv::Mat' to 'void *'
It seemed that I am the only one who got this problem with Opencv 2.4.3.
http://docs.opencv.org/modules/calib3d/doc/camera_calibration_and_3d_reconstruction.html
The following codes are published on ...
2
votes
1answer
256 views
OpenCV C++ Optical Flow based segmentation code throws Exception
From one of the SO answers, for segmentation using optical flow Dense optical flow is required. I modified this code . It uses calcOpticalFlowFarneback function to calculate the dense flow field ...
0
votes
1answer
149 views
cannot open input file 'opencv_calib3d243d.lib'
I get the following error in OpenCV
1>------ Build started: Project: OpenCv, Configuration: Debug Win32 ------
1>LINK : fatal error LNK1181: cannot open input file 'opencv_calib3d243d.lib'
...
0
votes
1answer
71 views
VS 2010 showing error but run the program
When i run my program in opencv c++ visual studio 2010 the program run but i show the following error's , What this error want to install further more ?
'WK01.exe': Loaded ...
0
votes
1answer
39 views
Colour reduction in images not working
Please have a look at the following code
#include <iostream>
#include <opencv2\highgui\highgui.hpp>
#include <opencv2\core\core.hpp>
using namespace std;
using namespace cv;
void ...
-5
votes
1answer
159 views
how to programme an eye tracking based computer mouse in C++
I am doing a project where I have to develop an application in which the mouse cursor moves according to the co-ordinates provided to it.These co-ordinates are generated from the position of user's ...
0
votes
1answer
109 views
How to determine a region of interest and then crop an image using OpenCV c++
I have a sample image as below. I would like to make the square my Region of Interest and then crop out that part (square) and create a new image with it. I will be working with different images so ...
0
votes
2answers
109 views
Memory Location Error [closed]
Please have a look at the following code
#include <iostream>
#include <opencv2\highgui\highgui.hpp>
#include <opencv2\core\core.hpp>
using namespace std;
using namespace cv;
Mat ...
0
votes
2answers
108 views
-1073741811(0xc000000d) error opencv
I installed OpenCV version 2.4.3 using Visual Sudio 10 as the IDE (on windows 7 64-bit).
The problem is that once I installed it and am running even a simple application like that of loading an image ...
0
votes
1answer
28 views
OpenCv image is not getting displayed
Please have a look at the following code
#include <opencv2\core\core.hpp>
#include <opencv2\highgui\highgui.hpp>
#include <iostream>
using namespace std;
using namespace cv;
int ...
0
votes
1answer
174 views
OpenCV GPU Programs not running
This is my first post. So please excuse me if I dont make it a perfect one.
I am using OpenCV for around 2 months and now I wanted to start with GPU processing. So I unzipped a fresh copy of OpenCV ...
0
votes
0answers
150 views
OpenCV with CUDA not working (VC++ 2010)
I have installed OpenCV 2.4.3, and used cmake to make sure that CUDA is enabled.
so, I did:
cmake WITH_CUDA .
and I got the following:
-- CUDA detected: 5.0
-- CUDA NVCC target flags: ...
0
votes
0answers
64 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
...
0
votes
0answers
43 views
opencv occurs max_analyze_duration 5000000 reached at 5000000
I create a project in vs2010 with opencv,it's simple but when I run it an error occurs
:
and this is my code:
#include "highgui.h"
int main() {
cvNamedWindow( "VideoShow", CV_WINDOW_AUTOSIZE );
...
0
votes
2answers
62 views
converting hexa to decimal
I would like to save some values that I'm reading from an image in a text file.
It was about square chars (uchar*). So I casted it into Float*.
It goes well. But the problem is that the values are ...
2
votes
1answer
146 views
Debugging CUDA kernels
I have an OpenCV application, with additional CUDA(.cu) files which I would like to debug using Parallel NSight. NSight debugging works on CUDA samples (without OpenCV .cpp files), but when I try to ...
-1
votes
1answer
63 views
Multiplying two images with openCV
I m multiplying two 16U DEPTH / 3 channels images with openCV via:
cvMul(*src1, *src2, *dest, 1)
What would be the destination properties? 16U, 3 Ch as well?
0
votes
0answers
111 views
OpenCV compile error undefined reference to `cv::createEigenFaceRecognizer(int, double)'
I've been trying to figure this out for three days, but I'm quite new to C++ and I seem to have hit a wall.
I want to change one of the opencv source files, particularly the eigenfaces function ...


