platform/upstream/opencv.git
8 years agocap_v4l: implement PROP_CONVERT_RGB
Pavel Rojtberg [Sun, 11 Oct 2015 13:23:47 +0000 (15:23 +0200)]
cap_v4l: implement PROP_CONVERT_RGB

allows disabling automatic conversion to RGB for certain formats. If
conversion is disabled the returned image just points to the underlying
buffer, so no memcpy is performed.

Note that we do not check image size in retrieve frame any more as it
can not possibly while the device is streaming.
Furthermore this code was disabled altogether by the wrong ifdef in the
previous commit.

8 years agofix wrong ifdef bracketing
Pavel Rojtberg [Sun, 11 Oct 2015 14:28:01 +0000 (16:28 +0200)]
fix wrong ifdef bracketing

in the case of HAVE_CAMV4L2 && !HAVE_CAMV4L there was no body for the if
statement.

8 years agoadd python sample to test/ showcase new cap_v4l2 features
Pavel Rojtberg [Sun, 11 Oct 2015 16:06:02 +0000 (18:06 +0200)]
add python sample to test/ showcase new cap_v4l2 features

8 years agoreplace custom yuyv_to_rgb24 implementation by cvtColor
Pavel Rojtberg [Sat, 10 Oct 2015 11:42:26 +0000 (13:42 +0200)]
replace custom yuyv_to_rgb24 implementation by cvtColor

8 years agoavoid needless copies during mjpeg decoding
Pavel Rojtberg [Sat, 10 Oct 2015 11:14:57 +0000 (13:14 +0200)]
avoid needless copies during mjpeg decoding

8 years agoremove additional V4L2 pixelformat defines
Pavel Rojtberg [Sun, 18 Oct 2015 11:37:31 +0000 (13:37 +0200)]
remove additional V4L2 pixelformat defines

they are upstream since at least linux 2.6.8 (10 Years)
http://lxr.oss.org.cn/ident?v=2.6.8&i=V4L2_PIX_FMT_SBGGR8

8 years agosimplify autosetup_capture_mode_v4l2 by using a for loop
Pavel Rojtberg [Sat, 10 Oct 2015 10:39:37 +0000 (12:39 +0200)]
simplify autosetup_capture_mode_v4l2 by using a for loop

8 years agoimplement CAP_PROP_MODE, CAP_PROP_FOURCC and CAP_PROP_FORMAT
Pavel Rojtberg [Sat, 10 Oct 2015 10:26:08 +0000 (12:26 +0200)]
implement CAP_PROP_MODE, CAP_PROP_FOURCC and CAP_PROP_FORMAT

do not use a custom enum instead of the V4L2 fourcc defines for palette.
This way we can easily implement CAP_PROP_FOURCC and CAP_PROP_MODE.

8 years agoallow changing FPS and Image Size using V4L2
Pavel Rojtberg [Fri, 9 Oct 2015 14:01:14 +0000 (16:01 +0200)]
allow changing FPS and Image Size using V4L2

use logic similar to cap_libv4l: replace icvSetVideoSize by v4l2_reset
as it was not used for V4L1, the actual frame format is negotiated in
try_palette_v4l2 and the stream has to restarted anyway.

8 years agoallow icvGetPropertyCAM_V4L to return zero
Pavel Rojtberg [Fri, 9 Oct 2015 10:05:29 +0000 (12:05 +0200)]
allow icvGetPropertyCAM_V4L to return zero

now icvGetPropertyCAM_V4L behaves the same as in cap_libv4l. This also
fixes passing boolean values.

8 years agosupport setting focus and autofocus with V4L2
Pavel Rojtberg [Thu, 8 Oct 2015 14:56:18 +0000 (16:56 +0200)]
support setting focus and autofocus with V4L2

also refactor property range handling and opencv property to V4L2
translation.

