- 06 Nov, 2018 2 commits
- 04 Nov, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 03 Nov, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 01 Nov, 2018 3 commits
-
-
berak authored
-
Ilari Venäläinen authored
* Fix reading of black-and-white (thresholded) TIFF images I recently updated my local OpenCV version to 3.4.3 and found out that I could not read my TIFF images related to my project. After debugging I found out that there has been some static analysis fixes made that accidentally have broken reading those black-and-white TIFF images. Commit hash in which reading of mentioned TIFF images has been broken: cbb1e867 Basically the fix is to revert back to the same functionality that has been there before, when black-and-white images are read bpp (bitspersample) is 1. Without the case 1: this TiffDecoder::readHeader() function always return false. * Added type and default error message * Added stdexcept include * Use CV_Error instead of throw std::runtime_error * imgcodecs(test): add TIFF B/W decoding tests
-
Emanuele Ruffaldi authored
-
- 31 Oct, 2018 3 commits
-
-
Dmitry Kurtaev authored
-
Suleyman TURKMEN authored
* Update imgproc.hpp * update color conversion codes
-
Vadim Pisarevsky authored
-
- 30 Oct, 2018 1 commit
-
-
Rostislav Vasilikhin authored
* RGB2RGB initially rewritten * NEON impl removed * templated version added for ushort, float * data copying allowed for RGB2RGB * inplace processing fixed * fields to local vars * no zeroupper until it's fixed * vx_cleanup() added back
-
- 29 Oct, 2018 2 commits
-
-
Diego Barrios Romero authored
-
Alexander Nesterov authored
-
- 26 Oct, 2018 4 commits
-
-
catree authored
Fix distortion figure in calib3d. Positive radial distortion corresponds to pincushion distortion and negative to barrel distortion. Add another figure that illustrates the influence of k1 in the distortion effect.
-
Rostislav Vasilikhin authored
-
Alexander Alekhin authored
-
kamino410 authored
-
- 25 Oct, 2018 6 commits
-
-
Sean McBride authored
-
catree authored
Add a function that draws frame axes. Useful for debugging purpose and to check the correctness of the output of a pose estimation method.
-
Henry authored
"as opposed to" is a phrase of opposed meaning distinguished from or in contrast with. e.g., "an approach that is theoretical as opposed to practical" synonyms: in contrast with, as against, as contrasted with, rather than, instead of, as an alternative to example: "we use only steam, as opposed to chemical products, to clean our house"
-
Dmitry Kurtaev authored
-
Alexander Alekhin authored
- https://python.readthedocs.io/en/stable/whatsnew/3.4.html - The `sysconfig` key `SO` is deprecated, it has been replaced by `EXT_SUFFIX`
-
Alexander Alekhin authored
-
- 24 Oct, 2018 6 commits
-
-
Alexander Nesterov authored
-
Alexander Alekhin authored
-
maver1 authored
* Updated ICV packages and IPP integration * core(test): minMaxIdx IPP regression test * core(ipp): workaround minMaxIdx problem * core(ipp): workaround meanStdDev() CV_32FC3 buffer overrun * Returned semicolon after CV_INSTRUMENT_REGION_IPP()
-
Antonio Borondo authored
-
Sayed Adel authored
-
Tomoaki Teshima authored
* use boundingRect instead of manual loop
-
- 22 Oct, 2018 1 commit
-
-
huangqinjin authored
-
- 21 Oct, 2018 1 commit
-
-
Mansoo Kim authored
-
- 20 Oct, 2018 1 commit
-
-
Apoorv Goel authored
* Document distance functors in dist.h * Add spec for Distance * Generate appropriate links for symbols
-
- 19 Oct, 2018 1 commit
-
-
Dmitry Kurtaev authored
-
- 17 Oct, 2018 3 commits
-
-
Apoorv authored
-
Mansoo Kim authored
-
Dmitry Kurtaev authored
-
- 16 Oct, 2018 4 commits
-
-
Michał Janiszewski authored
Relevant guards can be found in https://github.com/opencv/opencv/blob/ef5579dc8667e5eb5e149acc4af898421eed99da/modules/features2d/src/kaze/AKAZEConfig.h#L8 and https://github.com/opencv/opencv/blob/ef5579dc8667e5eb5e149acc4af898421eed99da/modules/ml/include/opencv2/ml.hpp#L44
-
Michał Janiszewski authored
-
Michał Janiszewski authored
Exceptions caught by value incur needless cost in C++, most of them can be caught by const-reference, especially as nearly none are actually used. This could allow compiler generate a slightly more efficient code.
-
Paul Shin authored
- This is to accommodate the variabiilty in floating-point operations in new platforms/compilers - Specifically due to the error margin found in NVIDIA Jetson TX2
-