Rostislav Vasilikhin
c8b405eb7f
Merge pull request #2410 from savuor:fix/kinfu_fetch_checkzero
...
Fixed KinFu getCloud() at empty volume
* KinFu getCloud(): an empty volume check added to OCL code
* minor
5 years ago
berak
162647c023
remove CV_64F conversion in tracking sample
5 years ago
Alexander Alekhin
ee3ef107db
core(SIMD): allow to build modules with SIMD emulator
5 years ago
shimat
a1cece733d
swap sigma_color and sigma_space
...
Update test_hdr.cpp
Update test_hdr.cpp
5 years ago
catree
94d0250b1b
Fix build of dnn_superres module without the quality module.
...
Remove not used dependency.
Fix some warnings reported by VS2017.
5 years ago
jeffeDurand
12ffd7f0cf
[moved from opencv] Merge pull request opencv/opencv#16090 from jeffeDurand:cuda_mog2_issue_5296
...
* cuda_mog2_issue_5296
original commit: 5bf7345743
5 years ago
catree
a9c1cfcb5d
Add LOGOS (Local geometric support for high-outlier spatial verification) features matching strategy.
5 years ago
cudawarped
454434bdff
Cudaarithm python bindings for merge and split are inconsistent with the format of existing cuda python functions. Split does not return its output and merg's documentation is incorrect.
5 years ago
catree
c4d24d33d9
Harmonise bibtex formatting. Sort entries alphabetically by the last name of the first paper author.
5 years ago
Alexander Alekhin
9ed5fbdb01
Merge pull request #2387 from alalek:fix_ximgproc_slic_empty_mat
...
* ximgproc(test): createSuperpixelSLIC smoke test
* ximgproc: don't use 'operator+()' with empty cv::Mat
5 years ago
Alexander Alekhin
aaf67d6f61
[moved from opencv] Merge pull request opencv/opencv#16150 from alalek:cmake_avoid_deprecated_link_private
...
* cmake: avoid deprecated LINK_PRIVATE/LINK_PUBLIC
see CMP0023 (CMake 2.8.12+)
* cmake: fix 3rdparty list
- don't include OpenCV modules
original commit: a45928045a
5 years ago
Pavel Rojtberg
d3d5f2adc1
add rapid module for silhouette based 3D object tracking
5 years ago
Tobias Senst
40b238b01d
Merge pull request #2367 from tsenst:add_robust_interpolation_of_correspondence
...
Add RIC method for sparse match interpolation
* * add RIC
* sparse_match_interpolators EdgeAwareInterpolation - enhance limitation of the maximal number of matches to be interpolated from SHORT_MAX to INT_MAX by substituting short by int types
* * add RIC citation
* * update EdgeAwareInterpolatorImpl
* * add intermediate RIC implementation
* * implementation of new paralelization classes. First test where sucessfull.
* * update documentation RICInterpolatorImpl and RLOF
* * update CMakeLists.txt remove highgui
* add test for RIC
* add ASSERTION for curr image
* * add cost map interface
* * fix internal cost map allocation bug
* * remove white spaces
* fix warnings
* *fix compiler warnings
* * remove double whitespaces
* underscore from parameters
* substitute parallel_for_() classes with lambda functions
* remove complex assertion statements
* remove dead code
* substitute swap function with std::swap()
* ocv_define_module now contains video instead of tracking module
* * remove whitespace endings
* * documentation update
* * remove double declarations that lead to warnings
* * unrole tracker.py
* remove double space
* use static for inner functions
* update create function
* modify mem init. to avoid manual memory management
* * uncomment parallel_for_ for parallelization
* * unrole unwanted changes
* uncomment paralellization
* * remove empty comment
* change CHECK to CHK_GD
* remove not necessary ;
* *documentation remove double space
5 years ago
cudawarped
7cb627a372
Patch cv::cudacodec::createVideoReader() memory leak until cudacodec can be updated to miirror NVidia example code.
5 years ago
Steve Nicholson
93258b3651
Fix **Detection of ArUco Markers** tutorial to use current version of `DICT_6X6_250` dictionary.
5 years ago
LE GARREC Vincent
9bc0d8d0b4
Fix compilation with +cuda -optflow
5 years ago
Lizeth Huertas
5efd1e2f5f
shift corner positions to the correct rotation
...
backport commit 13f7637585
5 years ago
Brian Wignall
078c45633d
Fix typos
...
backport commit 8c09249352
6 years ago
cudawarped
7cbe83f217
Merge pull request #2362 from cudawarped:fix_cudacodec_python
...
Fix cudacodec::VideoReader::nextFrame python bindings
* Signla to python bindings generator that nextFrame's OutputArray is a GpuMat.
Also remove duplicate test in cudacodec
* cudacodec: drop CV_GPU, wrap GpuMat only
* Make it explicit that frame in nextFrame is GpuMat and cannot be multiple types as implied by OutputArray
6 years ago
Lizeth Huertas
13f7637585
shift corner positions to the correct rotation
6 years ago
Alexander Alekhin
d930ad9c77
rgbd: don't use CV__ENABLE_C_API_CTORS
6 years ago
Brian Wignall
8c09249352
Fix typos
6 years ago
Nikita Shulga
42e049278b
Do not use VLA in dynafu.cpp
...
VLA is part of C99, but still not part of C++ standard
Replace float variable-length-arrays with unique_ptr arrays (which are
part of C++14)
6 years ago
Pavel Rojtberg
8f2b705d0e
ovis: implement setting diffuse color
6 years ago
Pavel Rojtberg
8a8d609afa
ovis: drop several workarounds for old OGRE versions
...
not needed since we require OGRE 1.11.5 via CMake
6 years ago
Pavel Rojtberg
647e79cfcc
ovis: addResourceLocation - assert pre-condition
6 years ago
Pavel Rojtberg
3604786e6b
ovis: add support for off-screen windows
6 years ago
czgdp1807
854d33bca9
shifted constructor and destructor definitions
6 years ago
Gagandeep Singh
b3ad2c323d
Merge pull request #2341 from czgdp1807:issue-2277
...
Added constructors and destructors for RgbdPlane
* declared constructors and destructors of RgbdPlane
* definitions written
* tests for python bindings added
6 years ago
cudawarped
53b9880f8e
Merge pull request #2180 from cudawarped:example_fix_for_cudacodec
...
OpenCV fix 14774 breaks cudacodec
* Example to describe comilation issue
* Added required changes, builds with -DWITH_FFMPEG=ON|OFF
* Working with standard ffmpeg cap.
* Changed cudacodec to use new retrieveRaw() function, to retrieve the raw encoded bitstream, from the videoio module instead of its own implementation.
* Fix cv::cudacodec::VideoWriter
* Update to use VideoContainer
* Remove header used in testing
* Remove warning
* remove dependence on redundant ffmpeg codecs
* cudacodec: use .set(CAP_PROP_FORMAT, -1) to extract RAW streams
* whitespace
* addressed alalek's comment
6 years ago
Alexander Alekhin
47de8dd38f
python: force using of ArgInfo
6 years ago
Alexander Alekhin
ad8f00017a
typo
6 years ago
Alexander Alekhin
22f0ea0cb3
ximgproc: avoid data race in StructuredEdgeDetection::detectEdges()
6 years ago
Alexander Alekhin
4c5f06128b
build: GCC9 compilation
6 years ago
anna
35de0aa7ca
add short tutorial
6 years ago
RAJKIRAN NATARAJAN
6ae9809b2e
Merge pull request #2178 from saskatchewancatch:opencv_contrib_edgeboxes_testimage
...
Add test for ximgproc/edgeboxes and fix up Python sample to work with returning scores
* Test for Edgeboxes implementation
* Fix and enhance edgeboxes_demo.py
* Make double literal a float literal
* Address review feedback
6 years ago
Gagandeep Singh
61cbb44539
Merge pull request #2336 from czgdp1807:issue-2333
...
* corrected scope of CV_Error()
* removed the return statement
6 years ago
Pavel Rojtberg
29d8e6854f
ovis: add createTriangleMesh method
...
to create a mesh from arbitrary sources
6 years ago
Alexander Alekhin
f452bd49e4
update tests (gaussianBlur fix)
6 years ago
czgdp1807
7a0ddd820a
[moved from opencv] removed typo
...
original commit: 07ef08e966
6 years ago
si40wiga
e67653eafc
Merge pull request #2296 from si40wiga:fsr-inpaint
...
* new algorithm Rapid Frequency Selective Reconstruction (FSR) added
* fix compiler warning
* applied changes suggested in alalek's review
* fix trailing whitespace
* xphoto: update inpaint() test
* fix pre-processing of error mask
* xphoto: move inpainting FSR algorithm into a separate file
* xphoto: cleanup inpaining documentation
* xphoto: inpainting fsr - avoid uninitialized values
6 years ago
Gael Colas
277c4be95a
[moved from opencv] Merge pull request opencv/opencv#15821 from ColasGael:colasg-viz-color
...
Fix wrong definition of viz::Color::navy()
original commit: e65b51ca3c
6 years ago
ab-dragon
e45887e1c0
Merge pull request #2301 from ab-dragon:conditionally_compute_dog_pyramid
...
Build DoG Pyramid if useProvideKeypoints is false
The buildDoGPyramid operation need not be performed unconditionally. In cases where it is not needed, both memory and speed performance can be improved
6 years ago
kokerf
20e17e51db
fix memset error in CombinedDescriptor
6 years ago
Pavel Grunt
cef011adf6
ovis: s/seperate/separate/g
6 years ago
Pavel Grunt
ba08dbbef8
s/seperate/separate/g in comments
6 years ago
Alexander Alekhin
daa2448466
text: filter CNN detection results
...
- instead of validation checks
6 years ago
Pavel Rojtberg
e639c8ef9a
ovis: correctly destroy additional windows
6 years ago
Deni
229cd72911
Merge pull request #2309 from deni64k:master
...
Fix memory corruption in RgbdPlane
* Fix memory corruption
* Use divUp instead of explicit rounding up integer division
* rgbd: add test
6 years ago
Pavel Rojtberg
20dbe789ad
ovis: add PF_DEPTH32F read-back support
6 years ago