platform/upstream/opencv.git
9 years agoMerge pull request #3846 from mshabunin:fix-headers
Vadim Pisarevsky [Mon, 23 Mar 2015 08:01:25 +0000 (08:01 +0000)]
Merge pull request #3846 from mshabunin:fix-headers

9 years agoMerge pull request #3841 from MSOpenTech:samples-contrib
Vadim Pisarevsky [Fri, 20 Mar 2015 10:48:51 +0000 (10:48 +0000)]
Merge pull request #3841 from MSOpenTech:samples-contrib

9 years agoMerge pull request #3836 from Dmitry-Me:uninitializedMember
Vadim Pisarevsky [Fri, 20 Mar 2015 10:03:11 +0000 (10:03 +0000)]
Merge pull request #3836 from Dmitry-Me:uninitializedMember

9 years agoMerge pull request #3851 from ellbur:findTransformECC-initialize-bug
Vadim Pisarevsky [Fri, 20 Mar 2015 09:34:04 +0000 (09:34 +0000)]
Merge pull request #3851 from ellbur:findTransformECC-initialize-bug

9 years agoFix bug of uninitialized matrix in findTransformECC
Owen Healy [Fri, 20 Mar 2015 00:50:49 +0000 (20:50 -0400)]
Fix bug of uninitialized matrix in findTransformECC

The matrix templateZM needs to be initialized because otherwise
uninitialized values leak into the correlation in:

    const double correlation = templateZM.dot(imageWarped)

In the worst case this will lead the correlation to be NaN ruining the
whole routine. The subtraction does not initialize templateZM due to the
mask.

Unfortunately, the uninitialized values (by altering the correlation)
have the side effect of dragging out the computation a little longer
giving a slightly better error bound. This means that fixing this bug
breaks perf_ecc where

    SANITY_CHECK(warpMat, 1e-3);

is just a little too tight and happens to work due to the uninitialized
values. Since this is a performance not a accuracy test I think it is OK
to just relax the error bound a little bit (the tight error bound being
after all the result of a bug).

9 years agoMerge pull request #3840 from MSOpenTech:concurrency-contrib
Vadim Pisarevsky [Thu, 19 Mar 2015 15:11:01 +0000 (15:11 +0000)]
Merge pull request #3840 from MSOpenTech:concurrency-contrib

9 years agoMerge pull request #3823 from lupustr3:pvlasov/implementation_detector_update
Vadim Pisarevsky [Thu, 19 Mar 2015 12:47:22 +0000 (12:47 +0000)]
Merge pull request #3823 from lupustr3:pvlasov/implementation_detector_update

9 years agoDisabled TrainData::getNormCatValues wrapping due to pointer in parameters
Maksim Shabunin [Thu, 19 Mar 2015 12:45:34 +0000 (15:45 +0300)]
Disabled TrainData::getNormCatValues wrapping due to pointer in parameters

9 years agoMerge pull request #3838 from PhilLab:patch-3
Vadim Pisarevsky [Thu, 19 Mar 2015 12:33:56 +0000 (12:33 +0000)]
Merge pull request #3838 from PhilLab:patch-3

9 years agoMerge pull request #3837 from mshabunin:abi-compliance
Vadim Pisarevsky [Thu, 19 Mar 2015 12:30:31 +0000 (12:30 +0000)]
Merge pull request #3837 from mshabunin:abi-compliance

9 years agoDisabled missing python method for static ml function
Maksim Shabunin [Thu, 19 Mar 2015 12:11:49 +0000 (15:11 +0300)]
Disabled missing python method for static ml function

9 years agoAdd python and java support for ml module
Maksim Shabunin [Thu, 19 Mar 2015 10:22:30 +0000 (13:22 +0300)]
Add python and java support for ml module

9 years agoFixed 'doc' builder warnings.
Maxim Kostin [Wed, 18 Mar 2015 14:37:42 +0000 (17:37 +0300)]
Fixed 'doc' builder warnings.

9 years agoMoved property implementation macros to private header
Maksim Shabunin [Wed, 18 Mar 2015 14:33:12 +0000 (17:33 +0300)]
Moved property implementation macros to private header

