Roman Donchenko
a50d75d362
Made Filestorage able to not own its CvFileStorage instance.
...
This allows to get rid of the last remaining Ptr<T>::addref calls.
11 years ago
Roman Donchenko
3e189a2b41
Replaced calls to Ptr<T>::ptr to ::dynamicCast.
11 years ago
Roman Donchenko
24dee16b12
Added to CV_INIT_ALGORITHM a Ptr creation function, for convenience.
...
Also changed the static functions to inline, to stop GCC complaining
about unused functions.
11 years ago
Roman Donchenko
dadee3752c
Adapt Python bindings to the new Ptr.
11 years ago
Roman Donchenko
2f942efdf7
Java: removed usages of Ptr<T>::addref().
...
Now the features2d class wrappers use composition instead of inheritance.
11 years ago
Roman Donchenko
2a2c21bb63
Replace an incorrect usage of Ptr with a simple vector.
11 years ago
Roman Donchenko
62353b7980
Boring changes - samples.
11 years ago
Roman Donchenko
34af7eeb84
Boring changes - apps.
11 years ago
Roman Donchenko
eaa7fcc3e6
Boring changes - legacy.
11 years ago
Roman Donchenko
34127ba80f
Boring changes - contrib.
11 years ago
Roman Donchenko
3bca57ac25
Boring changes - ocl.
11 years ago
Roman Donchenko
fc0e835762
Boring changes - gpuwarping.
11 years ago
Roman Donchenko
d33ff4bb11
Boring changes - gpustereo.
11 years ago
Roman Donchenko
d6146e9543
Boring changes - gpulegacy.
11 years ago
Roman Donchenko
a007c7b980
Boring changes - gpuimgproc.
11 years ago
Roman Donchenko
b165016ba7
Boring changes - gpufilters.
11 years ago
Roman Donchenko
a57f93ee92
Boring changes - gpucodec.
11 years ago
Roman Donchenko
2c033251db
Boring changes - gpubgsegm.
11 years ago
Roman Donchenko
f8f0685397
Boring changes - gpuarithm.
11 years ago
Roman Donchenko
57595a8308
Boring changes - gpu.
11 years ago
Roman Donchenko
0dcb4f1f66
Boring changes - videostab.
11 years ago
Roman Donchenko
808e0cf10b
Boring changes - video.
11 years ago
Roman Donchenko
93f757f8a2
Boring changes - superres.
11 years ago
Roman Donchenko
f21851f0f4
Boring changes - stitching.
11 years ago
Roman Donchenko
cce0f48d3e
Boring changes - softcascade.
11 years ago
Roman Donchenko
32205d3c5b
Boring changes - photo.
11 years ago
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
Roman Donchenko
70711ac6c2
Merge pull request #1400 from ilya-lavrenov:ocl_test_mog
11 years ago
Roman Donchenko
ecc51817d9
Merge pull request #1399 from pengx17:master_retina_ocl_fix
11 years ago
Roman Donchenko
b9ae8623b2
Merge pull request #1398 from ilya-lavrenov:ocl_perf_gemm
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
Roman Donchenko
36e0891480
Fixed OCL samples' install path being inconsistent with the other samples.
11 years ago
ilya-lavrenov
0f8f489658
changed data path and eps
11 years ago
Roman Donchenko
e5735282da
Added the ability to have samples inside a module.
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
33d8d8ffd1
Merge pull request #1392 from SpecLad:flann-uninit
11 years ago
Roman Donchenko
ed7329ac55
Merge pull request #1397 from ilya-lavrenov:gitignore
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