Vladislav Vinogradov
6ad72bfcb4
removed detail:: prefix int video_reader
...
it conflicts with cv::detail
12 years ago
Vladislav Vinogradov
a0771630b0
restored original behaviour or release functions for (Buffer and Texture)
12 years ago
lluis
cd33ca0009
changed default parameters in CreateERFiltersNM{1,2} functions. They are not needed now in the sample example.
12 years ago
lluis
6ef1d456dd
fixed rebase conflicts
12 years ago
Vladislav Vinogradov
b7eff94137
fixed compilation issues with new Ptr
12 years ago
Vladislav Vinogradov
0c7663eb3b
Merge branch 'master' into gpu-cuda-rename
...
Conflicts:
modules/core/include/opencv2/core/cuda.hpp
modules/cudacodec/src/thread.cpp
modules/cudacodec/src/thread.hpp
modules/superres/perf/perf_superres.cpp
modules/superres/src/btv_l1_cuda.cpp
modules/superres/src/optical_flow.cpp
modules/videostab/src/global_motion.cpp
modules/videostab/src/inpainting.cpp
samples/cpp/stitching_detailed.cpp
samples/cpp/videostab.cpp
samples/gpu/stereo_multi.cpp
12 years ago
lluis
512111af9c
removed blank line at EOF
12 years ago
lluis
1cc6502db3
removed unnecessary commented block
12 years ago
lluis
04913f5af7
removed trailing whitespaces
12 years ago
lluis
f4d01175b8
fixed a bug in the calculation of the number of inflexion points feature
12 years ago
lluis
765921cc25
fixed a typo error in the default min_Probability param of CreateERFilterNM2
12 years ago
lluis
dba336c0e3
fixed a bug in the non-max-suppression filter procedure
12 years ago
Roman Donchenko
439e90f4f4
retina_ocl.cpp: removed two unused arrays.
12 years ago
Roman Donchenko
af594c8e44
retina_ocl.hpp: switched BasicRetinaFilter's members around to fix a -Wreorder warning.
12 years ago
Roman Donchenko
86b841563b
Added tests for Ptr.
12 years ago
Roman Donchenko
c7d2fdc4b2
Fixed some dubious uses of tbb::task_scheduler_init.
12 years ago
Roman Donchenko
a97ffe6513
Rewrote the documentation for Ptr to fit the new implementation.
12 years ago
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.
12 years ago
Roman Donchenko
3e189a2b41
Replaced calls to Ptr<T>::ptr to ::dynamicCast.
12 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.
12 years ago
Roman Donchenko
dadee3752c
Adapt Python bindings to the new Ptr.
12 years ago
Roman Donchenko
2f942efdf7
Java: removed usages of Ptr<T>::addref().
...
Now the features2d class wrappers use composition instead of inheritance.
12 years ago
Roman Donchenko
eaa7fcc3e6
Boring changes - legacy.
12 years ago
Roman Donchenko
34127ba80f
Boring changes - contrib.
12 years ago
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