9 years agoReplaced CV_PURE_PROPERTY macros with corresponding code
Maksim Shabunin [Wed, 18 Mar 2015 14:23:42 +0000 (17:23 +0300)]
Replaced CV_PURE_PROPERTY macros with corresponding code

9 years agoAdded WinRT 8.1 Modern Desktop JavaScript sample
Maxim Kostin [Wed, 18 Mar 2015 13:31:27 +0000 (16:31 +0300)]
Added WinRT 8.1 Modern Desktop JavaScript sample

9 years agoAdded WinRT concurrency support.
Maxim Kostin [Wed, 18 Mar 2015 12:13:08 +0000 (15:13 +0300)]
Added WinRT concurrency support.

9 years agoFixed persistent.hpp documentation
Philipp Hasper [Tue, 17 Mar 2015 14:28:37 +0000 (15:28 +0100)]
Fixed persistent.hpp documentation

Small error - object fs does not exist in this code example

9 years agoAdded cmake option for abi descriptor generating (GENERATE_ABI_DESCRIPTOR)
Maksim Shabunin [Mon, 16 Mar 2015 09:45:21 +0000 (12:45 +0300)]
Added cmake option for abi descriptor generating (GENERATE_ABI_DESCRIPTOR)

9 years agoFix uninitialized members, fix log output typo
Dmitry-Me [Tue, 17 Mar 2015 11:47:00 +0000 (14:47 +0300)]
Fix uninitialized members, fix log output typo

9 years agoMerge pull request #3811 from StevenPuttemans:fix_traincascade_getNegatives_master
Vadim Pisarevsky [Tue, 17 Mar 2015 11:22:10 +0000 (11:22 +0000)]
Merge pull request #3811 from StevenPuttemans:fix_traincascade_getNegatives_master

9 years agoMerge pull request #3804 from polarfuchs99:master
Vadim Pisarevsky [Tue, 17 Mar 2015 11:12:49 +0000 (11:12 +0000)]
Merge pull request #3804 from polarfuchs99:master

9 years agoMerge pull request #3833 from sgrayb:houghline_bugfix
Vadim Pisarevsky [Tue, 17 Mar 2015 10:37:09 +0000 (10:37 +0000)]
Merge pull request #3833 from sgrayb:houghline_bugfix

9 years agoMerge pull request #3832 from Dmitry-Me:fixNullPointerDereference3
Vadim Pisarevsky [Tue, 17 Mar 2015 10:36:52 +0000 (10:36 +0000)]
Merge pull request #3832 from Dmitry-Me:fixNullPointerDereference3

9 years agoMerge pull request #3828 from vpisarev:fix_win32_perf_calib3d_solvepnp_failure
Vadim Pisarevsky [Tue, 17 Mar 2015 10:34:53 +0000 (10:34 +0000)]
Merge pull request #3828 from vpisarev:fix_win32_perf_calib3d_solvepnp_failure

9 years agoFix potential null pointer dereference
Dmitry-Me [Mon, 16 Mar 2015 15:36:12 +0000 (18:36 +0300)]
Fix potential null pointer dereference

9 years agoin solvePnPRansac call the solvePnP in the end with all the inliers to get more preci...
Vadim Pisarevsky [Mon, 16 Mar 2015 13:56:26 +0000 (16:56 +0300)]
in solvePnPRansac call the solvePnP in the end with all the inliers to get more precise estimate

9 years agotemporarily use EPNP in SolvePnP instead of UPNP or DLS algorithms, since the latter...
Vadim Pisarevsky [Mon, 16 Mar 2015 09:46:24 +0000 (12:46 +0300)]
temporarily use EPNP in SolvePnP instead of UPNP or DLS algorithms, since the latter two are not quite stable

9 years agoMerge pull request #3802 from sanuj:master
Vadim Pisarevsky [Mon, 16 Mar 2015 09:25:41 +0000 (09:25 +0000)]
Merge pull request #3802 from sanuj:master

