Pavel Rojtberg
01f00f8f09
ovis: make log verbosity and rendersystem configurable via environment
7 years ago
Tomoaki Teshima
8aaa91c3dc
avoid test failing on Aarch64
...
* loosen the threshold in Rgbd_Normals.compute
* make the minimum tvec larger in RGBD_Odometry_Rgbd.algorithmic
7 years ago
Alexander Alekhin
da3375f682
sfm: fix build with Ceres
7 years ago
Pavel Rojtberg
cd7a6eaf78
ovis: add ENTITY_AABB_WORLD property and implement getEntityProperty
7 years ago
Pavel Rojtberg
31dff1e099
ovis: add more CV_MAT <> Ogre::PixelFormat conversions
7 years ago
Varvrar
5002e93405
Now when the element of the vector is removed j does not increase
7 years ago
Alexander Alekhin
fc28d02a1e
sfm: fix public includes
...
don't include internal 3rdparty header
7 years ago
Alexander Alekhin
c94997ec4f
fix includes
7 years ago
Mohammad Haghighat
6bd26d33f3
Merge pull request #1847 from mhaghighat:master
...
* Checker for empty region
* Update trackerKCF.cpp
* Update trackerKCF.cpp
* Update trackerKCF.cpp
* fix whitespace
7 years ago
berak
bf49c43770
face: cleanup after #18484
7 years ago
Alexander Alekhin
19efe3091d
face: MACE filter workaround
7 years ago
tompollok
8893087432
change area() emptiness checks to empty()
7 years ago
soyer
6ca4d391b7
bioinspired: remove the non-existent opencv_ocl module from CMakeList
7 years ago
Rostislav Vasilikhin
bc5a06a4f7
fixed odometry tests (changes ported from PR #1627 )
7 years ago
Maksim Shabunin
7893385c0e
Do not copy/assign CommandLineParser object
7 years ago
Pavel Rojtberg
a3c8704db4
ovis: implement MATERIAL_LINE_WIDTH
7 years ago
Suleyman TURKMEN
3f2164ff49
Update peilin.cpp
7 years ago
Pavel Rojtberg
0bb0989fda
ovis: drop SCENE_RENDER_FLOAT which is replaced by getCompositorTexture
...
the latter allows explicitly specifying channel nr/ format. Also we no
longer have to manually manage an extra rendertarget any more.
7 years ago
Pavel Rojtberg
c4c2e85d89
ovis: add getCompositorTexture for reading custom render targets
7 years ago
berak
502970b3cc
cvv: fix small memleak in demo
7 years ago
berak
ad8cf97e9d
tracking: add a threshold to the CSRT tracker
7 years ago
Maksim Shabunin
a0ad83f117
Fixed or disabled some warnings in several cvv, ovis and sfm modules
7 years ago
Alexander Alekhin
9f6042853c
docs: exclude 'matlab' entry
7 years ago
Tomoaki Teshima
9544585050
rename filename typo
7 years ago
Pavel Rojtberg
642bc0c23f
ovis: fix setCompositors if frameSrc == rWin
7 years ago
Alexander Alekhin
ff59193d3f
matlab: move CMake scripts from main repo ( #1774 )
7 years ago
Maksim Shabunin
ef6cefb3c2
Fixed cnn_3dobj module build
7 years ago
Sayed Adel
63053499ee
replace unv 16-bit multiplication operator with v_mul_wrap since behaviour changed by opencv/opencv#12516
7 years ago
Hamdi Sahloul
d1b5431094
MSVC: Slience external/meaningless warnings
7 years ago
Alexander Alekhin
9ef878f3bf
matlab: fix bindings generator
7 years ago
Khem Raj
6a01e96ce7
Add missing multi-line separator
...
Otherwise this fails to build ( found on mips )
Fixes
contrib/modules/surface_matching/src/hash_murmur86.hpp:97:15: error:
expected constructor, destructor, or type conversion before '(' token
&& defined(__GNUC__) && (__GNUC__>4 || (__GNUC__==4 &&
__GNUC_MINOR__>=3))
^
7 years ago
Suleyman TURKMEN
fa80a87aea
Update pd_inria.cpp
7 years ago
Alexander Alekhin
45f9d57118
matlab: fix conversion functions
7 years ago
Pavel Rojtberg
c64f925a50
ovis: Camera - allow manually setting zNear and zFar
7 years ago
Hamdi Sahloul
c880b7ea4d
Utilize CV_UNUSED macro
7 years ago
Alexander Alekhin
96a7fdf35f
face: fix I/O for 'splitr' structure on 32-bit platforms
7 years ago
Alexander Alekhin
21d5949e83
fix build
7 years ago
Vadim Pisarevsky
d1b8e38e45
trying to fix the custom AVX2 builder test failures (false alarms)
7 years ago
Pavel Rojtberg
f9bef18444
ovis: ensure that compositors are applied to all owned render targets
7 years ago
Alexander Alekhin
f71329637f
face: update FacemarkAAMImpl::delaunay() implementation
...
according new behavior of SubDiv2D
7 years ago
gdemarcq
1f6d6f0626
Merge pull request #1736 from gdemarcq:staticSaliencyFineGrained_corrections
...
* Correction for computeBinaryMap crash:
- the function staticSaliencyFineGrained::computeSaliency() outputs a
normalized floating point image
- Add an assert in StaticSaliency::computeBinaryMap in order to check
image depth (must be CV_32F)
* - Change assert in cv::Saliency::StaticSaliency::computeBinaryMap()
- Change normalization factor in cv::Saliency::StaticSaliencyFineGrained::computeSaliencyImpl()
7 years ago
Hamdi Sahloul
271f2bcf86
UMat::getMat(): Utilize `ACCESS_READ` instead of 0
7 years ago
Alexander Alekhin
2203743cd0
aruco: fix debug build
7 years ago
Alexander Alekhin
21f7139e51
ovis: fix build
7 years ago
bini
1612d99c81
refactored include and bib files
7 years ago
Alexander Alekhin
8277ca6aae
opencv-core: avoid using of multi-argument CV_Assert()
...
replace to CV_Assert_N()
7 years ago
Jan Beich
4e10bc5dae
stereo: unbreak with clang 7
...
modules/stereo/src/descriptor.cpp:229:34: error: ordered comparison between pointer and zero ('const int *' and 'int')
CV_Assert(image.size > 0);
~~~~~~~~~~ ^ ~
modules/core/include/opencv2/core/base.hpp:478:84: note: expanded from macro 'CV_Assert'
#define CV_Assert(...) do { CVAUX_CONCAT(CV_Assert_, CV_VA_NUM_ARGS(__VA_ARGS__)) (__VA_ARGS__); } while(0)
^~~~~~~~~~~
modules/core/include/opencv2/core/base.hpp:455:35: note: expanded from macro 'CV_Assert_1'
#define CV_Assert_1( expr ) if(!!(expr)) ; else cv::error( cv::Error::StsAssert, #expr, CV_Func, __FILE__, __LINE__ )
^~~~
modules/stereo/src/descriptor.cpp:230:33: error: ordered comparison between pointer and zero ('const int *' and 'int')
CV_Assert(cost.size > 0);
~~~~~~~~~ ^ ~
modules/core/include/opencv2/core/base.hpp:478:84: note: expanded from macro 'CV_Assert'
#define CV_Assert(...) do { CVAUX_CONCAT(CV_Assert_, CV_VA_NUM_ARGS(__VA_ARGS__)) (__VA_ARGS__); } while(0)
^~~~~~~~~~~
modules/core/include/opencv2/core/base.hpp:455:35: note: expanded from macro 'CV_Assert_1'
#define CV_Assert_1( expr ) if(!!(expr)) ; else cv::error( cv::Error::StsAssert, #expr, CV_Func, __FILE__, __LINE__ )
^~~~
7 years ago
Alexander Alekhin
acad7bbee5
build: replace big/little endianess check to WORDS_BIGENDIAN macro
7 years ago
trobro
ac7d1ca613
optflow: is depending on opencv_flann
7 years ago
Pavel Rojtberg
c655c31054
ovis: allow up to 4 active texture units
7 years ago