Mansour Moufid
7d4cbbd7aa
Cast a long integer to double explicitly.
2015-02-24 17:04:28 -05:00
Mansour Moufid
b7be49426d
Cast some image coordinates and sizes to double.
2015-02-24 12:21:34 -05:00
Vadim Pisarevsky
7e1068919b
Merge pull request #3587 from vpradeep07:fix/pnpransac_race_cond
2015-01-29 12:12:18 +00:00
Alexander Karsakov
c481e06e87
Fixed getPolicy() method to make it thread-safe.
...
(cherry picked from commit 8910508b83
)
2015-01-27 19:20:35 +03:00
Vadim Pisarevsky
9a6a046caf
Merge pull request #3613 from asmorkalov:aarch64_tiff
2015-01-20 12:36:38 +00:00
Vadim Pisarevsky
07c9a88d9c
Merge pull request #3621 from asmorkalov:ts_master_comapat_header
2015-01-19 12:33:58 +00:00
Alexander Smorkalov
9e9327e2f8
Added OpenCV 3.0 compat header for TS module.
2015-01-18 21:32:19 +03:00
Craig Reynolds
72d90ba8d2
In cvAddText, construct QString from "text" using fromUtf8.
2015-01-16 14:57:11 -08:00
Alexander Smorkalov
d277a1ba75
TIFF support hack for aarch64 reverted.
2015-01-17 01:25:58 +03:00
Vijay Pradeep
042ff210d5
Fixing race condition by expanding resultsMutex lock section
2015-01-08 15:26:15 -08:00
Alexander Smorkalov
c778011f14
More accurate AVX and AVX2 control.
...
- Previous version just checked option support, but not enable it.
- Also OpenCV tests reports invalid AVX and AVX2 support status.
2015-01-04 23:41:14 +03:00
Maksim Shabunin
e23ba9215d
Fixed memory leak in ML module
...
"int * CvMLData::sample_idx" was not freed
2014-12-30 15:20:24 +03:00
Alexander Smorkalov
8acd4c3ff4
More accurate fix for libtiff and aarch64.
2014-12-28 12:44:24 +03:00
Alexander Smorkalov
c0a8d4e1ef
Fix of HaarCascade GPU test for aarch64.
2014-12-28 11:49:25 +03:00
Vadim Pisarevsky
a5969aec96
Merge pull request #3534 from taka-no-me:build_fixes
2014-12-26 14:34:13 +00:00
Vladislav Vinogradov
d00f36ec75
fix tests for gpu::matchTemplate:
...
use ASSERT_FLOAT_EQ to compare float values, it is more robust for
large values
2014-12-25 17:43:13 +03:00
Andrey Kamaev
c105b72945
Assorted fixes:
...
* cmake CMP0054 and CMP0045
* aarch64 build
* portable code options in PCH cmake
* some of gcc 4.9 warnings
2014-12-25 12:41:16 +03:00
Roman Donchenko
034ff3ce13
Merge pull request #3497 from SpecLad:fs-open-fail-leak
2014-12-24 08:59:53 +00:00
Roman Donchenko
08da247a87
cvOpenFileStorage: reduce the scope of xml_buf and make sure it's freed...
...
... before any exceptions occur.
2014-12-22 18:54:39 +03:00
Vadim Pisarevsky
63bc4d4b7f
Merge pull request #3471 from HelenWong:FixBug3714
2014-12-22 10:55:23 +00:00
Vadim Pisarevsky
cc024d3ef2
Merge pull request #3484 from euphrat:gmg_update_fix
2014-12-22 10:54:57 +00:00
Vadim Pisarevsky
20d957d212
Merge pull request #3511 from mattip:2.4
2014-12-22 10:41:21 +00:00
Vadim Pisarevsky
03df7831ab
Merge pull request #3514 from mshabunin:compat-24
2014-12-22 10:38:56 +00:00
Vadim Pisarevsky
2425dac9a1
Merge pull request #3500 from StevenPuttemans:fix_2432_2.4
2014-12-22 10:28:33 +00:00
Vadim Pisarevsky
9071598a65
Merge pull request #3515 from StevenPuttemans:fix_FeatureDetector_docs
2014-12-22 10:27:01 +00:00
Roman Donchenko
16ce114e0c
Fix memory leaks appearing when cvOpenFileStorage throws
2014-12-22 12:59:08 +03:00
Maksim Shabunin
91e21847e2
Some changes to make migration to 3.0 easier
2014-12-16 13:00:31 +03:00
StevenPuttemans
73d1ea9a52
fix bug 2432 for 2.4 branch
2014-12-15 11:56:42 +01:00
StevenPuttemans
db9a0cfbc0
add extra to FeatureDetector docs
2014-12-15 11:31:18 +01:00
mattip
ff7ea605ef
export thread control to generated wrappers
2014-12-14 11:55:02 +02:00
Ashod Nakashian
63c49be487
highgui: Support to change trackbar count in setTrackbarPos and replaced deprecated CreateToolbarEx in Windows.
2014-12-06 11:56:01 -05:00
Vadim Pisarevsky
4f82b3588a
Merge pull request #3480 from mshabunin:python-test-24
2014-12-06 08:07:56 +00:00
Jeremy Huddleston Sequoia
35f96d6da7
Fix tautologies in calibfilter.cpp which cause a build failure when using -Werror=address with clang-3.5
...
http://code.opencv.org/issues/4048
Signed-off-by: Jeremy Huddleston Sequoia <jeremyhu@apple.com>
2014-12-05 10:22:11 -08:00
Firat Kalaycilar
2bda7aaf61
minor fix to make "updateBackgroundModel=false" option meaningful.
2014-12-04 22:36:42 +02:00
Maksim Shabunin
3212dd5465
Python test: new options provide local test data paths
2014-12-03 18:15:54 +03:00
HelenWong
ec57a938c0
Fix#3714:Improve Display Image Tutorial
...
For Bug #3714 , user use the imshow() function without calling
namedWindow() properly, because user did not know the implicit rule for
imshow(). (i.e. without calling namedWindow implied calling namedWindow(
,CV__WINDOW_AUTOSIZE).
Improve the Display Image Tutorial to educate the user for such implied
rule.
Put a note on documentation for Bug#3714
Revise the documentation regarding to imshow() function to better
educate the user the implicit rule. (i.e. without creating the window
before the imshow() function is the same as creating AUTOSIZE window)
2014-12-02 09:43:52 -08:00
Vadim Pisarevsky
c5b6c0456d
Merge pull request #3445 from jet47:get-rid-of-cuda-h
2014-12-01 10:40:57 +00:00
Artur Wieczorek
7512b5fdde
Fix determining bounding box of the edge collection in FillEdgeCollection().
...
There is necessary to account also x-ccordinate of the end of the edge when determining bounding box of the edge collection.
2014-11-25 18:54:47 +01:00
Vladislav Vinogradov
eeb997261d
get rid of cuda.h usage
2014-11-25 18:29:56 +03:00
StevenPuttemans
f151b1d277
fix wrong property name and corresponding documentation
2014-11-19 14:00:40 +01:00
Vadim Pisarevsky
8ebd474c0e
Merge pull request #3425 from StevenPuttemans:fix_firewire_buffersize
2014-11-16 18:06:20 +00:00
StevenPuttemans
d9164bdd4c
added extra BUFFERSIZE doc and getter
2014-11-14 14:09:43 +01:00
Tom Stellard
42b1bd56cc
ocl: Move static oclMat variables into FarnebackOpticalFlow class
...
Move some static functions into the FarnebackOpticalFlow class as well,
so they can access these new class variables.
oclMat objects cannot be declared statically, because their destructor
depends on the statically defined __module variable from cl_context.cpp.
Since statically defined variables in separate compilation units have
an undefined destruction order there is always the possibility the
__module will be destructed before an oclMat object, which results
in a segfault.
2014-11-13 11:16:10 -05:00
Roman Donchenko
da6a38f9f6
NCV.cu: include <algorithm>
...
It's needed for std::max.
2014-11-13 16:16:26 +03:00
Vadim Pisarevsky
92e08c9863
Merge pull request #3412 from StevenPuttemans:ieee1934_camera_set_params
2014-11-13 07:27:33 +00:00
Vadim Pisarevsky
773e621190
Merge pull request #3414 from SpecLad:vg-stereogc
2014-11-13 07:20:30 +00:00
Alexander Alekhin
d2f19a3a0d
Merge pull request #3418 from tstellarAMD:2.4-hog-crash-fix
2014-11-13 01:49:06 +00:00
Ilya Lavrenov
d8ca61b01b
attemp to fix dox warning
2014-11-12 19:18:45 +03:00
Tom Stellard
ec335b7398
ocl: Fix crash during destruction of gauss_w_lut object in hog.cpp
...
gauss_w_lut is a statically defined variable of type oclMat. The oclMat
destructor calls openCLFree() which via getInitializationMutex() accesses
the __module variable which has been statically defined in cl_context.cpp
Since the destruction order of statically defined variables in different
compilation units is undefined, it is possible that __module will
be destructed before gauss_w_lut, which would result in a segfault when
getInitializationMutex() is called while destructing gauss_w_lut.
In order to avoid this issue, we need to make gauss_w_lut a private
member of the HOGDescriptors class so we know it will be destroyed
before __module.
2014-11-12 10:07:07 -05:00
Roman Donchenko
7d8e5f623a
Fix uninitialized memory reads and memory leaks in StereoGC
2014-11-12 17:00:08 +03:00