9 years agoMerge pull request #3827 from MSOpenTech:license-26
Vadim Pisarevsky [Mon, 16 Mar 2015 09:11:24 +0000 (09:11 +0000)]
Merge pull request #3827 from MSOpenTech:license-26

9 years agoMerge pull request #3816 from ilya-lavrenov:il/cvround
Vadim Pisarevsky [Mon, 16 Mar 2015 09:09:55 +0000 (09:09 +0000)]
Merge pull request #3816 from ilya-lavrenov:il/cvround

9 years agoMerge pull request #3826 from mshabunin:fix-install-paths
Vadim Pisarevsky [Mon, 16 Mar 2015 09:08:54 +0000 (09:08 +0000)]
Merge pull request #3826 from mshabunin:fix-install-paths

9 years agoMerge pull request #3830 from NaerChang:issue.3710
Vadim Pisarevsky [Mon, 16 Mar 2015 09:05:42 +0000 (09:05 +0000)]
Merge pull request #3830 from NaerChang:issue.3710

9 years agoMerge pull request #3831 from Dmitry-Me:reduceVariableScope7
Vadim Pisarevsky [Mon, 16 Mar 2015 09:05:18 +0000 (09:05 +0000)]
Merge pull request #3831 from Dmitry-Me:reduceVariableScope7

9 years agoRevert "issue 3710"
Naer Chang [Sat, 14 Mar 2015 22:32:46 +0000 (18:32 -0400)]
Revert "issue 3710"
Trying to fix whitespace issue.
This reverts commit dcc2512f581f56fb887ae955ebe828071dee7b92.

9 years agoReduce variable scope, make formatting consistent with surrounding code
Dmitry-Me [Sat, 14 Mar 2015 09:50:42 +0000 (12:50 +0300)]
Reduce variable scope, make formatting consistent with surrounding code

9 years agoissue 3710
Naer Chang [Sat, 14 Mar 2015 06:56:29 +0000 (02:56 -0400)]
issue 3710

added a check to prevent illegal access to operator[] when vector is empty

9 years agoRemoved check on limits. A common use of HoughLines would be to restrict theta to...
Scott Graybill [Sat, 14 Mar 2015 00:04:13 +0000 (17:04 -0700)]
Removed check on limits.  A common use of HoughLines would be to restrict theta to be between a small negative number and a small positive number, e.g. -pi/16 to pi/16.  This wasn't possible with the previous checks.

9 years agotrying to make solvePnPSmallPoints pass
Vadim Pisarevsky [Fri, 13 Mar 2015 17:11:33 +0000 (20:11 +0300)]
trying to make solvePnPSmallPoints pass

9 years agoChanged encoding from ANSI to UTF8.
Maxim Kostin [Fri, 13 Mar 2015 16:28:36 +0000 (19:28 +0300)]
Changed encoding from ANSI to UTF8.

9 years agomade the solvepnp a bit more modest; test 5-point configuration instead of 4-point...
Vadim Pisarevsky [Fri, 13 Mar 2015 15:04:23 +0000 (18:04 +0300)]
made the solvepnp a bit more modest; test 5-point configuration instead of 4-point in some cases; reduce the noise in 4-point configurations in other cases

9 years agoMerge pull request #3820 from LorenaGdL:patch-1
Vadim Pisarevsky [Fri, 13 Mar 2015 13:20:09 +0000 (13:20 +0000)]
Merge pull request #3820 from LorenaGdL:patch-1

9 years agoMerge pull request #3780 from StevenPuttemans:fix_locale_master
Vadim Pisarevsky [Fri, 13 Mar 2015 13:16:09 +0000 (13:16 +0000)]
Merge pull request #3780 from StevenPuttemans:fix_locale_master

9 years agoMerge pull request #3769 from adamgreig:fix-py3-submodules
Vadim Pisarevsky [Fri, 13 Mar 2015 13:15:51 +0000 (13:15 +0000)]
Merge pull request #3769 from adamgreig:fix-py3-submodules

9 years agoMerge pull request #3825 from alalek:fix_msvs2010_build
Vadim Pisarevsky [Fri, 13 Mar 2015 13:02:43 +0000 (13:02 +0000)]
Merge pull request #3825 from alalek:fix_msvs2010_build

