Vadim Pisarevsky
cc92cd07e8
Merge pull request #4017 from headupinclouds:master
2015-05-14 18:16:23 +00:00
Vadim Pisarevsky
7dd67f4997
use _mm_sad_epu8 instead of _mm_movemask_epi8 in countNonZero. Therefore, we do not need any popcount table and this solves http://code.opencv.org/issues/4333
2015-05-14 20:33:53 +03:00
Vadim Pisarevsky
3c769edea0
added extra check in CalibrateDebevec to make sure the points are within the image:
...
http://code.opencv.org/issues/4124
2015-05-14 19:54:48 +03:00
Vadim Pisarevsky
3c7f7de477
avoid possible problems with zero values in tone mapping algorithms ( http://code.opencv.org/issues/4020 )
2015-05-14 19:32:25 +03:00
Vadim Pisarevsky
ffabbfa778
added test to prove that remap does not leak memory ( http://code.opencv.org/issues/2502 ). disabled the test for now to save execution time.
2015-05-14 18:21:26 +03:00
Vadim Pisarevsky
ca90667723
fixed compile warnings on Linux and Windows
2015-05-14 16:42:51 +03:00
Vadim Pisarevsky
05d888316a
added test for http://code.opencv.org/issues/2957
2015-05-14 16:25:18 +03:00
Vadim Pisarevsky
b37aaa8303
significantly improved parallel non-local means by using granularity parameter in parallel_for_ loop. Because the algorithm deals with sliding sums, it's essential that each thread has enough work to do, otherwise the algorithm gets higher theoretical complexity and thus there is no speedup comparing to 1-thread code (at best).
2015-05-14 15:39:42 +03:00
Vladimir Dudnik
3cb4954d70
fixed new blank line at EOF
2015-05-14 12:08:14 +03:00
Vadim Pisarevsky
feb5b6aa93
increased singularity epsilon in LU decomposition. This solved singular case from http://code.opencv.org/issues/3305 . Added the respective test.
2015-05-14 10:42:55 +03:00
Vadim Pisarevsky
2e7e754032
added support for n-channel (n>4) images in warpAffine/warpPerspective/remap: http://code.opencv.org/issues/4190
2015-05-14 08:06:46 +03:00
David Hirvonen
cab0ecdf19
Avoid clearing HaarEvaluator::tofs variable (introduced fb8478eb7b
) in HaarEvaluator::setImage(...) since it won't be recomputed by HaarEvaluator::computeOptFeatures() for cases where the input image dimensions and requested search scales are the same as the previous. If none of the above change then it should be correct, and if they do change it will be computed correctly inside HaarEvaluator::computeOptFeatures() (in commit 952f9dbe62
)
...
I'm guessing there is a unit test for this that needs to be called 2x with the same image and search parameters (or another image with the same size) to illustrate the problem.
2015-05-13 17:34:16 -04:00
Vadim Pisarevsky
d3b0cb878a
added test for http://code.opencv.org/issues/2736
2015-05-13 22:16:35 +03:00
Vadim Pisarevsky
71002e0e79
some fixes from http://code.opencv.org/issues/3733
2015-05-13 22:00:02 +03:00
GilLevi
a41ac8fd40
added sample code for LATCH
2015-05-13 21:20:28 +03:00
sgjava
8b3b2a52f0
Removed finalize() and added n_delete to release()
2015-05-13 13:45:19 -04:00
sgjava
fe0ce9282a
Changed delete() modifier to public from protected
2015-05-13 13:44:53 -04:00
Marek Nogacki
25bcca2edb
fixed http://code.opencv.org/issues/4276 - set drawing thickness limit to 32767
2015-05-13 18:54:25 +02:00
laurentBerger
31ef944176
remove example_blob.bmp
2015-05-13 18:06:26 +02:00
laurentBerger
06b0fa6fc2
BLOB_MSER avec opengl
2015-05-13 18:03:58 +02:00
Maksim Shabunin
6d1cbc6458
Reorganized user guide
2015-05-13 18:46:21 +03:00
Maksim Shabunin
3f91b0d340
Fixed external link in python colorspace tutorial
2015-05-13 18:46:21 +03:00
Maksim Shabunin
a7160d9b12
Docs: fixed _dest type in cv::compare
2015-05-13 18:46:21 +03:00
Maksim Shabunin
e22c09c601
Documentation for CommandLineParser
2015-05-13 18:46:21 +03:00
Maksim Shabunin
61293a09ff
Fixed RGB-to-HLS conversion formula in documentation
2015-05-13 18:46:21 +03:00
Maksim Shabunin
c8cb03fd8f
Replaced 'corrected' to 'distorted' in camera calibration tutorials
2015-05-13 18:46:21 +03:00
Christian Richardt
6425ac3b13
Added color map similar to Matlab's new default color map 'parula'.
2015-05-13 17:34:14 +02:00
Christian Richardt
cbaf0ecaf6
Fixed triangulation bug http://code.opencv.org/issues/4334 .
2015-05-13 16:28:14 +02:00
Maksim Shabunin
b95769333c
Fixed ANN_MLP dw initialization when moment is not 0
2015-05-13 16:56:34 +03:00
Vadim Pisarevsky
4743184078
Merge pull request #4006 from sgjava:opencv-steve
2015-05-13 11:36:15 +00:00
Vadim Pisarevsky
3f180b0ad9
Merge pull request #4007 from martin-ueding:master
2015-05-13 11:35:09 +00:00
Martin Ueding
1e00a93f97
Fix spelling
2015-05-13 08:16:39 +02:00
Vladimir Dudnik
450a276f87
directx opencl interop samples (with copy from opencl image2d to buffer)
2015-05-13 01:51:54 +03:00
sgjava
0f53526598
Added VideoWriter and changed finalize to delete
2015-05-12 14:18:39 -04:00
laurentBerger
780f4ae7c5
try to implement remark included in message
2015-05-12 19:01:05 +02:00
Vadim Pisarevsky
4af2eb22ab
Merge pull request #3974 from StevenPuttemans:fix_RGB_naming_master
2015-05-12 15:12:27 +00:00
Vadim Pisarevsky
5de9d8e6e1
Merge pull request #3994 from mshabunin:fix-gtk-crash
2015-05-12 15:11:07 +00:00
Vadim Pisarevsky
d3ef3cff94
Merge pull request #3996 from Ashod:opengl_context_clip
2015-05-12 15:06:31 +00:00
Vadim Pisarevsky
568303ac7f
Merge pull request #3993 from vrabaud:master
2015-05-12 15:04:41 +00:00
Vadim Pisarevsky
09c26d6805
Merge pull request #3999 from berak:features2d_tutorial_fix
2015-05-12 15:01:54 +00:00
Vadim Pisarevsky
939c1d2474
Merge pull request #4000 from sdika:HOGSignedGradient
2015-05-12 14:47:36 +00:00
Vadim Pisarevsky
b8d40b4ad5
Merge pull request #4002 from marvins:gdal-fix
2015-05-12 14:33:07 +00:00
Marvin Smith
ae933db526
Fixing the gdal include error that Macports seems to only mess up.
2015-05-11 20:27:50 -07:00
laurentBerger
dfc508bb15
problem float constant and position of > in vector
2015-05-11 13:45:08 +02:00
laurentBerger
05bc7621e6
trailing whitespace
2015-05-11 13:20:52 +02:00
laurentBerger
a94fdbe0f0
Example about BLOB with a new image in data folder
2015-05-11 13:13:20 +02:00
laurentBerger
e7fcffeead
Exxemple MSER et BLOB séparés
2015-05-11 12:48:18 +02:00
msandler
8e82bed459
updated cap_libv4l.cpp to support CV_CAP_PROP_POS_MSEC, CV_CAP_PROP_POS_FRAMES and CV_CAP_PROP_FPS
2015-05-11 03:25:48 -07:00
berak
3fe69f4e67
small fixes for features2d tutorials
2015-05-10 13:44:49 +02:00
Michaël Sdika
ab40c2acf7
added the signedGradient varaible to the HOGDescriptor class.
...
when true, use signed gradient for the angular histogram computation.
default to false for backward compatibility.
2015-05-10 09:23:30 +02:00