Tagged Questions
0
votes
0answers
12 views
Generate Transparrent background images with opencv
I'm trying to create this program using opencv where it would find the location of a given set of text in an image.
Now I know the method I'm going to use isn't the most efficient/accurate/correct, ...
0
votes
0answers
17 views
Can't include OpenBR library file in project file
Warning: I'm no Qt expert, so that may be what my problem is.
I built OpenBR on Windows 7 with MinGW following this guide.
This results in libopenbr.dll and the Unix-style libopenbr.dll.a.
What do ...
0
votes
1answer
78 views
QGLWidget with 2 rendering mode
I have an OpenGL widget in Qt (inherits from QGLWidget), with 2 rendering mode :
rendering default cube (#define CUBE_MODE 0).
rendering opencv image (#define IMAGE_MODE 1).
I have a public ...
0
votes
0answers
19 views
libstdc++-6 dll errors with opencv
Let's start with a bit of history and explanation of my situtation, I'm a french trainee (so sorry for my english, i'll do my best so that you can understand me), I started to write my program with ...
0
votes
2answers
70 views
QT and OpenCV error: core.hpp not found
i have installed qt 5.0.2 with opencv 2.4.5 with windows 7 32-bit following this tutorial but when i finished i tested it using the example mentioned in the previous link but i had this error
error: ...
0
votes
1answer
71 views
C:\Users\' is not recognized as an internal or external command compiling opencv for QT
i want compile opencv for QT. i use this tutorial
http://www.laganiere.name/opencvCookbook/chap1s1_2.shtml
in step 8 i have this error:
C:\opencv_bin1>mingw32-make
[ 0%] Building C object ...
-1
votes
1answer
40 views
Retrieving video frames using opencv - unhandled exception
I am getting video frames using cvQueryframes, but in few videos of avi file I get :
Unhandled exception at 0x715c14f0 0xC0000005:
Access violation reading location 0x02f509f0.
I am using ...
-2
votes
0answers
33 views
Errors in Qt with OpenCv program
i am completly new to QT and openCv. I am getting the three errors when i am trying to build my program:
1. /mainwindow.cpp:48: error: #endif without #if LINE:48
...
-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
31 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 ...
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 ...
2
votes
0answers
48 views
Using createButton in opencv2.4.5 (Qt gui features) segfault
I am actually having trouble with the following OpenCV sample:
http://docs.opencv.org/2.4.5/modules/highgui/doc/qt_new_functions.html
(I updated path for my env & added the callbacks functions ...
1
vote
2answers
48 views
Convertion Between cv::Mat and XnDepthPixel*
i am working with OpenNI 1.5.4.0 and OpenCV 2.4.5, plus Qt for visualization purpose (only RGB images).
Basically, i am retrieving the depth and rgb frames from a Kinect and store them on the hard ...
0
votes
0answers
31 views
the Qt program :some errors with Qtimer, why i can't use each timer for each purpose
i want to draw a pipeline when robot explore the pipeline.
#include "dialog.h"
#include "ui_dialog.h"
#include <QTimer>
#include <stdio.h>
#include <iostream>
#include ...
0
votes
0answers
37 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
2answers
79 views
Only output is “exited with code 0”
Please have a look at the following code
main.cpp
#include <QCoreApplication>
#include <iostream>
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
...
1
vote
2answers
348 views
Ubuntu 13.04 -> opencv and qt installation
I'm trying to install opencv (2.4.5) with Qt in my fresh Ubuntu 13.04.
I've downloaded opencv, executed:
ccmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local ../opencv-2.4.5
...
0
votes
2answers
66 views
Introducing a delay in OpenCV::VideoCapture
I have a class Camera inheriting from cv::VideoCapture, which its core method is to convert a cv::Mat that I get from a live stream to a QImage :
QImage Camera::getFrame() {
if(isOpened()) {
...
1
vote
2answers
55 views
How to do image back projecting correctly?
Please have a look at the following code
#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#include <iostream>
...
1
vote
1answer
65 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 ...
-2
votes
0answers
75 views
3D editor which is create by qt [closed]
Recently,I am working at developing a 3D editor through qt.I meet a bigest problem which is how to read some 3D object to my qt application and then display those 3d object in my window,I am not ...
0
votes
1answer
49 views
the first qt-opencv program
My error is:
error: C2228: left of '.open' must have class/struct/union and i dont
know to fix that.
#include "dialog.h"
#include "ui_dialog.h"
#include <QTimer>
#include ...
0
votes
2answers
107 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
76 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
96 views
Gtk-WARNING **: gtk_disable_setlocale() must be called before gtk_init()
Whenever I use OpenCV's cv::imshow alongside with Qt's QApplication, I get this error:
Gtk-WARNING **: gtk_disable_setlocale() must be called before gtk_init()
I did some searching and ended up ...
2
votes
3answers
121 views
Which Qt to download?
I am new to C++ and have been working with MS VISUAL STUDIO 2010 Express. However, I am in need to shift to Qt as my university recommends. Unfortunately, the qt.nokia.com is redirecting to another ...
0
votes
1answer
40 views
Qt or OpenCV: print out the codec of a video file
I'd like to know how i can print out the codec of a video file after opening it with VideoCapture (on OSX or Ubuntu).
The file is correctly loaded and visualized by opencv inside a qt application.
...
2
votes
1answer
36 views
Keyboard Control by Using Haar Classifier in OpenCV?
I've written a code which receives images from a webcam by using OpenCV library. In this program, I try to recognize an object (for example an arrow letter). My application recognizes the letter. ...
0
votes
1answer
51 views
Loaad a openCV Haarcascade from QT ressources
I want to add the openCV cascades to the ressource managment of QT. But i'm failed.
I've tested this code:
// load cascades
QUrl *location_cascade= new ...
0
votes
1answer
95 views
OpenCV C++ interface and Qt framework
I've been using OpenCV to create a project I need to make. I made a fully functioning console application, and now want to make it more graphical (adding a GUI). I'm using Qt for that.
Everything ...
0
votes
1answer
46 views
Opencv2 cvtColor() does not work
I am using OpenCV2 on Ubuntu 12.04. I can successfully run image read-display codes.
However I am not able to run codes with inbuilt functions eg. cvtColor()
#include <opencv2/core/core.hpp>
...
0
votes
0answers
214 views
Qt with OpenCV in Windows
I'm trying to use open source tools in my project. I used to code in VS2010 with Qt5 plugin. I wanted to port my project to Qt. While using VS2010 OpenCV dlls and libs are given so that I easily used ...
1
vote
2answers
74 views
Draw a cv::Mat inside a QGLWidget?
I am wondering how to draw a cv::Mat into a QGLWidget. I´ve found here a method and tried to implement it. But My widget is black.
This is the code of my widget:
h file
#ifndef GLVIEWER_H
#define ...
0
votes
0answers
42 views
Assertion error from qasciikey.cpp while running application in C++ using opencv
I am running simple program written in C++ which grabs images from camera and displays them on the screen. Many times my application unexpectedly crashes after some time. It happened also in many ...
0
votes
1answer
418 views
How to link opencv in QtCreator and use Qt library
This question must be duplicate many times, but it just doesn't work and sometimes it still remains unanswered. The sources of information are mainly these
...
0
votes
3answers
190 views
Program crashes when using cv::findContours with Qt Gui
I have been stuck with this issue for days;
I created a Qt console project, connected it with OpenCV and everything was working just fine;
I created a Qt Gui project, added a button and copied the ...
0
votes
1answer
53 views
Writing to a QListWidget from OpenCV window
I am writing an application for manually selecting regions of interest from an image. Two windows will appear:
An OpenCV window, where the user should select a ROI with the mouse.
A QT window, where ...
2
votes
2answers
105 views
Rendering a OpenCV IplImage to a QGLWidget
I am having trouble with rendering a OpenGL scene.
The background is I want to display the frames from a video capture device in a preview window. I am using OpenCV and Qt. And to test I am capturing ...
0
votes
2answers
195 views
Image Processing in QT using openCV
i am using opencv2.3.1 in QT for detecting circle.
my Open CV Directory is D:\OpenCV
Here my Code:
Project File:
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = ...
1
vote
0answers
147 views
qmake not finding opencv package when built from within Qt creator
I am fairly new to the Qt environment and I am running into an error when I try to build. I am also new to StackOverflow so pardon me if I miss format.
When I run qmake from the command line it finds ...
0
votes
0answers
136 views
glibc detected realloc(): invalid pointer
I am following an article about the basic OCR.I decided to adjust the original program with a GUI interface with Qt.
The first thing I do is add a new class to my project and code all the source code ...
2
votes
1answer
59 views
Multithreaded Face Detection stops working
I am trying to implement a multithreaded face detector. The problem is after capturing and processing some frames from camera, the program unexpectedly stops working. Here is the code:
...
0
votes
3answers
115 views
Passing function as argument
I'm trying to pass a function as an argument in another function.
the following code works when no classes are used but when i tried it with class for qt the following error occur...
error: argument ...
0
votes
2answers
88 views
Using the same variable as input/output in a function
I'm writing a Qt GUI program in conjuction with OpenCV to create a people tracking application. OpenCV has a lot of functions that take a matrix as input and output, for example a color conversion ...
0
votes
1answer
95 views
QCustomPlot linker
I would like to use the features of QCustomPlot to draw some results from my openCV projects.
I didn't find a way to include QCustomPlot to my Microsoft Visual Studio 2010. I have included or course ...
0
votes
0answers
161 views
OpenCV QT VS2010 link error
As the title implies, I am using VS2010 with OpenCV 2.4.3 and QT 4.8. I tried running them independently (OpenCV+VS2010) and then (Qt+VS2010) and they worked fine. But when I try to run all three of ...
1
vote
2answers
206 views
Using GNUPLOT with Visual Studio
I have linked my OpenCV + Qt with Microsoft Visual Studio 2010.
I would like to link it now with GNULOT.
Do you think it's possible to do so to draw some charts by extracting some informations from ...
0
votes
1answer
128 views
Access pixel values by clicking on a point in an image with OpenCV
Is there a way to click on a specified point of a displayed image on open CV to print later on its values later on?
0
votes
1answer
154 views
Compiling opencv with cmake for mingw
I'm building opencv library with cmake for mingw to be used with qt and i've been able to generate the makefilelist.
But when i type mingw32-make at the command prompt i get error when it's 44% built.
...