9 years agoReplacing license headers per PR-3700 feedback. Updates #26
Maxim Kostin [Fri, 13 Mar 2015 11:33:09 +0000 (14:33 +0300)]
Replacing license headers per PR-3700 feedback. Updates #26

9 years agoFixed mangled install layout on unix machines
Maksim Shabunin [Thu, 12 Mar 2015 16:14:14 +0000 (19:14 +0300)]
Fixed mangled install layout on unix machines

9 years agofix compilation on MSVS2010
Alexander Alekhin [Thu, 12 Mar 2015 16:07:53 +0000 (19:07 +0300)]
fix compilation on MSVS2010

9 years agoImplementation collector update;
Pavel Vlasov [Thu, 12 Mar 2015 14:58:03 +0000 (17:58 +0300)]
Implementation collector update;

Moved out of TLS to properly collect data from different threads;
Concurrent access guards were added to collection functions;

9 years agoMerge pull request #3801 from StevenPuttemans:add_parameter_info_annotation_master
Vadim Pisarevsky [Thu, 12 Mar 2015 14:28:19 +0000 (14:28 +0000)]
Merge pull request #3801 from StevenPuttemans:add_parameter_info_annotation_master

9 years agoMerge pull request #3819 from MSOpenTech:readme-24
Vadim Pisarevsky [Thu, 12 Mar 2015 13:11:59 +0000 (13:11 +0000)]
Merge pull request #3819 from MSOpenTech:readme-24

9 years agoMerge pull request #3817 from SpecLad:forward-ports
Vadim Pisarevsky [Thu, 12 Mar 2015 12:15:24 +0000 (12:15 +0000)]
Merge pull request #3817 from SpecLad:forward-ports

9 years agoMerge pull request #3821 from i-ito:master-flann-lsh-addable-index
Vadim Pisarevsky [Thu, 12 Mar 2015 12:14:23 +0000 (12:14 +0000)]
Merge pull request #3821 from i-ito:master-flann-lsh-addable-index

9 years agofixed whitespace error
ippei ito [Wed, 11 Mar 2015 16:09:15 +0000 (01:09 +0900)]
fixed whitespace error

9 years agoFixed compile error build with VisualStudio2013 on windows.
ippei ito [Wed, 11 Mar 2015 15:32:17 +0000 (00:32 +0900)]
Fixed compile error build with VisualStudio2013 on windows.

REG_NONE defined in ml.hpp conflicts with defined in Winnt.h

9 years agoUpdate train_HOG.cpp
LorenaGdL [Wed, 11 Mar 2015 13:18:07 +0000 (14:18 +0100)]
Update train_HOG.cpp

Incorrect number of input arguments in main function

9 years agocvRound
Ilya Lavrenov [Fri, 27 Feb 2015 15:59:55 +0000 (18:59 +0300)]
cvRound

9 years agoFixed trailing whitespace.
Maxim Kostin [Wed, 11 Mar 2015 10:22:22 +0000 (13:22 +0300)]
Fixed trailing whitespace.

9 years agoFix Python3 binding's submodules
Adam Greig [Mon, 2 Mar 2015 04:04:14 +0000 (04:04 +0000)]
Fix Python3 binding's submodules

Previously the Python3 cv2 package ends up with no submodules (bgsegm, face,
etc) in it, which makes a lot of functionality unusable. By not writing over
our root reference we ensure the new submodules are added to the correct cv2
module.

9 years agoReformatted since this is not a markdown file
Maxim Kostin [Tue, 10 Mar 2015 14:02:31 +0000 (17:02 +0300)]
Reformatted since this is not a markdown file

9 years agoUpdates README for setup_script
Max Kostin [Tue, 10 Mar 2015 13:54:08 +0000 (16:54 +0300)]
Updates README for setup_script

Updates README to reflect setup_script build capabilities and requirements to setup binaries and includes for sample applications. Fixes #24

9 years agoMark the libs component required
Roman Donchenko [Fri, 20 Feb 2015 15:37:21 +0000 (18:37 +0300)]
Mark the libs component required

