Roman Donchenko
b12894d95a
Boring changes - objdetect.
11 years ago
Roman Donchenko
de6a934f66
Boring changes - nonfree.
11 years ago
Roman Donchenko
345bc633cc
Boring changes - ml.
11 years ago
Roman Donchenko
1eacb485c5
Boring changes - features2d.
11 years ago
Roman Donchenko
bd70a033fc
Boring changes - calib3d.
11 years ago
Roman Donchenko
711fb6bd92
Boring changes - bioinspired.
11 years ago
Roman Donchenko
beeb932d22
Boring changes - highgui.
11 years ago
Roman Donchenko
254d4ae429
Boring changes - imgproc.
11 years ago
Roman Donchenko
8200a95ced
Boring changes - core.
...
This and several following commits contain the "boring" changes required
to support the new Ptr. These are changes like:
* new T -> makePtr<T> or .reset(new T) or Ptr<T>(new T)
(depending on the situation)
* p.empty() -> !p
* delete_obj -> DefaultDeleter::operator()
and similar changes that are numerous, but primitive.
11 years ago
Jin Ma
1366df8250
MOG&MOG2: Modified the performance test according to the feedback of the community.
11 years ago
Roman Donchenko
461c98fa86
Replaced Ptr with my new implementation.
11 years ago
Daniel Angelov
25c0d5978c
Update on the compare lines method.
11 years ago
ilya-lavrenov
722bdc52a0
enabled gemm and dft erf test
11 years ago
ilya-lavrenov
0f8f489658
changed data path and eps
11 years ago
Roman Donchenko
6ebfa87181
Delete a bunch more trailing whitespace that slipped through the cracks.
11 years ago
Daniel Angelov
b5e1eb7d48
Removed IOArray constness.
11 years ago
Roman Donchenko
a9975b144a
Fixed a bug in FLANN resulting in uninitialized accesses.
...
This is fixed upstream in mariusmuja/flann@b615f26, but that fix
would break binary compatibility, so I had to make a different one.
Since the bug isn't quite obvious, here's an explanation. In the const
version of any::cast, if policy is a small_any_policy, its get_value
returns its input argument. So r becomes a pointer to obj, and the
return value is a reference to a local variable, which is invalidated
when the function exits.
11 years ago
pengxiao
e45f92a9e1
Fix a bug of ocl retina on NVIDIA platform.
11 years ago
Jin Ma
dd73016c8b
Removed whitespace.
11 years ago
Jin Ma
e528f39def
Added the performance test for mog and mog2.
11 years ago
Abid K
0902f183ca
alignment of parameters as per speclad
11 years ago
yao
a70bdfc13f
a little fix to tests and sample
11 years ago
pengxiao
ea16539448
Fix a crash of ocl program if clAmdBlas is not linked.
11 years ago
peng xiao
7b3e3f69fb
Modify according to @alalek .
11 years ago
Roman Donchenko
18bb951574
Nuked the rest of the precomp.cpp files.
...
Consider this a part of merging #1357 .
11 years ago
Vadim Pisarevsky
e85e4d3ab9
fixed bug in IPP-accelerated morphology; added several IPP imgwarp functions (by Klim)
11 years ago
kdrobnyh
e6ec3dd17f
Add IPP support in resize, warpAffine, warpPerspective functions
11 years ago
Alexander Smorkalov
6d3102141c
Globbing accuracy test fail on Windows RT fixed.
11 years ago
StevenPuttemans
7e638cb0b5
Bugfix 3115: Added not to documentation for python version for
...
facerecognizer interface + white + whitespaces remove
11 years ago
peng xiao
3c2a8912ee
Let clAmdBlas library initialize once during program lifetime.
11 years ago
Daniel Angelov
24e916059f
Added LineSegmentDetector documentation and an output image.
11 years ago
Daniel Angelov
9d78b8003e
Update on LSD no to use any Mat* (IOArrays instead).
...
Updated to new license.
11 years ago
Gabe Schwartz
b2bedef26f
Added interlace handling to PNG decoder.
...
libpng 1.5+ recommends a call to png_set_interlace_handling() if you use
png_read_update_info and png_read_image. It will generate a warning
without it.
11 years ago
Gabe Schwartz
e2441e0034
Removed incorrect iCCP chunks from GUI resources.
...
Also removed malformed tEXt chunk from a logo PNG.
11 years ago
Alex Leontiev
af74ec6044
Minor fixes
...
In response to the pull request comments by Vadim Pisarevsky. In
particular, the following was done:
*)cv::reduce use instead of custom code for calculating
per-coordinate sum
*) naming style of private methods is made consisted with overall --
mixed-case style
*) irrelevant create()'s were removed -- I did not know that copyTo()
method itself calls create
11 years ago
Alex Leontiev
f2fd0ad153
Fixed .rst indentation
...
This caused warnings.
11 years ago
Alex Leontiev
b92c88ddd1
Removed trailing spaces
...
Continuation of work done in previous commit.
11 years ago
Alex Leontiev
b1f029ccc5
Removed trailing spaces
...
This caused warnings.
11 years ago
Alex Leontiev
554e002747
Prepare Downhill Simplex for pull request
...
This is an implementation of so-called downhill simplex method
(https://en.wikipedia.org/wiki/Nelder%E2%80%93Mead_method )
Please, let me know if you have any comments, whoever you'd be.
11 years ago
abidrahmank
7fd8a19fe8
warning corrections
11 years ago
abidrahmank
14af369640
Python bindings for KeyPoint methods
...
Usage:
import numpy as np
import cv2
img = cv2.imread('messi5.jpg',0)
sift = cv2.SIFT()
kp = sift.detect(img)
pts = cv2.KeyPoint_convert(kp)
kps = cv2.KeyPoint_convert(pts.reshape(-1,1,2))
overlap = cv2.KeyPoint_overlap(kp[0],kp[1])
11 years ago
kdrobnyh
f4aa7ff919
Add IPP support in meanStdDev, minMaxIdx, norm functions
11 years ago
ilya-lavrenov
a6084d2970
enabled some tests that failed before OCL_TEST_CYCLE*() macroses were defined and for some tests was disabled SANITY_CHECK, because plain and ocl results must not be completely equal
11 years ago
ilya-lavrenov
968c095403
gpu -> ocl
11 years ago
kdrobnyh
7a7aa148d4
Add IPP support in compare function
11 years ago
Alexander Smorkalov
5af2cc6223
AutoBuffer with initial zero size fixed.
11 years ago
Jin Ma
114f3266d8
Removed performance test.
11 years ago
Jin Ma
4f3349ffe4
Added perf namespace.
11 years ago
Jin Ma
0233c4c198
Removed whitespace.
11 years ago
Jin Ma
14e083f1e0
Removed trailing whitespace
11 years ago