profile/ivi/opencv.git
11 years agoadded 'cmath' include
Alexey Spizhevoy [Thu, 4 Jul 2013 12:57:20 +0000 (16:57 +0400)]
added 'cmath' include

11 years agoadded handling of camera parameters estimation errors (#3122)
Alexey Spizhevoy [Wed, 3 Jul 2013 11:20:14 +0000 (15:20 +0400)]
added handling of camera parameters estimation errors (#3122)

11 years agoMerge pull request #1047 from jet47:gpustream-remove-obsolete
Andrey Pavlenko [Tue, 2 Jul 2013 14:39:12 +0000 (18:39 +0400)]
Merge pull request #1047 from jet47:gpustream-remove-obsolete

11 years agoMerge pull request #1046 from SpecLad:merge-2.4
Andrey Pavlenko [Tue, 2 Jul 2013 11:39:06 +0000 (15:39 +0400)]
Merge pull request #1046 from SpecLad:merge-2.4

11 years agoMerge pull request #1036 from jet47:fix-gpu-deviceinfo
Roman Donchenko [Thu, 27 Jun 2013 11:37:42 +0000 (15:37 +0400)]
Merge pull request #1036 from jet47:fix-gpu-deviceinfo

11 years agoMerge pull request #1011 from wecacuee:master
Roman Donchenko [Thu, 27 Jun 2013 08:03:07 +0000 (12:03 +0400)]
Merge pull request #1011 from wecacuee:master

11 years agoRemoved misleading comment and added the divisibility test to ::run function.
Vikas Dhiman [Wed, 26 Jun 2013 16:16:25 +0000 (12:16 -0400)]
Removed misleading comment and added the divisibility test to ::run function.

11 years agoMerge pull request #1041 from abidrahmank:master
Roman Donchenko [Wed, 26 Jun 2013 12:38:54 +0000 (16:38 +0400)]
Merge pull request #1041 from abidrahmank:master

11 years agoremoved obsolete methods from gpu::Stream
Vladislav Vinogradov [Tue, 25 Jun 2013 13:45:23 +0000 (17:45 +0400)]
removed obsolete methods from gpu::Stream

11 years agoMerge remote-tracking branch 'origin/2.4' into merge-2.4
Roman Donchenko [Tue, 25 Jun 2013 10:08:23 +0000 (14:08 +0400)]
Merge remote-tracking branch 'origin/2.4' into merge-2.4

Conflicts:
modules/calib3d/include/opencv2/calib3d/calib3d.hpp
modules/core/include/opencv2/core/core.hpp
modules/core/include/opencv2/core/cuda/limits.hpp
modules/core/include/opencv2/core/internal.hpp
modules/core/src/matrix.cpp
modules/nonfree/test/test_features2d.cpp
modules/ocl/include/opencv2/ocl/ocl.hpp
modules/ocl/src/hog.cpp
modules/ocl/test/test_haar.cpp
modules/ocl/test/test_objdetect.cpp
modules/ocl/test/test_pyrup.cpp
modules/ts/src/precomp.hpp
samples/ocl/facedetect.cpp
samples/ocl/hog.cpp
samples/ocl/pyrlk_optical_flow.cpp
samples/ocl/surf_matcher.cpp

11 years agoMerge pull request #1024 from jet47:fix-gpuarithm-compilation
Roman Donchenko [Tue, 25 Jun 2013 10:38:17 +0000 (14:38 +0400)]
Merge pull request #1024 from jet47:fix-gpuarithm-compilation

11 years agoboxpoints documentation
abidrahmank [Mon, 24 Jun 2013 10:47:23 +0000 (16:17 +0530)]
boxpoints documentation

11 years agoAdded missing python functions in highgui documentation
abidrahmank [Mon, 24 Jun 2013 10:23:45 +0000 (15:53 +0530)]
Added missing python functions in highgui documentation

setMouseCallback
createTrackbar

11 years agoMerge pull request #1028 from SpecLad:ocl-clahe-dtor
Roman Donchenko [Mon, 24 Jun 2013 09:18:27 +0000 (13:18 +0400)]
Merge pull request #1028 from SpecLad:ocl-clahe-dtor

11 years agoMerge pull request #1034 from pengx17:2.4_oclmat_inoutarray
Roman Donchenko [Mon, 24 Jun 2013 08:27:25 +0000 (12:27 +0400)]
Merge pull request #1034 from pengx17:2.4_oclmat_inoutarray

11 years agoMerge pull request #1031 from pengx17:2.4_fix_converTo
Roman Donchenko [Mon, 24 Jun 2013 08:25:48 +0000 (12:25 +0400)]
Merge pull request #1031 from pengx17:2.4_fix_converTo

11 years agoMerge pull request #1025 from bitwangyaoyao:2.4_tests
Roman Donchenko [Mon, 24 Jun 2013 08:11:04 +0000 (12:11 +0400)]
Merge pull request #1025 from bitwangyaoyao:2.4_tests

11 years agoMerge pull request #1022 from bitwangyaoyao:2.4_hog
Roman Donchenko [Mon, 24 Jun 2013 08:08:59 +0000 (12:08 +0400)]
Merge pull request #1022 from bitwangyaoyao:2.4_hog

11 years agoAdded cv2.boxPoints() functionality to Python bindings (Feature #2023)
abidrahmank [Mon, 24 Jun 2013 06:43:59 +0000 (12:13 +0530)]
Added cv2.boxPoints() functionality to Python bindings (Feature #2023)

http://www.code.opencv.org/issues/2023

eg:

In [3]: box = ((10,10),(5,5),0)

In [4]: cv2.boxPoints(box)
Out[4]:
array([[  7.5,  12.5],
       [  7.5,   7.5],
       [ 12.5,   7.5],
       [ 12.5,  12.5]], dtype=float32)

11 years agofix gpu::DeviceInfo compilation under linux
Vladislav Vinogradov [Fri, 21 Jun 2013 09:53:56 +0000 (13:53 +0400)]
fix gpu::DeviceInfo compilation under linux

glibc defines major and minor macros
which conflict with  gpu::DeviceInfo methods with the same name

11 years agoMerge pull request #1026 from SpecLad:ts-version-prop
Roman Donchenko [Fri, 21 Jun 2013 14:00:59 +0000 (18:00 +0400)]
Merge pull request #1026 from SpecLad:ts-version-prop

11 years agoMerge pull request #1014 from jet47:gpustereo-refactoring
Roman Donchenko [Fri, 21 Jun 2013 13:38:36 +0000 (17:38 +0400)]
Merge pull request #1014 from jet47:gpustereo-refactoring

11 years agoMerge pull request #1015 from SpecLad:merge-2.4
Roman Donchenko [Fri, 21 Jun 2013 13:38:04 +0000 (17:38 +0400)]
Merge pull request #1015 from SpecLad:merge-2.4

11 years agoMerge pull request #1033 from SpecLad:xls++
Roman Donchenko [Fri, 21 Jun 2013 13:13:32 +0000 (17:13 +0400)]
Merge pull request #1033 from SpecLad:xls++

11 years agoMerge pull request #1010 from jet47:gpufilters-refactoring
Roman Donchenko [Fri, 21 Jun 2013 10:44:00 +0000 (14:44 +0400)]
Merge pull request #1010 from jet47:gpufilters-refactoring

11 years agoRevise naming for getOclMat function.
peng xiao [Fri, 21 Jun 2013 06:51:23 +0000 (14:51 +0800)]
Revise naming for getOclMat function.

11 years agoa bug fix in stereo_match sample
yao [Fri, 21 Jun 2013 06:50:08 +0000 (14:50 +0800)]
a bug fix in stereo_match sample

11 years agoAdd a workaround to interpolate between oclMat and Input/OutputArray.
peng xiao [Fri, 21 Jun 2013 06:05:29 +0000 (14:05 +0800)]
Add a workaround to interpolate between oclMat and Input/OutputArray.

11 years agoUse log formatting as intended.
Roman Donchenko [Thu, 20 Jun 2013 15:39:02 +0000 (19:39 +0400)]
Use log formatting as intended.

11 years agoA few minor improvements to the XLS report generator.
Roman Donchenko [Thu, 20 Jun 2013 10:27:51 +0000 (14:27 +0400)]
A few minor improvements to the XLS report generator.

* In comparison column headers, switched the order of labels, so that
  it's "to" vs "from".

* When a test was present, but not run successfully, put its status in
  the corresponding cell instead of coloring it gray.

11 years agoMerge pull request #1027 from jet47:fix-cuda-4.2-build
Roman Donchenko [Thu, 20 Jun 2013 10:11:51 +0000 (14:11 +0400)]
Merge pull request #1027 from jet47:fix-cuda-4.2-build

11 years agoMerge pull request #1017 from jet47:fix-gpu-warnings
Roman Donchenko [Thu, 20 Jun 2013 08:13:14 +0000 (12:13 +0400)]
Merge pull request #1017 from jet47:fix-gpu-warnings

11 years agoremoved obsolete API
Vladislav Vinogradov [Thu, 20 Jun 2013 07:24:29 +0000 (11:24 +0400)]
removed obsolete API

11 years agoFix a bug of convertTo.
peng xiao [Thu, 20 Jun 2013 03:26:22 +0000 (11:26 +0800)]
Fix a bug of convertTo.
The bug was found that all 3-channel oclMat's were converted to
4-channel oclMat's after using convertTo function.

11 years agoMerge pull request #954 from LeszekSwirski:24_fix-qtwindow
Roman Donchenko [Wed, 19 Jun 2013 13:01:57 +0000 (17:01 +0400)]
Merge pull request #954 from LeszekSwirski:24_fix-qtwindow

11 years agoGive cv::ocl::CLAHE a virtual destructor, for the usual reasons.
Roman Donchenko [Wed, 19 Jun 2013 11:39:11 +0000 (15:39 +0400)]
Give cv::ocl::CLAHE a virtual destructor, for the usual reasons.

11 years agofixed compilation with CUDA 4.2
Vladislav Vinogradov [Wed, 19 Jun 2013 11:29:20 +0000 (15:29 +0400)]
fixed compilation with CUDA 4.2

11 years agoMerge remote-tracking branch 'origin/2.4'
Roman Donchenko [Mon, 17 Jun 2013 12:57:31 +0000 (16:57 +0400)]
Merge remote-tracking branch 'origin/2.4'

Original pull requests:
#996 from jet47:gpu-nvcuvid-libraries
#995 from jet47:fix-bug-2985
#999 from snosov1:unreliable-results-fix
#1005 from alekcac:doc_fix
#1004 from jet47:fix-bug-3068
#987 from jet47:bug-3085-fix
#969 from pengx17:2.4_binary_cache
#929 from dominikrose:mingw-libdc1394-2-windows
#1000 from ivan-korolev:fix_sift_bug_2892
#1001 from ivan-korolev:fix_stitching_bug_2405
#998 from asmorkalov:android_cmake_mips_fix
#993 from ivan-korolev:fix_videostab_bug_3023
#988 from snosov1:3071-fix
#986 from pengx17:2.4_initiated_context
#982 from pengx17:2.4_fix_two_bugs
#981 from SeninAndrew:ximea_camera_support_fix
#991 from asmorkalov:android_javadoc_fix
#972 from jet47:mog2-params-bug-2168
#980 from SpecLad:include-config
#973 from pengx17:2.4_oclclahe
#903 from aks2:2.4
#968 from asmorkalov:android_na_cproj_fix
#971 from SpecLad:matchers-ctor
#970 from asmorkalov:dshow_valid_check_fix
#965 from apavlenko:fix_java_empty_mats

Conflicts:
cmake/OpenCVModule.cmake
modules/core/src/matmul.cpp
modules/gpu/CMakeLists.txt
modules/ocl/include/opencv2/ocl/ocl.hpp
modules/ocl/perf/perf_imgproc.cpp
modules/ocl/src/imgproc.cpp
modules/ocl/src/initialization.cpp
modules/stitching/src/matchers.cpp
modules/video/src/video_init.cpp
modules/videostab/src/global_motion.cpp

11 years agoMake version-related test properties more useful.
Roman Donchenko [Wed, 19 Jun 2013 10:45:03 +0000 (14:45 +0400)]
Make version-related test properties more useful.

Namely, normalize their names to a common convention and remove useless text
from their values.

11 years agoMerge pull request #1023 from pengx17:2.4_fix_amd_path
Roman Donchenko [Wed, 19 Jun 2013 10:43:28 +0000 (14:43 +0400)]
Merge pull request #1023 from pengx17:2.4_fix_amd_path

11 years agorevise ocl samples, add tvl1 sample
yao [Wed, 19 Jun 2013 08:36:23 +0000 (16:36 +0800)]
revise ocl samples, add tvl1 sample

11 years agoMerge pull request #1012 from apavlenko:fix_3077
Roman Donchenko [Wed, 19 Jun 2013 08:25:23 +0000 (12:25 +0400)]
Merge pull request #1012 from apavlenko:fix_3077

11 years agoMerge pull request #1016 from SpecLad:xls-report
Roman Donchenko [Wed, 19 Jun 2013 08:24:34 +0000 (12:24 +0400)]
Merge pull request #1016 from SpecLad:xls-report

11 years agoMerge pull request #1020 from SpecLad:tests-record-more
Roman Donchenko [Wed, 19 Jun 2013 08:24:05 +0000 (12:24 +0400)]
Merge pull request #1020 from SpecLad:tests-record-more

11 years agofix gpuarithm module compilation (Bug #3103)
Vladislav Vinogradov [Wed, 19 Jun 2013 06:09:19 +0000 (10:09 +0400)]
fix gpuarithm module compilation (Bug #3103)

11 years agorevise accuracy and perf tests
yao [Wed, 19 Jun 2013 05:03:35 +0000 (13:03 +0800)]
revise accuracy and perf tests

11 years agoFix cmake path finding for amd libs.
peng xiao [Wed, 19 Jun 2013 03:31:42 +0000 (11:31 +0800)]
Fix cmake path finding for amd libs.
There is no WIN64 defined in the environment.

11 years agooptimize hog
yao [Wed, 19 Jun 2013 03:20:45 +0000 (11:20 +0800)]
optimize hog

11 years agoMerge pull request #1008 from ivan-korolev:fix_sift_bug_2892
Roman Donchenko [Tue, 18 Jun 2013 14:32:03 +0000 (18:32 +0400)]
Merge pull request #1008 from ivan-korolev:fix_sift_bug_2892

11 years agoMade tests record information about CPU features and Tegra optimization status.
Roman Donchenko [Tue, 18 Jun 2013 14:08:38 +0000 (18:08 +0400)]
Made tests record information about CPU features and Tegra optimization status.

11 years agoMade tests record in the XML output which parallel framework was used.
Roman Donchenko [Mon, 17 Jun 2013 17:06:15 +0000 (21:06 +0400)]
Made tests record in the XML output which parallel framework was used.

11 years agofix gpu warnings with signed/unsigned char
Vladislav Vinogradov [Tue, 18 Jun 2013 09:17:33 +0000 (13:17 +0400)]
fix gpu warnings with signed/unsigned char

11 years agoMerge pull request #994 from asmorkalov:android_java_wrappers
Roman Donchenko [Tue, 18 Jun 2013 12:46:03 +0000 (16:46 +0400)]
Merge pull request #994 from asmorkalov:android_java_wrappers

11 years agoJava/Python bindings for computeCorrespondEpilines added.
Alexander Smorkalov [Thu, 13 Jun 2013 11:38:21 +0000 (15:38 +0400)]
Java/Python bindings for computeCorrespondEpilines added.

Simle Java test for computeCorrespondEpilines added.

11 years agoMerge pull request #1007 from alekcac:i_camera
Roman Donchenko [Tue, 18 Jun 2013 11:54:01 +0000 (15:54 +0400)]
Merge pull request #1007 from alekcac:i_camera

11 years agoMade xls-report.py ignore tests that were not successful.
Roman Donchenko [Tue, 18 Jun 2013 08:30:05 +0000 (12:30 +0400)]
Made xls-report.py ignore tests that were not successful.

11 years agoMade the order of tests in XLS reports deterministic.
Roman Donchenko [Tue, 18 Jun 2013 09:36:20 +0000 (13:36 +0400)]
Made the order of tests in XLS reports deterministic.

11 years agoIn the XLS report, enabled word wrapping for header cells.
Roman Donchenko [Mon, 17 Jun 2013 17:06:02 +0000 (21:06 +0400)]
In the XLS report, enabled word wrapping for header cells.

Otherwise, Excel ignores line breaks in them.

11 years agoAdded a new and improved version of the XLS report generator.
Roman Donchenko [Fri, 14 Jun 2013 10:53:02 +0000 (14:53 +0400)]
Added a new and improved version of the XLS report generator.

11 years agoUpdated testlog_parser.py to the latest version from the private repo.
Roman Donchenko [Thu, 13 Jun 2013 08:22:12 +0000 (12:22 +0400)]
Updated testlog_parser.py to the latest version from the private repo.

11 years agoupdated documentation
Vladislav Vinogradov [Wed, 8 May 2013 13:07:29 +0000 (17:07 +0400)]
updated documentation

11 years agoupdated licenses
Alexander Shishkov [Tue, 18 Jun 2013 03:02:09 +0000 (07:02 +0400)]
updated licenses

11 years agofixed Kirill's comments
Alexander Shishkov [Tue, 18 Jun 2013 02:59:52 +0000 (06:59 +0400)]
fixed Kirill's comments

11 years agoupdated documentation
Vladislav Vinogradov [Mon, 17 Jun 2013 05:53:39 +0000 (09:53 +0400)]
updated documentation

11 years agofix for #3077
Andrey Pavlenko [Fri, 14 Jun 2013 16:25:23 +0000 (20:25 +0400)]
fix for #3077
removing "-fvisibility=hidden" gcc option due to lack of `__attribute__ ((visibility("default")))` in jni_md.h/JNIEXPORT

11 years agosupport elementwise division for Matx with "/" operator.
Vikas Dhiman [Fri, 14 Jun 2013 15:38:29 +0000 (11:38 -0400)]
support elementwise division for Matx with "/" operator.

11 years agoswitched to Input/Output Array in reprojectImageTo3D & drawColorDisp
Vladislav Vinogradov [Wed, 8 May 2013 12:51:43 +0000 (16:51 +0400)]
switched to Input/Output Array in  reprojectImageTo3D & drawColorDisp

11 years agorefactored DisparityBilateralFilter
Vladislav Vinogradov [Wed, 8 May 2013 12:48:10 +0000 (16:48 +0400)]
refactored DisparityBilateralFilter

11 years agorefactored StereoConstantSpaceBP
Vladislav Vinogradov [Wed, 8 May 2013 12:25:03 +0000 (16:25 +0400)]
refactored StereoConstantSpaceBP

11 years agorefactored StereoBeliefPropagation
Vladislav Vinogradov [Wed, 8 May 2013 11:40:38 +0000 (15:40 +0400)]
refactored StereoBeliefPropagation

11 years agorefactored StereoBM
Vladislav Vinogradov [Wed, 8 May 2013 10:27:56 +0000 (14:27 +0400)]
refactored StereoBM

11 years agorefactored 1D Sum Filters
Vladislav Vinogradov [Mon, 29 Apr 2013 13:09:17 +0000 (17:09 +0400)]
refactored 1D Sum Filters

11 years agorefactored Image Rank Filters
Vladislav Vinogradov [Mon, 29 Apr 2013 12:28:15 +0000 (16:28 +0400)]
refactored Image Rank Filters

11 years agorefactored Morphology Filters
Vladislav Vinogradov [Mon, 29 Apr 2013 12:03:16 +0000 (16:03 +0400)]
refactored Morphology Filters

11 years agorefactored Separable Linear Filters
Vladislav Vinogradov [Mon, 29 Apr 2013 10:47:42 +0000 (14:47 +0400)]
refactored Separable Linear Filters

11 years agorefactored Laplacian filter
Vladislav Vinogradov [Mon, 29 Apr 2013 08:02:59 +0000 (12:02 +0400)]
refactored Laplacian filter

11 years agorefactored Linear Filter
Vladislav Vinogradov [Mon, 29 Apr 2013 07:51:47 +0000 (11:51 +0400)]
refactored Linear Filter

11 years agorefactored box filter
Vladislav Vinogradov [Mon, 29 Apr 2013 07:46:49 +0000 (11:46 +0400)]
refactored box filter

11 years agoAdded regression tests for SURF/SIFT (related to #2892)
Ivan Korolev [Fri, 14 Jun 2013 13:03:15 +0000 (17:03 +0400)]
Added regression tests for SURF/SIFT (related to #2892)

11 years agoMerge pull request #977 from jet47:gpucodec-refactoring
Roman Donchenko [Fri, 14 Jun 2013 12:24:23 +0000 (16:24 +0400)]
Merge pull request #977 from jet47:gpucodec-refactoring

11 years agoMerge pull request #978 from jet47:gpuarithm-refactoring
Roman Donchenko [Fri, 14 Jun 2013 12:24:03 +0000 (16:24 +0400)]
Merge pull request #978 from jet47:gpuarithm-refactoring

11 years agoMerge pull request #996 from jet47:gpu-nvcuvid-libraries
Roman Donchenko [Fri, 14 Jun 2013 12:23:01 +0000 (16:23 +0400)]
Merge pull request #996 from jet47:gpu-nvcuvid-libraries

11 years agoMerge pull request #995 from jet47:fix-bug-2985
Roman Donchenko [Fri, 14 Jun 2013 12:22:47 +0000 (16:22 +0400)]
Merge pull request #995 from jet47:fix-bug-2985

11 years agoMerge pull request #999 from snosov1:unreliable-results-fix
Roman Donchenko [Fri, 14 Jun 2013 12:19:50 +0000 (16:19 +0400)]
Merge pull request #999 from snosov1:unreliable-results-fix

11 years agoMerge pull request #1005 from alekcac:doc_fix
Roman Donchenko [Fri, 14 Jun 2013 11:53:35 +0000 (15:53 +0400)]
Merge pull request #1005 from alekcac:doc_fix

11 years agoMerge pull request #1004 from jet47:fix-bug-3068
Roman Donchenko [Fri, 14 Jun 2013 11:52:56 +0000 (15:52 +0400)]
Merge pull request #1004 from jet47:fix-bug-3068

11 years agoMerge pull request #1003 from vhdirk:gstreamerfixes
Roman Donchenko [Fri, 14 Jun 2013 11:51:03 +0000 (15:51 +0400)]
Merge pull request #1003 from vhdirk:gstreamerfixes

11 years agoMerge pull request #987 from jet47:bug-3085-fix
Roman Donchenko [Fri, 14 Jun 2013 11:49:33 +0000 (15:49 +0400)]
Merge pull request #987 from jet47:bug-3085-fix

11 years agoMerge pull request #983 from HapeMask:python3-compatibility
Roman Donchenko [Fri, 14 Jun 2013 11:48:37 +0000 (15:48 +0400)]
Merge pull request #983 from HapeMask:python3-compatibility

11 years agoMerge pull request #969 from pengx17:2.4_binary_cache
Roman Donchenko [Fri, 14 Jun 2013 11:47:23 +0000 (15:47 +0400)]
Merge pull request #969 from pengx17:2.4_binary_cache

11 years agoMerge pull request #929 from dominikrose:mingw-libdc1394-2-windows
Roman Donchenko [Fri, 14 Jun 2013 11:46:23 +0000 (15:46 +0400)]
Merge pull request #929 from dominikrose:mingw-libdc1394-2-windows

11 years agoUpdated iOS camera. Added rotation flag. Added functions to lock/unlock focus, white...
Alexander Shishkov [Fri, 14 Jun 2013 11:10:25 +0000 (15:10 +0400)]
Updated iOS camera. Added rotation flag. Added functions to lock/unlock focus, white balance and exposure.

11 years agoMerge pull request #1000 from ivan-korolev:fix_sift_bug_2892
Roman Donchenko [Fri, 14 Jun 2013 09:50:01 +0000 (13:50 +0400)]
Merge pull request #1000 from ivan-korolev:fix_sift_bug_2892

11 years agoMerge pull request #1001 from ivan-korolev:fix_stitching_bug_2405
Roman Donchenko [Fri, 14 Jun 2013 09:47:32 +0000 (13:47 +0400)]
Merge pull request #1001 from ivan-korolev:fix_stitching_bug_2405

11 years agoFix bug with indices
Alexander Shishkov [Fri, 14 Jun 2013 09:12:35 +0000 (13:12 +0400)]
Fix bug with indices

11 years agofix for bug #3068 (PCA::computeVar for double input):
Vladislav Vinogradov [Fri, 14 Jun 2013 08:53:44 +0000 (12:53 +0400)]
fix for bug #3068 (PCA::computeVar for double input):

The matrix g  can have CV_32F or CV_64F type,  but g.at uses only float template.
This fix adds specialization for double type.

11 years agoFix a bug caused by NDEBUG macro; it is now removed.
peng xiao [Fri, 14 Jun 2013 08:37:00 +0000 (16:37 +0800)]
Fix a bug caused by NDEBUG macro; it is now removed.
Revise some descriptions of the enums.

11 years agoMerge pull request #990 from asmorkalov:pthread_build_fix
Roman Donchenko [Fri, 14 Jun 2013 07:48:05 +0000 (11:48 +0400)]
Merge pull request #990 from asmorkalov:pthread_build_fix

11 years agoMerge pull request #976 from PeterMinin:num_detections
Roman Donchenko [Fri, 14 Jun 2013 07:23:59 +0000 (11:23 +0400)]
Merge pull request #976 from PeterMinin:num_detections

11 years agoFixed a bug #2405
Ivan Korolev [Fri, 14 Jun 2013 06:43:20 +0000 (10:43 +0400)]
Fixed a bug #2405