Everything else depends on it, after all.

(cherry picked from commit cf54e3b97ea13c0aeef5e94b5330a4b26a601d81)

Conflicts:
cmake/OpenCVPackaging.cmake

9 years agoAdd component display names
Roman Donchenko [Fri, 20 Feb 2015 15:20:29 +0000 (18:20 +0300)]
Add component display names

(cherry picked from commit 6d52ea898442d2458a40f8b06b75320c9ab4a5cc)

9 years agoUpdate the CPack variables to match the changes in asmorkalov/CMake#1
Roman Donchenko [Fri, 20 Feb 2015 15:15:20 +0000 (18:15 +0300)]
Update the CPack variables to match the changes in asmorkalov/CMake#1

Which also happens to align the non-Debian specific variables
with the ones used by upstream CMake.

(cherry picked from commit b8c60234c3fa94c31a3e2a72275fefa811c75d5c)

Conflicts:
cmake/OpenCVPackaging.cmake

9 years agoAdd a script to run all tests on Windows
Roman Donchenko [Fri, 20 Feb 2015 09:38:25 +0000 (12:38 +0300)]
Add a script to run all tests on Windows

It's pretty much a simplified copy of the Linux script, lacking fancy colors.
Also, I had to drop Python testing, because it's not easy to pass the Python
module location to the script, and I have no pressing need to run the Python
tests at the moment.

(cherry picked from commit c1e3ca170e6acd983fc010bffd6bc10f12a738c5)

Conflicts:
CMakeLists.txt

9 years agoInstall data on Windows
Roman Donchenko [Mon, 16 Feb 2015 16:24:07 +0000 (19:24 +0300)]
Install data on Windows

Because why not?

(cherry picked from commit e8a73940099b9823879e156a896e42a1854ca1bb)

Conflicts:
data/CMakeLists.txt

9 years agoRemove useless CPACK_*_COMPONENT_INSTALL variables
Roman Donchenko [Fri, 13 Feb 2015 12:31:19 +0000 (15:31 +0300)]
Remove useless CPACK_*_COMPONENT_INSTALL variables

They don't actually do anything. And even if they did, all components are
enabled by default, anyway.

(cherry picked from commit 49fe496914cca93f19dd61aa7b1c120037d65282)

Conflicts:
cmake/OpenCVPackaging.cmake

9 years agoFix a memory leak in CvCapture_FFMPEG::close
Roman Donchenko [Fri, 13 Feb 2015 12:12:52 +0000 (15:12 +0300)]
Fix a memory leak in CvCapture_FFMPEG::close

FFmpeg now requires that frames allocated with avcodec_alloc_frame are
freed with avcodec_free_frame.

(cherry picked from commit 77578d415f4d2b22a4ee1989ef0afda73c9d649b)

Conflicts:
modules/highgui/src/cap_ffmpeg_impl.hpp

9 years agoDon't install documentation if it isn't built
Roman Donchenko [Thu, 12 Feb 2015 13:51:26 +0000 (16:51 +0300)]
Don't install documentation if it isn't built

The HAVE_DOC_GENERATOR variable was always true.

(cherry picked from commit 3d46c1f9602bea7e6c6a49db8b6f2421166ef65d)

Conflicts:
doc/CMakeLists.txt

9 years agocvOpenFileStorage: reduce the scope of xml_buf and make sure it's freed...
Roman Donchenko [Mon, 22 Dec 2014 15:54:39 +0000 (18:54 +0300)]
cvOpenFileStorage: reduce the scope of xml_buf and make sure it's freed...

... before any exceptions occur.

(cherry picked from commit 08da247a871ed40b868119a999af538da6526c6d)

9 years agoFix memory leaks appearing when cvOpenFileStorage throws
Roman Donchenko [Tue, 9 Dec 2014 16:13:19 +0000 (19:13 +0300)]
Fix memory leaks appearing when cvOpenFileStorage throws

(cherry picked from commit 16ce114e0cad6c85efead4a0ebb07724d691407a)

