Philipp Hasper
c52759432d
Fixing doc for cv::Mat::forEach
...
image.forEachWithPosition does not exist
9 years ago
Dan
e9461d3feb
templated std::vector<T> constructor was being called instead of const std::vector<cv::cuda::GpuMat>.
9 years ago
ohnozzy
9dd962ca1a
Bug Fix for Issue 6288
...
Added 2 inline functions in persistence.hpp
So that the '>>' operator works correctly for std::Vector<KeyPoint> and
std::Vector<DMatch>
9 years ago
mvukad
695e33b25b
Fix missing format when writing Algorithm-based objects
...
Added a writeFormat() method to Algorithm which must be called by the
write() method of derived classes.
9 years ago
Vladislav Sovrasov
362d52a3cb
Fix doxygen warnings
9 years ago
Vladislav Sovrasov
a490b64e9b
Add function setRNGSeed and seed setup in python tests
9 years ago
Maksim Shabunin
83379695a0
HAL interface for morphology operations
9 years ago
Robbert Klarenbeek
dd510e1de9
Fix incompatibility with some C++11 implementations
9 years ago
Dan
42c36c0c80
Linux bug fix for ThrustAllocator.
9 years ago
Прун Виктор
a90a576d76
fixed incorrect behaviour of move semantics for cv::Ptr, cv::Mat, cv::UMat in case when rvalue-reference references to *this.
9 years ago
Piotr Semenov
108ddc199a
Fix that corrects the OpenCV's random access iterator distance: d(x,y) = -d(y,x)
9 years ago
aravind
dccbf50059
Fixed VS 2010 and option Za bug.
9 years ago
Maksim Shabunin
3cc234588a
Added build warnings in case of macro definition conflicts
9 years ago
Dan
95608b1b84
free -> deallocate
9 years ago
Dan
da93a5527d
Thrust allocator for temporary storage used with thrust algorithms.
9 years ago
Alexander Alekhin
c7bdbef504
ocl: fix OpenGL sharing detection (6052)
...
Apple OpenCL framework hasn't OpenGL sharing extension
9 years ago
Alexander Alekhin
87bbaa2c27
ocl: OpenCL headers are located in "CL" subfolder (3rdparty/include)
9 years ago
Steven Puttemans
cd96df1407
Update mat.hpp
9 years ago
Steven Puttemans
a70c54f2c5
Added suggestions from PR6068
...
As discussed here: https://github.com/Itseez/opencv/pull/6068#issuecomment-180797723
9 years ago
StevenPuttemans
873399705d
add clarification on the acces paramter of the at operator
9 years ago
Suleyman TURKMEN
194b865daf
update documentation of cv::repeat
9 years ago
takacsd
1e0928633d
Add missing implementation to one of the Mat_<_Tp> constructor. ( #5945 )
9 years ago
Rok Mandeljc
029dfbc89d
opencv_core: CUDA: check if __CUDA_ARCH__ is defined before comparing it
...
Changed statements of type "#if __CUDA_ARCH__ >= 200" to
"#if defined __CUDA_ARCH__ && __CUDA_ARCH__ >= 200" in order to
avoid warnings about __CUDA_ARCH__ being undefined.
9 years ago
Pavel Rojtberg
4db6d9986d
also port Rodrigues in Affine to Matx expressions
...
so results are numerically equivalent
9 years ago
Alexander Alekhin
94e4498cfd
Version for 3.1.0 release
9 years ago
Alexander Alekhin
323e24e3ef
change links from samples/python2 to samples/python
9 years ago
Maksim Shabunin
84f37d352f
HAL moved back to core
9 years ago
Ishank gulati
d1ac75cabd
corrected cv::merge documentation
10 years ago
Thomas Dunker
6882c10b45
Extension of the camera distortion model for tilted image sensors (Scheimpflug condition) including test
10 years ago
Alexander Alekhin
b26580cc7b
checkRange fixes
...
1) fix multichannel support
2) remove useless bad_value, read value from original Mat directly
3) add more tests
4) fix docs for cvCeil and checkRange
10 years ago
Dan
76760470f3
Cherry pick failed to grab interface changes.
10 years ago
Suleyman TURKMEN
8418d564a8
Documentation patch for cv::mixChannels
10 years ago
Maksim Shabunin
0e5c710757
Fix documentation warning
10 years ago
Maksim Shabunin
5c5d0e6743
Fixed NEON compilation issue
10 years ago
Maksim Shabunin
b4bcdd10a1
HAL: improvements
...
- added new functions from core module: split, merge, add, sub, mul, div, ...
- added function replacement mechanism
- added example of HAL replacement library
10 years ago
Vladislav Vinogradov
2afb02fcb4
fix BORDER_WRAP processing on Maxwell generation
10 years ago
Maksim Shabunin
e8bf4417ef
New variant of iOS framework building, fixed some warnings for XCode 7.1.1 and cmake 3.3.2
10 years ago
Pavel Rojtberg
c209f795b5
support for NORM_L2SQR in norm(Matx<..>)
10 years ago
Vladislav Vinogradov
39854ceda4
cuda::StreamAccessor::wrapStream and cuda::EventAccessor::wrapEvent
...
to import existed CUDA stream or CUDA event to OpenCV
10 years ago
Chris Kitching
0f8a266787
Make Mat assertion failures more helpful
...
Instead of chaining a bunch of sanity checks together with "&&", let's just have several asserts. That way, when an assert fails, you don't get a monsterous "<huge evil expression>
failed" error, but only the bit you care about, making your life rather a lot easier.
10 years ago
Renato Florentino Garcia
f5b98bea41
Fix behavior of Matx 12 and 16 args constructors.
...
The 12 and 16 arguments Matx constructors differs from all others,
leaving values initialized and requiring the argument number to be equal
to the channels number.
10 years ago
Jan S. (Milania1)
3e0b1f2845
Added example to the documentation for the NormTypes enum (L1, L2, INF)
10 years ago
StevenPuttemans
0a708e4070
adding extra explanation for mask parameter
10 years ago
Dan
1e1f20cfee
Improved consistency.
10 years ago
Pavel Vlasov
89eee6ca99
Fixes for IPP integration:
...
dotProd_16s - disabled for IPP 9.0.0;
filter2D - fixed kernel preparation;
morphology - conditions fix and disabled FilterMin and FilterMax for IPP 9.0.0;
GaussianBlur - disabled for CV_8UC1 due to buffer overflow;
integral - disabled for IPP 9.0.0;
IppAutoBuffer class was added;
10 years ago
Dan Moodie
3d1355efc1
Updated input / output array to support std::vector<cv::cuda::GpuMat>
...
Expanded support for std::vector<cv::cuda::GpuMat>.
Whitespace fix.
10 years ago
Jan S. (Milania1)
3d2a24f61d
Added example to the documentation for the normalize() method
10 years ago
StevenPuttemans
406cfc48c9
adding markers to OpenCV for 2.4 branch
10 years ago
Pavel Vlasov
e837d69f8f
IPPInitSingelton was added to contain IPP related global variables;
...
OPENCV_IPP env var now allows to select IPP architecture level for IPP9+;
IPP initialization logic was unified across modules;
10 years ago
Pavel Vlasov
62854dcc0d
Enables support of IPP 9.0.0;
...
HAVE_IPP_ICV_ONLY will be undefined if OpenCV was linked against ICV packet from IPP9 or greater. ICV9+ packets will be aligned with IPP in OpenCV APIs
This will ease code management between IPP and ICV
10 years ago