- 16 Jan, 2014 1 commit
-
-
Adi Shavit authored
-
- 14 Jan, 2014 3 commits
-
-
Adi Shavit authored
-
Adi Shavit authored
To be used in the mouse callback like this: if (CV_EVENT_MOUSEWHEEL == CV_GET_MOUSEWHEEL_EVENT(event)) { int delta= CV_GET_WHEEL_DELTA(event); // use delta... }
-
Adi Shavit authored
Small fix for extracting mouse coordinates on Windows, in a way that will always work with multiple monitors. This is the way recommended by Microsoft.
-
- 06 Jan, 2014 1 commit
-
-
Ilya Lavrenov authored
-
- 30 Dec, 2013 1 commit
-
-
Roman Donchenko authored
Also deleted miscellaneous remaining multimon cruft. Deleted #include <winuser.h>, because <windows.h> includes it already. This should have a nice side effect of preventing us from accidentally using any Windows API that's too new.
-
- 26 Dec, 2013 2 commits
-
-
Andrey Pavlenko authored
-
Andrey Pavlenko authored
-
- 20 Dec, 2013 1 commit
-
-
Vladimir Bystricky authored
-
- 17 Dec, 2013 2 commits
-
-
Vladimir Bystricky authored
-
Vladimir Bystricky authored
-
- 13 Dec, 2013 1 commit
-
-
Vladimir Bystricky authored
-
- 07 Dec, 2013 1 commit
-
-
Anatoly Baksheev authored
-
- 04 Dec, 2013 1 commit
-
-
Josep Bosch authored
-
- 19 Nov, 2013 1 commit
-
-
Philippe FOUBERT authored
-
- 18 Nov, 2013 1 commit
-
-
Vadim Pisarevsky authored
-
- 17 Nov, 2013 2 commits
-
-
Anatoly Baksheev authored
moved some headers to precomp.hpp
-
Anatoly Baksheev authored
-
- 16 Nov, 2013 1 commit
-
-
Anatoly Baksheev authored
-
- 14 Nov, 2013 1 commit
-
-
Roman Donchenko authored
avformat_find_stream_info was introduced in Libav avformat 53.3, but it was only merged to FFmpeg in avformat 53.6. In Libav avformat 53.3-53.5 av_find_stream_info is not removed (only deprecated), so this shouldn't break building with that.
-
- 12 Nov, 2013 1 commit
-
-
Roman Donchenko authored
Searching in directory names can yield confusing results; e.g. if the input is "jpeg2000/image1.jp2", it will infer the pattern "jpeg%04d/image1.jp2", which is likely not what the user intended. If the user really desires for the variable part to be in the directory name, it can always use an explicit pattern.
-
- 11 Nov, 2013 2 commits
-
-
Philippe FOUBERT authored
-
Roman Donchenko authored
at can't be a null pointer, so the condition was always false, and a nonsensical pattern like "image.png%00d" was being inferred.
-
- 10 Nov, 2013 1 commit
-
-
Philippe FOUBERT authored
- crosses initializations in "cap_ximea.cpp" (which also contained some awfull "goto" instructions) - the "CMAKE_CL_64" variable is not initialized when using mingw PR#1039 modified to be able to merge on branch 2.4
-
- 06 Nov, 2013 2 commits
- 29 Oct, 2013 1 commit
-
-
Roman Donchenko authored
Previously, VideoCapture::retrieve would return a Mat that referenced the internal IplImage. Since the latter is rewritten every time a frame is captured, it means that if the user captures two frames in a row, the first frame would reference nothing. Similar if a user captures a frame, then destroys the VideoCapture instance. Note that the other branch of the if isn't affected, since flip allocates a new Mat.
-
- 25 Oct, 2013 1 commit
-
-
Roman Donchenko authored
From commit dd74a851, to be exact. Now cap_ffmpeg.cpp should actually build if HAVE_FFMPEG is true. Also modified some gpu sources in a similar manner.
-
- 23 Oct, 2013 1 commit
-
-
Roman Donchenko authored
-
- 17 Oct, 2013 1 commit
-
-
Vladislav Vinogradov authored
we doesn't create OpenGL windows by default OpenGL window must be created by user via namedWindow
-
- 08 Oct, 2013 1 commit
-
-
Ilya Lavrenov authored
-
- 04 Oct, 2013 2 commits
-
-
Roman Donchenko authored
-
Roman Donchenko authored
-
- 03 Oct, 2013 2 commits
-
-
Roman Donchenko authored
-
Roman Donchenko authored
-
- 30 Sep, 2013 1 commit
-
-
Tony authored
The second parameter of gtk_widget_set_realized is of type gboolean (gint). This is to ensure compatibility on alternative compilers and platforms.
-
- 27 Sep, 2013 1 commit
-
-
Alexander Smorkalov authored
-
- 26 Sep, 2013 2 commits
-
-
Tony authored
This update replaces depreciated Gtk1.x symbols with Gtk2.x symbols in preparation for adding Gtk3 support. These edits aim to be fully compatible with Gtk2.x, allowing backward compatibility. The following symbols have been replaced in this commit: Gtk symbols that have been moved to the Gdk library: - GtkType -> Gtype - GTK_CHECK_CAST -> G_TYPE_CHECK_INSTANCE_CAST - GTK_CHECK_TYPE -> G_TYPE_CHECK_INSTANCE_TYPE - gtk_signal_connect -> g_signal_connect - GTK_SIGNAL_FUNC -> G_CALLBACK - gtk_type_class -> g_type_class_peek - gtk_type_new-> g_object_new - GtkTypeInfo -> GtypeInfo (Not required for g_type_register_static_simple) - gtk_type_unique -> g_type_register_static_simple - gdk_draw_image_rgb -> replaced by gdk_cairo_source_pixbuf NB: This requires porting to use cairo contexts and GdkPixbufs. The following gtk symbols are changed for their modern equivalent: - GTK_WIDGET_REALIZED -> gtk_widget_get_realized - GTK_OBJECT_FLAGS -> gtk_widget_set_realized Symbols without replacement: - gtk_range_set_update_policy -> No replacement; as default policy is set to continuous we can delete this line.
-
Fedor Morozov authored
-
- 23 Sep, 2013 1 commit
-
-
StevenPuttemans authored
-