9 years agoMerge pull request #3771 from mshabunin:arm-round
Vadim Pisarevsky [Mon, 9 Mar 2015 21:49:15 +0000 (21:49 +0000)]
Merge pull request #3771 from mshabunin:arm-round

9 years agoMerge pull request #3803 from Dmitry-Me:doubleUsedAsBoolean
Vadim Pisarevsky [Mon, 9 Mar 2015 21:47:09 +0000 (21:47 +0000)]
Merge pull request #3803 from Dmitry-Me:doubleUsedAsBoolean

9 years agoMerge pull request #3806 from enpe:master
Vadim Pisarevsky [Mon, 9 Mar 2015 21:44:33 +0000 (21:44 +0000)]
Merge pull request #3806 from enpe:master

9 years agoMerge pull request #3807 from guopei:patch-1
Vadim Pisarevsky [Mon, 9 Mar 2015 21:41:40 +0000 (21:41 +0000)]
Merge pull request #3807 from guopei:patch-1

9 years agoMerge pull request #3808 from guopei:patch-2
Vadim Pisarevsky [Mon, 9 Mar 2015 21:41:02 +0000 (21:41 +0000)]
Merge pull request #3808 from guopei:patch-2

9 years agoMerge pull request #3794 from vpisarev:ubuntu_x86_fixes
Vadim Pisarevsky [Mon, 9 Mar 2015 21:34:17 +0000 (21:34 +0000)]
Merge pull request #3794 from vpisarev:ubuntu_x86_fixes

9 years agofixing universal location execution
StevenPuttemans [Mon, 9 Mar 2015 11:53:20 +0000 (12:53 +0100)]
fixing universal location execution

9 years agogrammar fix: then -> than
guopei [Sun, 8 Mar 2015 10:59:28 +0000 (18:59 +0800)]
grammar fix: then -> than

9 years agogrammar fix: a -> the
guopei [Sun, 8 Mar 2015 10:51:48 +0000 (18:51 +0800)]
grammar fix: a -> the

9 years ago- Fixed compile error that appeared with Clang 5.1 on Mac 10.8.5:
Nils Plath [Sat, 7 Mar 2015 23:19:25 +0000 (00:19 +0100)]
- Fixed compile error that appeared with Clang 5.1 on Mac 10.8.5:

    modules/videoio/src/cap_gstreamer.cpp:577:31: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
            filename = "v4lsrc ! "COLOR_ELEM" ! appsink";
                              ^
    modules/videoio/src/cap_gstreamer.cpp:585:32: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
            filename = "v4l2src ! "COLOR_ELEM" ! appsink";

9 years agoMerge remote-tracking branch 'upstream/master'
Prof. Dr. Rudolf Haussmann [Sat, 7 Mar 2015 12:10:41 +0000 (13:10 +0100)]
Merge remote-tracking branch 'upstream/master'

9 years ago Changes to be committed:
Prof. Dr. Rudolf Haussmann [Sat, 7 Mar 2015 11:53:32 +0000 (12:53 +0100)]
 Changes to be committed:
   (use "git reset HEAD <file>..." to unstage)

modified:   modules/java/generator/gen_java.py
modified:   modules/videoio/include/opencv2/videoio.hpp
modified:   modules/videoio/include/opencv2/videoio/videoio_c.h
modified:   modules/videoio/src/cap_dshow.cpp
modified:   modules/videoio/src/cap_pvapi.cpp

Following changes have been made:
1. Some minor bugs have been removed.
2. In the PvAPI module the option CAP_PROP_MONOCROME has been removed because
   this option does not make sense and causes an error if a color camera is used.
3. Instead the new option CAP_PROP_PVAPI_PIXELFORMAT has been added which allows
   to activate the different pixel formats (color modes) of an AVT camera.
4. Since there were two identical defines
   CAP_PROP_MONOCROME = 19
   CAP_PROP_MONOCHROME = 19
   which were also used in the other module DSHOW, the first one with an orthographic
   error has been removed in favor of the second one.

9 years agoDouble used as boolean for no reason
Dmitry-Me [Fri, 6 Mar 2015 14:04:54 +0000 (17:04 +0300)]
Double used as boolean for no reason

