Pavel Rojtberg
358ec04413
highgui: add property WND_PROP_VISIBLE
...
checks whether the window exists and is visible. On QT closing a window
merley hides it, so the common hack for checking whether a window exists
exists = cv2.getWindowProperty(.., 0) >= 0
does not work.
9 years ago
Pavel Rojtberg
a37a6bd783
fix BGR <> RGB swap
...
we are drawing on a BGR image declared as RGB, so we should not swap
components here either.
9 years ago
Alexandr Kondratev
46bfdbaf82
highgui: window_QT mousecallback code refactored using DRY
9 years ago
Pavel Rojtberg
e4cf3297c7
highgui: allow specifying that a button should create a new buttonbar
9 years ago
Christian Kapeller
81e6ef2958
highgui: window QT+OpenGL mouse wheel support, another build fix
...
amends work done in pull request #6976 .
9 years ago
Alexandr Kondratev
d394d26b46
highgui: window QT+OpenGL mouse wheel support, build fix
9 years ago
Alexandr Kondratev
13aef2c0cf
highgui: window_QT mouse wheel support
9 years ago
Ilya Lavrenov
3bf16da92d
added condition for Qt5
9 years ago
Alexandr Kondratev
179998a8a2
highgui module: window_QT mouse wheel reuse variable delta instead call evnt->delta()
9 years ago
Alexandr Kondratev
6020dacc11
highgui module: implemented QT and GTK mouse wheel callback support in linux
9 years ago
Pavel Rojtberg
cfd498a8eb
fix compilation with qt
...
QSlider does not have getMinimum/Maximum getters. Probably was not
compile tested.
10 years ago
Aman Verma
b0209ad7f7
Fix for #5495 : add setTrackbarMin
10 years ago
Dominik Kleiser
f363670934
Bug #3800 - Resize viewport when CV_WINDOW_KEEPRATIO was set (Qt)
10 years ago
Luis Díaz Más
b599774e30
Fix a bug that impede to set the trackbar pos using the Qt control panel
...
Conflicts:
modules/highgui/src/window_QT.cpp
10 years ago
Luis Díaz Más
e6f7e96ff4
Fixing the bug #4244 that I just reported in code.opencv.org
10 years ago
Craig Reynolds
b4c7c011b7
In cvAddText, construct QString from "text" using fromUtf8.
10 years ago
Luis Díaz Más
7711cd284b
Fix a bug that impede to set the trackbar pos using the Qt control panel
10 years ago
Luis Díaz Más
d14a1de947
Fixing the bug #4244 that I just reported in code.opencv.org
10 years ago
StevenPuttemans
cef2cf2852
fixing locale settings - making it universal
10 years ago
Craig Reynolds
72d90ba8d2
In cvAddText, construct QString from "text" using fromUtf8.
10 years ago
Ashod Nakashian
63c49be487
highgui: Support to change trackbar count in setTrackbarPos and replaced deprecated CreateToolbarEx in Windows.
11 years ago
Ashod Nakashian
006384edaf
highgui: Support to change trackbar count in setTrackbarPos and replaced deprecated CreateToolbarEx in Windows.
11 years ago
Andrey Kamaev
f4ba8b13c7
Add cv::setWindowTitle to highgui
11 years ago
Daniel Stonier
d3ad26926d
fixed support for parallelised imshows with qt via the gui receiver.
11 years ago
Daniel Stonier
161f50962d
make sure children are included in the moveToThread
11 years ago
Daniel Stonier
e638b9e805
support invokation of cv windows from parallel threads to an external qt application.
11 years ago
Björn Wöldecke
f3aa4bdf59
fix misinterpretation of empty window name
...
The documentation states, that a NULL or an empty window name can be used
to refer to the control panel. But the string parameters of the C++ frontend
methods cannot be NULL and converting an empty string to a const char* by
c_str() doesn't produce a NULL pointer, but an empty string. Unfortunately,
the const char* pointer is just passed on to the standard C functions in
the QT backend, which doesn't check for the empty string case.
There are two places where the empty string check could have been introduced:
inside the frontend or inside the backend. As long as the documentation only
mentions this as a special case for the QT backend, the best place seems to
be there.
11 years ago
StevenPuttemans
34103ef1cb
fixing setting the locale back to what should be expected
...
fix should be applyed for every window interface and generation
11 years ago
Ilya Lavrenov
099ea91823
typos
11 years ago
Alexander Smorkalov
06a7a1ac47
Bug #1890 Opencv 2.4.0 with QT 4.7.4 and cvcreatebutton exception fixed.
...
QVector range check exception fixed.
12 years ago
Roman Donchenko
f55740da70
Deleted all trailing whitespace.
12 years ago
Roman Donchenko
37d19b9c46
Pass the HAVE_QT* flags through the config header, like all others.
...
I don't know why it didn't work for the original author, but it definitely
works now.
12 years ago
Leszek Swirski
7d0f6b4d68
Fix image saving from QT toolbar
12 years ago
Leszek Swirski
9a1cc06ebe
Fix pixel value rendering for non-fixed-size QT windows
12 years ago
Andrey Kamaev
715fa3303e
Move cv::Mat out of core.hpp
12 years ago
Andrey Kamaev
3088808926
Fix build of various backends
12 years ago
Vladislav Vinogradov
e06c3ec7c5
updated OpenGL functionality:
...
* removed OpenGLFuncTab, now extensions are loaded internally
* added support of GlBuffer and GlTexture2D to InputArray/OutputArray
* added ELEMENT_ARRAY_BUFFER and PIXEL_PACK_BUFFER targets
* added copyFrom/copyTo method for GlBuffer and GlTexture2D
* removed GlFont
* removed pointCloudShow
* removed OpenGLCleanCallback
* added Access parameter to GlBuffer::mapHost
* added autoRelease parameter to all create methods
12 years ago
Ilya Lysenkov
3c8787980c
Fixed cvDestroyAllWindows() without windows in QT ( #2440 )
12 years ago
Vladislav Vinogradov
08fbf667f9
refactored opengl functionality
...
* removed OpenGLFuncTab, now extensions are loaded internally
* renamed GlTexture -> GlTexture2D
* added support of GlBuffer and GlTexture2D to InputArray/OutputArray
* added ELEMENT_ARRAY_BUFFER and PIXEL_PACK_BUFFER targets
* added copyFrom/copyTo method for GlBuffer and GlTexture2D
* removed GlFont
* removed pointCloudShow
* removed OpenGLCleanCallback
13 years ago
OpenCV Buildbot
81f826db2b
Normalize line endings and whitespace
13 years ago
OpenCV Buildbot
04384a71e4
Normalize line endings and whitespace
13 years ago
Vadim Pisarevsky
d9e801fbfa
improved image rendering performance in Qt backend for highgui UI (bug #2356 )
13 years ago
Andrey Kamaev
d2b36d74cd
Merged the trunk r8911
13 years ago
Andrey Kamaev
df262b340c
Fixed #2125
13 years ago
Andrey Kamaev
17fd1c7c61
Merged recent changes from trunk - 8833,8848,8850
13 years ago
Andrey Kamaev
4d09d62f85
Added Ptr<T> support to AlgorithmInfo; fixed some warnings
13 years ago
Andrey Kamaev
bd0e0b5800
Merged the trunk r8589:8653 - all changes related to build warnings
13 years ago
Andrey Kamaev
c5aba337e9
Fixed number of warnings. Fixed mingw64 build.
13 years ago
Andrey Kamaev
49a1ba6038
Set stricter warning rules for gcc
13 years ago
Vadim Pisarevsky
d5a0088bbe
merged 2.4 into trunk
13 years ago