8 years agoMerge pull request #5460 from sergiud:highgui-autosize-gtk3
Alexander Alekhin [Wed, 7 Oct 2015 14:47:16 +0000 (14:47 +0000)]
Merge pull request #5460 from sergiud:highgui-autosize-gtk3

8 years agoMerge pull request #5456 from sergiud:ffmpeg-capture-varying-frame-size
Alexander Alekhin [Wed, 7 Oct 2015 14:42:28 +0000 (14:42 +0000)]
Merge pull request #5456 from sergiud:ffmpeg-capture-varying-frame-size

8 years agoMerge pull request #5462 from alalek:fix_x86_detection
Alexander Alekhin [Wed, 7 Oct 2015 14:41:44 +0000 (14:41 +0000)]
Merge pull request #5462 from alalek:fix_x86_detection

8 years agoworkaround for 32-bit OS on 64-bit x86 CPU
Alexander Alekhin [Tue, 6 Oct 2015 17:42:21 +0000 (20:42 +0300)]
workaround for 32-bit OS on 64-bit x86 CPU

8 years agoMerge pull request #5459 from aman11dhanpat:master
Alexander Alekhin [Tue, 6 Oct 2015 17:12:03 +0000 (17:12 +0000)]
Merge pull request #5459 from aman11dhanpat:master

8 years agoMerge pull request #5458 from berak:fix_putText
Alexander Alekhin [Tue, 6 Oct 2015 17:11:47 +0000 (17:11 +0000)]
Merge pull request #5458 from berak:fix_putText

8 years agofix zero length std::string in putText()
berak [Tue, 6 Oct 2015 14:14:15 +0000 (16:14 +0200)]
fix zero length std::string in putText()

8 years agohighgui: CV_WINDOW_AUTOSIZE does not resize with GTK3
Sergiu Dotenco [Tue, 6 Oct 2015 15:01:28 +0000 (17:01 +0200)]
highgui: CV_WINDOW_AUTOSIZE does not resize with GTK3

8 years agoAdding fix for issue 5451 "putText fails with empty std::string"
Aman Verma [Tue, 6 Oct 2015 14:23:27 +0000 (14:23 +0000)]
Adding fix for issue 5451 "putText fails with empty std::string"

8 years agovideoio: fixed segmentation fault at frame size change
Sergiu Dotenco [Tue, 6 Oct 2015 13:09:31 +0000 (15:09 +0200)]
videoio: fixed segmentation fault at frame size change

8 years agoMerge pull request #5454 from alalek:fix_ffmpeg_priv_data
Alexander Alekhin [Tue, 6 Oct 2015 10:01:59 +0000 (10:01 +0000)]
Merge pull request #5454 from alalek:fix_ffmpeg_priv_data

8 years agoMerge pull request #5441 from alalek:fix_ffmpeg_frame_creation
Alexander Alekhin [Tue, 6 Oct 2015 10:01:39 +0000 (10:01 +0000)]
Merge pull request #5441 from alalek:fix_ffmpeg_frame_creation

8 years agoffmpeg: fix invalid NULL pointer access
Alexander Alekhin [Mon, 5 Oct 2015 16:28:35 +0000 (19:28 +0300)]
ffmpeg: fix invalid NULL pointer access

Catched on Ubuntu 12.04 with FFMPEG:
  codec:                     YES (ver 53.35.0)
  format:                    YES (ver 53.21.1)
  util:                      YES (ver 51.22.3)
  swscale:                   YES (ver 2.1.0)
  resample:                  NO
  gentoo-style:              YES

8 years agoMerge pull request #5429 from PhilLab:patch-6
Alexander Alekhin [Mon, 5 Oct 2015 12:50:17 +0000 (12:50 +0000)]
Merge pull request #5429 from PhilLab:patch-6

8 years agoMerge pull request #5453 from paroj:capgstleak
Alexander Alekhin [Mon, 5 Oct 2015 12:47:10 +0000 (12:47 +0000)]
Merge pull request #5453 from paroj:capgstleak