9 years agolooks like Maksim was right; the new fix does not do the second attempt to detect...
Vadim Pisarevsky [Fri, 6 Mar 2015 13:57:38 +0000 (16:57 +0300)]
looks like Maksim was right; the new fix does not do the second attempt to detect python libs, it finds it correctly with the first attempt

9 years agoAdd documentation for solvePnP in calib3d
sanuj [Fri, 6 Mar 2015 13:44:07 +0000 (19:14 +0530)]
Add documentation for solvePnP in calib3d

9 years agoFixed warnings for iOS
Maksim Shabunin [Fri, 6 Mar 2015 13:16:57 +0000 (16:16 +0300)]
Fixed warnings for iOS

9 years agoAdded ARM implementation in cvRound function
Maksim Shabunin [Fri, 27 Feb 2015 15:59:55 +0000 (18:59 +0300)]
Added ARM implementation in cvRound function

- note: uses VFPv3 instructions
- also added overloaded cvRound variants with float and int parameters
- thanks to Marina Kolpakova from Itseez for idea
- thanks to developers from #llvm IRC channel for help with inline asm

9 years agoinfo on how to use the tool
StevenPuttemans [Fri, 6 Mar 2015 12:50:46 +0000 (13:50 +0100)]
info on how to use the tool

9 years agoadded Maksim's fix as well; they both handle correctly more cases than each of them...
Vadim Pisarevsky [Fri, 6 Mar 2015 12:48:36 +0000 (15:48 +0300)]
added Maksim's fix as well; they both handle correctly more cases than each of them individually

9 years agofixing locale settings - making it universal
StevenPuttemans [Fri, 6 Mar 2015 11:59:26 +0000 (12:59 +0100)]
fixing locale settings - making it universal

9 years agoexplained reason why IPP is disabled on 32-bit Linux. disable IPP's minMaxLoc_32f...
Vadim Pisarevsky [Fri, 6 Mar 2015 12:02:22 +0000 (15:02 +0300)]
explained reason why IPP is disabled on 32-bit Linux. disable IPP's minMaxLoc_32f on 32-bit OSes only

9 years agoMerge pull request #3795 from samyak-268:sqr-filter-doc
Vadim Pisarevsky [Fri, 6 Mar 2015 10:22:56 +0000 (10:22 +0000)]
Merge pull request #3795 from samyak-268:sqr-filter-doc

9 years agoMerge pull request #3796 from enpe:master
Vadim Pisarevsky [Fri, 6 Mar 2015 10:21:57 +0000 (10:21 +0000)]
Merge pull request #3796 from enpe:master

9 years agoMerge pull request #3797 from Dmitry-Me:reduceVariableScope6
Vadim Pisarevsky [Fri, 6 Mar 2015 10:20:45 +0000 (10:20 +0000)]
Merge pull request #3797 from Dmitry-Me:reduceVariableScope6

9 years agoMerge pull request #3793 from sanuj:master
Vadim Pisarevsky [Fri, 6 Mar 2015 10:20:16 +0000 (10:20 +0000)]
Merge pull request #3793 from sanuj:master

9 years agoMerge pull request #3786 from jviney:fix_background_subtractor_knn_width_step
Vadim Pisarevsky [Fri, 6 Mar 2015 10:17:43 +0000 (10:17 +0000)]
Merge pull request #3786 from jviney:fix_background_subtractor_knn_width_step

9 years agoReduce variable scope
Dmitry-Me [Fri, 6 Mar 2015 07:17:37 +0000 (10:17 +0300)]
Reduce variable scope

9 years agoFixed: wrong conversion of float-based Mat input inside the AKAZE.
Nils Plath [Thu, 5 Mar 2015 22:55:07 +0000 (23:55 +0100)]
Fixed: wrong conversion of float-based Mat input inside the AKAZE.

9 years agoAdded doxygen comments for sqrBoxFilter() method
Samyak Datta [Thu, 5 Mar 2015 21:27:14 +0000 (02:57 +0530)]
Added doxygen comments for sqrBoxFilter() method