- 10 Nov, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 08 Nov, 2018 1 commit
-
-
Alexander Alekhin authored
This reverts commit 7349b8f5 (partially).
-
- 12 Oct, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 21 Sep, 2018 1 commit
-
-
Hamdi Sahloul authored
* Cleanup macros and enable expansion of `__VA_ARGS__` for Visual Studio * Macros for enum-arguments backwards compatibility * Convert struct Param to enum struct * Enabled ParamType.type for enum types * Enabled `cv.read` and `cv.write` for enum types * Rename unnamed enum to AAKAZE.DescriptorType * Rename unnamed enum to AccessFlag * Rename unnamed enum to AgastFeatureDetector.DetectorType * Convert struct DrawMatchesFlags to enum struct * Rename unnamed enum to FastFeatureDetector.DetectorType * Rename unnamed enum to Formatter.FormatType * Rename unnamed enum to HOGDescriptor.HistogramNormType * Rename unnamed enum to DescriptorMatcher.MatcherType * Rename unnamed enum to KAZE.DiffusivityType * Rename unnamed enum to ORB.ScoreType * Rename unnamed enum to UMatData.MemoryFlag * Rename unnamed enum to _InputArray.KindFlag * Rename unnamed enum to _OutputArray.DepthMask * Convert normType enums to static const NormTypes * Avoid conflicts with ElemType * Rename unnamed enum to DescriptorStorageFormat
-
- 13 Sep, 2018 1 commit
-
-
Hamdi Sahloul authored
-
- 07 Sep, 2018 1 commit
-
-
Hamdi Sahloul authored
-
- 30 Jul, 2018 1 commit
-
-
miaow1988 authored
Changed the type of variable *r* from int to size_t. This change makes sure that a valid result of std::max(r + delta, (r*3+1)/2) can be passed into the reserve function.
-
- 04 Jul, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 14 May, 2018 1 commit
-
-
Vadim Pisarevsky authored
* make sure that the matrix with more than INT_MAX elements is marked as non-continuous, and thus all the pixel-wise functions process it correctly (i.e. row-by-row, not as a single row, where integer overflow may occur when computing the total number of elements)
-
- 24 Apr, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 28 Mar, 2018 1 commit
-
-
Alexander Alekhin authored
-
- 05 Feb, 2018 1 commit
-
-
Maksim Shabunin authored
-
- 11 Dec, 2017 1 commit
-
-
Maksim Shabunin authored
-
- 22 Nov, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 12 Oct, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 07 Oct, 2017 2 commits
-
-
Igor Wodiany authored
The same code was repeated several time for different data types, so it was extracted as a templated function to improve maintability and make a code more clear.
-
Igor Wodiany authored
Exception may be rasied inside the body of a copying constructor after refcount has been increased, and beacause in the case of the exception destrcutor is never called what causes memory leak. This commit adds a workaround that calls the release() function before the exception is thrown outside the contructor.
-
- 08 Sep, 2017 1 commit
-
-
Maksim Shabunin authored
-
- 05 Sep, 2017 1 commit
-
-
- 23 Aug, 2017 1 commit
-
-
Pavel Vlasov authored
- Optimizations set change. Now IPP integrations will provide code for SSE42, AVX2 and AVX512 (SKX) CPUs only. For HW below SSE42 IPP code is disabled. - Performance regressions fixes for IPP code paths; - cv::boxFilter integration improvement; - cv::filter2D integration improvement;
-
- 03 Aug, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 25 Jul, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 30 Jun, 2017 1 commit
-
-
Maksim Shabunin authored
-
- 28 Jun, 2017 1 commit
-
-
Maksim Shabunin authored
-
- 26 Jun, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 21 Jun, 2017 1 commit
-
-
Alexander Alekhin authored
-
- 24 May, 2017 1 commit
-
-
Matthias Grundmann authored
Fix race condition in getDefaultAllocator and setDefaultAllocator interaction / not threadsafe currently
-
- 23 May, 2017 1 commit
-
-
Maksim Shabunin authored
-
- 20 Apr, 2017 1 commit
-
-
Pavel Vlasov authored
-
- 19 Apr, 2017 2 commits
-
-
Vadim Pisarevsky authored
-
Arnaud Brejeon authored
Add support for std::array<T, N> (#8535) * Add support for std::array<T, N> * Add std::array<Mat, N> support * Remove UMat constructor with std::array parameter
-
- 22 Mar, 2017 1 commit
-
-
KUANG, Fangjun authored
-
- 22 Feb, 2017 1 commit
-
-
Vladislav Sovrasov authored
-
- 08 Feb, 2017 1 commit
-
-
Vitaly Tuzov authored
-
- 16 Dec, 2016 1 commit
-
-
Alexander Alekhin authored
-
- 15 Dec, 2016 1 commit
-
-
Addison Elliott authored
Currently, to select a submatrix of a N-dimensional matrix, it requires two lines of code while only one line of code is required if using a 2D array. I added functionality to be able to select an N-dim submatrix using a vector list instead of a Range pointer. This allows initializer lists to be used for a one-line selection.
-
- 14 Dec, 2016 1 commit
-
-
Addison Elliott authored
Added new overloaded functions for Mat and UMat that accepts std::vector<int> instead of int * for the sizes on a N-dimensional array. This allows for an N-dimensional array to be setup in one line instead of two when using C++11 initializer lists. cv::Mat(3, {zDim, yDim, xDim}, ...) can be used instead of having to create an int pointer to hold the size array.
-
- 12 Dec, 2016 1 commit
-
-
bedbad authored
Introducing boundingRect2f() (#7754) * Introducing boundingRect2f to return exact bounding float rectangle for RotatedRect * Introducing boundingRect2f to return exact bounding float rectangle for RotatedRect * Introducing boundingRect2f() - update * Introducing boundingRect2f to return exact bounding float rectangle for RotatedRect * Introducing boundingRect2f() - update - tested
-
- 07 Sep, 2016 1 commit
-
-
Valeriy Van authored
Minor fix in MatAllocator::upload Minor fix in MatAllocator::copy Minor fix in setSize function Minor fix in Mat::Mat Minor fix in cvMatNDToMat function Minor fix in _InputArray::getMatVector Minor fix in _InputArray::getUMatVector Minor fix in cv::hconcat Minor fix in cv::vconcat Minor fix in cv::setIdentity Minor fix in cv::trace Minor fix in transposeI_ template function Minor fix in reduceC_ template function Minor fix in sort_ template function Minor fix in sortIdx_ template function Minor fix in cvRange function Minor fix in MatConstIterator::seek Minor fix in SparseMat::create Minor fix in SparseMat::copyTo Minor fix in SparseMat::convertTo Minor fix in SparseMat::convertTo Minor fix in SparseMat::ptr Minor fix in SparseMat::resizeHashTab Fixes indentation
-
- 05 Sep, 2016 1 commit
-
-
Sergey Alexandrov authored
-