8 years agodo not leak GstMapInfo
Pavel Rojtberg [Mon, 5 Oct 2015 10:28:47 +0000 (12:28 +0200)]
do not leak GstMapInfo

it is new'ed but never deleted. However it does not need to be global or
heap allocated in the first place.

8 years agofix ffmpeg frame creation (fix #5439)
Alexander Alekhin [Fri, 2 Oct 2015 15:27:18 +0000 (18:27 +0300)]
fix ffmpeg frame creation (fix #5439)

8 years agoMerge pull request #5399 from alalek:fix_5264
Alexander Alekhin [Fri, 2 Oct 2015 12:51:09 +0000 (12:51 +0000)]
Merge pull request #5399 from alalek:fix_5264

8 years agoMerge pull request #5436 from jet47:fix-cuda-normalize
Alexander Alekhin [Fri, 2 Oct 2015 12:50:38 +0000 (12:50 +0000)]
Merge pull request #5436 from jet47:fix-cuda-normalize

8 years agoMerge pull request #5425 from lupustr3:pvlasov/ipp_initialization_changes
Alexander Alekhin [Fri, 2 Oct 2015 12:49:36 +0000 (12:49 +0000)]
Merge pull request #5425 from lupustr3:pvlasov/ipp_initialization_changes

8 years agofix cuda::normalize (dtype < 0) case
Vladislav Vinogradov [Fri, 2 Oct 2015 08:41:01 +0000 (11:41 +0300)]
fix cuda::normalize (dtype < 0) case

8 years agoIPPInitSingelton initialization guards;
Pavel Vlasov [Thu, 1 Oct 2015 14:48:49 +0000 (17:48 +0300)]
IPPInitSingelton initialization guards;

8 years agoMerge pull request #5385 from alalek:fix_android_camera_datarace
Vadim Pisarevsky [Thu, 1 Oct 2015 13:58:01 +0000 (13:58 +0000)]
Merge pull request #5385 from alalek:fix_android_camera_datarace

8 years agoTypo in CameraBridgeViewBase.java
Philipp Hasper [Thu, 1 Oct 2015 13:09:14 +0000 (15:09 +0200)]
Typo in CameraBridgeViewBase.java

Corrected typo and unused imports

8 years agoMerge pull request #5402 from sturkmen72:patch-10
Vadim Pisarevsky [Thu, 1 Oct 2015 13:01:26 +0000 (13:01 +0000)]
Merge pull request #5402 from sturkmen72:patch-10

8 years agoMerge pull request #5408 from alalek:move_ippicv_binaries
Vadim Pisarevsky [Thu, 1 Oct 2015 12:54:11 +0000 (12:54 +0000)]
Merge pull request #5408 from alalek:move_ippicv_binaries

8 years agoMerge pull request #5409 from kauevestena:patch-1
Vadim Pisarevsky [Thu, 1 Oct 2015 12:52:28 +0000 (12:52 +0000)]
Merge pull request #5409 from kauevestena:patch-1

8 years agoIPPInitSingelton was added to contain IPP related global variables;
Pavel Vlasov [Fri, 25 Sep 2015 15:00:53 +0000 (18:00 +0300)]
IPPInitSingelton was added to contain IPP related global variables;
OPENCV_IPP env var now allows to select IPP architecture level for IPP9+;
IPP initialization logic was unified across modules;

8 years agoMerge pull request #5419 from lupustr3:pvlasov/ipp9_integration
Alexander Alekhin [Wed, 30 Sep 2015 17:36:43 +0000 (17:36 +0000)]
Merge pull request #5419 from lupustr3:pvlasov/ipp9_integration

8 years agoMerge pull request #5415 from lupustr3:pvlasov/ipp_version_change
Alexander Alekhin [Tue, 29 Sep 2015 17:11:30 +0000 (17:11 +0000)]
Merge pull request #5415 from lupustr3:pvlasov/ipp_version_change

8 years agoEnables support of IPP 9.0.0;
Pavel Vlasov [Fri, 25 Sep 2015 14:56:19 +0000 (17:56 +0300)]
Enables support of IPP 9.0.0;

HAVE_IPP_ICV_ONLY will be undefined if OpenCV was linked against ICV packet from IPP9 or greater. ICV9+ packets will be aligned with IPP in OpenCV APIs
This will ease code management between IPP and ICV

8 years agoIPP_VERSION_X100 was changed to:
Pavel Vlasov [Tue, 29 Sep 2015 14:24:18 +0000 (17:24 +0300)]
IPP_VERSION_X100 was changed to:
IPP_VERSION_MAJOR * 100 + IPP_VERSION_MINOR*10 + IPP_VERSION_UPDATE
to manage changes between updates more easily.

IPP_DISABLE_BLOCK was added to ease tracking of disabled IPP functions;

8 years agoMerge pull request #5405 from lupustr3:pvlasov/ipp_functions_refactoring
Alexander Alekhin [Mon, 28 Sep 2015 17:20:41 +0000 (17:20 +0000)]
Merge pull request #5405 from lupustr3:pvlasov/ipp_functions_refactoring

8 years agoMerge pull request #5406 from cbalint13:master
Alexander Alekhin [Mon, 28 Sep 2015 12:13:54 +0000 (12:13 +0000)]
Merge pull request #5406 from cbalint13:master

8 years agoadding new flags to imread to load image reduced
Suleyman TURKMEN [Thu, 24 Sep 2015 19:51:11 +0000 (22:51 +0300)]
adding new flags to imread to load image reduced

8 years agolittle fixes and correction of a conceptual error
Kauê de Moraes Vestena [Sun, 27 Sep 2015 18:53:30 +0000 (15:53 -0300)]
little fixes and correction of a conceptual error

Previously, there's no way to the user see the found corners, i've changed that.

In a cout, are write that: "average reprojection err = "
But it isn't a "reprojection error" at all, it is a mean of each EPIPOLAR error, wich occur when the product x' * F * x is not equal to zero.
(x and x' are the same points in the right and left scene)
(the RMS that explain the average absolute reprojection error is given by the return of the stereoCalibrate() function)

At least, i think it's interesting to initialize the camera matrices before.

Thank you all for this amazing code. Apologize my weak english.

8 years agoSpeedup AGAST nonmax-suppression.
Balint Cristian [Sat, 26 Sep 2015 01:43:07 +0000 (04:43 +0300)]
Speedup AGAST nonmax-suppression.

8 years agoIPP_VERSION_X100 was changed to:
Pavel Vlasov [Fri, 25 Sep 2015 14:50:15 +0000 (17:50 +0300)]
IPP_VERSION_X100 was changed to:
IPP_VERSION_MAJOR * 100 + IPP_VERSION_MINOR*10 + IPP_VERSION_UPDATE
to manage changes between updates more easily.

IPP_DISABLE_BLOCK was added to ease tracking of disabled IPP functions;

8 years agoSome IPP functions were encapsulated;
Pavel Vlasov [Fri, 25 Sep 2015 14:13:11 +0000 (17:13 +0300)]
Some IPP functions were encapsulated;
Minor changes to IPP implementations;

8 years agomove IPPICV binaries to GitHub opencv_3rdparty repository
Alexander Alekhin [Fri, 25 Sep 2015 13:50:50 +0000 (16:50 +0300)]
move IPPICV binaries to GitHub opencv_3rdparty repository

8 years agoMerge pull request #5391 from paroj:parser_nonempty
Alexander Alekhin [Fri, 25 Sep 2015 11:01:09 +0000 (11:01 +0000)]
Merge pull request #5391 from paroj:parser_nonempty

8 years agoMerge pull request #5393 from enesates:patch-1
Maksim Shabunin [Fri, 25 Sep 2015 07:35:47 +0000 (07:35 +0000)]
Merge pull request #5393 from enesates:patch-1

8 years agofix wrong parsing of values containing '='
Pavel Rojtberg [Wed, 23 Sep 2015 14:20:07 +0000 (16:20 +0200)]
fix wrong parsing of values containing '='

fixes #5074

8 years agoMerge pull request #5295 from LorenaGdL:ml-svm_tutorials
Alexander Alekhin [Thu, 24 Sep 2015 14:13:07 +0000 (14:13 +0000)]
Merge pull request #5295 from LorenaGdL:ml-svm_tutorials

8 years agofix #5264
Alexander Alekhin [Thu, 24 Sep 2015 12:56:47 +0000 (15:56 +0300)]
fix #5264

8 years agoMerge pull request #5396 from alalek:pr_5377_squashed
Alexander Alekhin [Thu, 24 Sep 2015 12:33:42 +0000 (12:33 +0000)]
Merge pull request #5396 from alalek:pr_5377_squashed

8 years agoMerge pull request #5363 from avershov:opencl-vaapi-detect
Alexander Alekhin [Thu, 24 Sep 2015 12:32:03 +0000 (12:32 +0000)]
Merge pull request #5363 from avershov:opencl-vaapi-detect

8 years agofindChessboardCorners causes crash due to out-of-bounds memory corruption.
robertxwu [Fri, 28 Aug 2015 01:14:08 +0000 (18:14 -0700)]
findChessboardCorners causes crash due to out-of-bounds memory corruption.

Refer to the following issue for detail:
https://github.com/Itseez/opencv/issues/5145

8 years agochanged device detection procedure, added resizing surface to bigger size
Alexey Ershov [Thu, 17 Sep 2015 23:25:49 +0000 (02:25 +0300)]
changed device detection procedure, added resizing surface to bigger size
removed unused context_id2; changed blur size 7x7 to 3x3; added short comments
removed unnecessary call to convertFromVASurface()
replaced dumpSurface() with writeImage()
added infile cmdline parameter, input image loaded by imread()

8 years agoCommandLineParser: add special <none> value to disallow empty strings
Pavel Rojtberg [Wed, 23 Sep 2015 10:03:44 +0000 (12:03 +0200)]
CommandLineParser: add special <none> value to disallow empty strings

some mandatory string keys like paths must not be empty. Add the special
default value `<none>` so the CommandLineParser can enforce this and
generate an according error message for us.

8 years agoXML file path correction
Enes Ateş [Wed, 23 Sep 2015 11:19:17 +0000 (13:19 +0200)]
XML file path correction

in documentation exact path is images/CameraCalibration/VID5

8 years agoMerge pull request #5382 from paroj:parserthrow
Alexander Alekhin [Wed, 23 Sep 2015 10:18:00 +0000 (10:18 +0000)]
Merge pull request #5382 from paroj:parserthrow

8 years agoMerge pull request #5379 from sturkmen72:patch-9
Alexander Alekhin [Wed, 23 Sep 2015 10:15:03 +0000 (10:15 +0000)]
Merge pull request #5379 from sturkmen72:patch-9

8 years agoenable additional CommandLineParser tests
Pavel Rojtberg [Tue, 22 Sep 2015 15:02:58 +0000 (17:02 +0200)]
enable additional CommandLineParser tests

8 years agoCommandLineParser: throw on programmer error
Pavel Rojtberg [Tue, 22 Sep 2015 10:16:09 +0000 (12:16 +0200)]
CommandLineParser: throw on programmer error

requesting a previously undeclared key is most likely an programming
error. e.g. a typo "--unused vs --unsued".
So throw in those cases.

Add an according failure testcase.

8 years agofix Android camera datarace (mCameraFrameReady)
Alexander Alekhin [Tue, 22 Sep 2015 12:35:25 +0000 (15:35 +0300)]
fix Android camera datarace (mCameraFrameReady)

8 years agocmdparser: allow empty strings
Alexander Alekhin [Tue, 22 Sep 2015 12:15:38 +0000 (15:15 +0300)]
cmdparser: allow empty strings

8 years agofix perf tests
Alexander Alekhin [Tue, 22 Sep 2015 12:02:43 +0000 (15:02 +0300)]
fix perf tests

8 years agoMerge pull request #5383 from alalek:fix_tests
Alexander Alekhin [Tue, 22 Sep 2015 12:11:22 +0000 (12:11 +0000)]
Merge pull request #5383 from alalek:fix_tests

8 years agofix perf tests
Alexander Alekhin [Tue, 22 Sep 2015 12:02:43 +0000 (15:02 +0300)]
fix perf tests

8 years agoMerge pull request #5320 from berak:lda_fix
Vadim Pisarevsky [Tue, 22 Sep 2015 10:38:46 +0000 (10:38 +0000)]
Merge pull request #5320 from berak:lda_fix

8 years agoMerge pull request #5376 from lupustr3:pvlasov/compare_16s_fix
Alexander Alekhin [Tue, 22 Sep 2015 10:19:52 +0000 (10:19 +0000)]
Merge pull request #5376 from lupustr3:pvlasov/compare_16s_fix

8 years agoFix for cmp16s condition during IPP compare type convert;
Pavel Vlasov [Mon, 21 Sep 2015 15:11:20 +0000 (18:11 +0300)]
Fix for cmp16s condition during IPP compare type convert;

8 years agoMerge pull request #5371 from Dikay900:ports_to_master
Alexander Alekhin [Mon, 21 Sep 2015 13:52:45 +0000 (13:52 +0000)]
Merge pull request #5371 from Dikay900:ports_to_master

8 years agoMerge pull request #5372 from alalek:cmd_tests
Alexander Alekhin [Mon, 21 Sep 2015 13:52:26 +0000 (13:52 +0000)]
Merge pull request #5372 from alalek:cmd_tests

8 years agoMerge pull request #5346 from art-programmer:art-programmer-patch-1
Vadim Pisarevsky [Mon, 21 Sep 2015 12:06:46 +0000 (12:06 +0000)]
Merge pull request #5346 from art-programmer:art-programmer-patch-1

8 years agoMerge pull request #5324 from mshabunin:hal-tests
Vadim Pisarevsky [Mon, 21 Sep 2015 12:04:01 +0000 (12:04 +0000)]
Merge pull request #5324 from mshabunin:hal-tests

8 years agoMerge pull request #5344 from psalvaggio:master
Vadim Pisarevsky [Mon, 21 Sep 2015 11:53:41 +0000 (11:53 +0000)]
Merge pull request #5344 from psalvaggio:master

8 years agoMerge pull request #5341 from blebo:py3compat
Alexander Alekhin [Mon, 21 Sep 2015 11:47:26 +0000 (11:47 +0000)]
Merge pull request #5341 from blebo:py3compat

8 years agoMerge pull request #5358 from StevenPuttemans:contributing_guidelines_master
Vadim Pisarevsky [Mon, 21 Sep 2015 11:45:29 +0000 (11:45 +0000)]
Merge pull request #5358 from StevenPuttemans:contributing_guidelines_master

8 years agochanges to reflect 3.0 status
Dikay900 [Sat, 19 Sep 2015 12:15:40 +0000 (14:15 +0200)]
changes to reflect 3.0 status

8 years agoOnly conflict with packages corresponding to modules that are built
Roman Donchenko [Wed, 26 Aug 2015 10:42:21 +0000 (13:42 +0300)]
Only conflict with packages corresponding to modules that are built

8 years agoAdd missing packages to the Debian conflict list
Roman Donchenko [Tue, 25 Aug 2015 15:50:06 +0000 (18:50 +0300)]
Add missing packages to the Debian conflict list

And refactor the code to make sure that the dev and runtime package lists are
in sync.

8 years agoDebian packages header update to fix conflict with OpenCV from deb repo.
Alexander Smorkalov [Thu, 4 Jun 2015 12:42:27 +0000 (15:42 +0300)]
Debian packages header update to fix conflict with OpenCV from deb repo.

8 years agoAdded explicit deb package dependency from libtbb-dev if TBB is enabled.
Alexander Smorkalov [Wed, 6 May 2015 10:10:39 +0000 (13:10 +0300)]
Added explicit deb package dependency from libtbb-dev if TBB is enabled.

8 years agoPR #4003
Dikay900 [Sat, 19 Sep 2015 12:05:38 +0000 (14:05 +0200)]
PR #4003

8 years agoexclude dates from report names
Vladislav Vinogradov [Tue, 19 May 2015 15:23:10 +0000 (18:23 +0300)]
exclude dates from report names

8 years agosave tests console output to separate log files
Vladislav Vinogradov [Tue, 19 May 2015 15:22:30 +0000 (18:22 +0300)]
save tests console output to separate log files

8 years agocheck that current directory has write access
Vladislav Vinogradov [Tue, 19 May 2015 15:17:28 +0000 (18:17 +0300)]
check that current directory has write access

8 years agoAdd ARM64 packaging support
Roman Donchenko [Mon, 8 Jun 2015 15:01:24 +0000 (18:01 +0300)]
Add ARM64 packaging support

8 years agoSet CPACK_DEBIAN_PACKAGE_ARCHITECTURE instead of CPACK_DEBIAN_ARCHITECTURE
Roman Donchenko [Mon, 8 Jun 2015 13:08:58 +0000 (16:08 +0300)]
Set CPACK_DEBIAN_PACKAGE_ARCHITECTURE instead of CPACK_DEBIAN_ARCHITECTURE

Because that's the variable actually used by CPack.

8 years agoAdded test of minMaxLoc on filling with maximums of int
Gleb Gladilov [Tue, 21 Jul 2015 15:08:30 +0000 (18:08 +0300)]
Added test of minMaxLoc on filling with maximums of int

8 years agoFixed minMaxLoc and test functions
Gleb Gladilov [Mon, 20 Jul 2015 12:10:46 +0000 (15:10 +0300)]
Fixed minMaxLoc and test functions

8 years agoResize area result verification moved to the separate function
Vitaly Tuzov [Fri, 31 Jul 2015 12:01:33 +0000 (15:01 +0300)]
Resize area result verification moved to the separate function

fix position of assert expected/actual parameter

8 years agoAdded more resize_area tests to ensure right rounding behavior for half and quarter...
Vitaly Tuzov [Thu, 30 Jul 2015 15:42:29 +0000 (18:42 +0300)]
Added more resize_area tests to ensure right rounding behavior for half and quarter downscaling

8 years agodo not proceed with removing zero-length slice
Elena Shipunova [Mon, 7 Sep 2015 10:50:30 +0000 (13:50 +0300)]
do not proceed with removing zero-length slice

8 years agoMerge pull request #5361 from alalek:update_ffmpeg_support
Alexander Alekhin [Mon, 21 Sep 2015 10:48:41 +0000 (10:48 +0000)]
Merge pull request #5361 from alalek:update_ffmpeg_support

8 years agoMerge pull request #5366 from taketwo:use-stream-in-bilateral-filter
Alexander Alekhin [Mon, 21 Sep 2015 10:47:12 +0000 (10:47 +0000)]
Merge pull request #5366 from taketwo:use-stream-in-bilateral-filter

8 years agoMerge pull request #5329 from paroj:cliparser
Alexander Alekhin [Mon, 21 Sep 2015 09:46:54 +0000 (09:46 +0000)]
Merge pull request #5329 from paroj:cliparser