Roman Donchenko
3bca57ac25
Boring changes - ocl.
12 years ago
Roman Donchenko
fc0e835762
Boring changes - gpuwarping.
12 years ago
Roman Donchenko
d33ff4bb11
Boring changes - gpustereo.
12 years ago
Roman Donchenko
d6146e9543
Boring changes - gpulegacy.
12 years ago
Roman Donchenko
a007c7b980
Boring changes - gpuimgproc.
12 years ago
Roman Donchenko
b165016ba7
Boring changes - gpufilters.
12 years ago
Roman Donchenko
a57f93ee92
Boring changes - gpucodec.
12 years ago
Roman Donchenko
2c033251db
Boring changes - gpubgsegm.
12 years ago
Roman Donchenko
f8f0685397
Boring changes - gpuarithm.
12 years ago
Roman Donchenko
57595a8308
Boring changes - gpu.
12 years ago
Roman Donchenko
0dcb4f1f66
Boring changes - videostab.
12 years ago
Roman Donchenko
808e0cf10b
Boring changes - video.
12 years ago
Roman Donchenko
93f757f8a2
Boring changes - superres.
12 years ago
Roman Donchenko
f21851f0f4
Boring changes - stitching.
12 years ago
Roman Donchenko
cce0f48d3e
Boring changes - softcascade.
12 years ago
Roman Donchenko
32205d3c5b
Boring changes - photo.
12 years ago
Roman Donchenko
b12894d95a
Boring changes - objdetect.
12 years ago
Roman Donchenko
de6a934f66
Boring changes - nonfree.
12 years ago
Roman Donchenko
345bc633cc
Boring changes - ml.
12 years ago
Roman Donchenko
1eacb485c5
Boring changes - features2d.
12 years ago
Roman Donchenko
bd70a033fc
Boring changes - calib3d.
12 years ago
Roman Donchenko
711fb6bd92
Boring changes - bioinspired.
12 years ago
Roman Donchenko
beeb932d22
Boring changes - highgui.
12 years ago
Roman Donchenko
254d4ae429
Boring changes - imgproc.
12 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.
12 years ago
Roman Donchenko
461c98fa86
Replaced Ptr with my new implementation.
12 years ago
pengxiao
e45f92a9e1
Fix a bug of ocl retina on NVIDIA platform.
12 years ago
Abid K
0902f183ca
alignment of parameters as per speclad
12 years ago
Roman Donchenko
18bb951574
Nuked the rest of the precomp.cpp files.
...
Consider this a part of merging #1357 .
12 years ago
Alexander Smorkalov
6d3102141c
Globbing accuracy test fail on Windows RT fixed.
12 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.
12 years ago
Gabe Schwartz
e2441e0034
Removed incorrect iCCP chunks from GUI resources.
...
Also removed malformed tEXt chunk from a logo PNG.
12 years ago
abidrahmank
7fd8a19fe8
warning corrections
12 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])
12 years ago
kdrobnyh
f4aa7ff919
Add IPP support in meanStdDev, minMaxIdx, norm functions
12 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
12 years ago
ilya-lavrenov
968c095403
gpu -> ocl
12 years ago
kdrobnyh
7a7aa148d4
Add IPP support in compare function
12 years ago
Alexander Smorkalov
5af2cc6223
AutoBuffer with initial zero size fixed.
12 years ago
Vadim Pisarevsky
f12702be24
fixed bugs in rectangular morphology case
12 years ago
Vadim Pisarevsky
771feb61c2
fixed building OpenCV with IPP 6.x (different DFT API); added Canny and rectangular morphology (based on Alex Kapustin patches)
12 years ago
Roman Donchenko
122d0f8685
Deleted the now-empty ocl perf_precomp.cpp.
...
See pull request #1241 for why.
12 years ago
Roman Donchenko
5e4ebf3403
Fixed incomplete matrix initialization in HomographyRefineCallback.
12 years ago
peng xiao
9f0a88c1d6
Remove trailing whitespace.
12 years ago
peng xiao
287c8a3330
Let ocl::context only be initialized once in retina_ocl test.
12 years ago
ilya-lavrenov
3c86aa4ae1
appended ocl::finish to test_cycle defines
12 years ago
Roman Donchenko
dd25f416a6
War on Whitespace, master edition: tabs.
12 years ago
Roman Donchenko
9ed475cf52
War on Whitespace, master edition: file endings.
12 years ago
Roman Donchenko
9b92545ce6
War on Whitespace, master edition: trailing spaces.
12 years ago
Jason Newton
affab4f156
correct range computations, it is difficult to do the more efficient single pass 3N/2 implementations correctly in this particular setting without costing more than they save
12 years ago