Ilya Lavrenov
3eaa8f149b
added cv::intergal to T-API
11 years ago
Ilya Lavrenov
e2b99a32b2
added cv::threshold to T-API
11 years ago
Ilya Lavrenov
474fc887a6
added cv::copyMakeBorder to T-API
11 years ago
Ilya Lavrenov
803672feea
added cv::remap to T-API
11 years ago
Ilya Lavrenov
dcce9d7088
added cv::warpAffine to T-API
11 years ago
Ilya Lavrenov
55af7857b9
added cv::warpPerspective to T-API
11 years ago
Vadim Pisarevsky
7626a8e8de
try to eliminate failure in opencv_imgproc_test
11 years ago
Vadim Pisarevsky
d7f4a223cf
fixed several compile errors/warnings; reacted on the PR comments
11 years ago
Vadim Pisarevsky
6da5d21331
fixed many bugs related to Mat::getUMat(), asynchronous kernel execution etc. Also, played a bit with ocl::cvtColor vs cv::cvtColor performance
11 years ago
Ilya Lavrenov
09795e3265
added cv::resize INTER_AREA to T-API
11 years ago
Ilya Lavrenov
41d046a2db
restored ocl_cvtcolor.cl
11 years ago
Ilya Lavrenov
d2e1318341
RGBA <-> mRGBA
11 years ago
Ilya Lavrenov
f771a0ba81
RGB[A] <-> HLS
11 years ago
Ilya Lavrenov
0b900b54e5
RGB[A] <-> HSV
11 years ago
Ilya Lavrenov
727a5e6df4
BGR5x5 <-> Gray
11 years ago
Ilya Lavrenov
8a23646897
RGB[A] <- RGB5x5
11 years ago
Ilya Lavrenov
81b9c9c104
RGB[A] -> RGB5x5
11 years ago
Ilya Lavrenov
af367c4f85
RGB[A] <-> BGR[A]
11 years ago
Ilya Lavrenov
ab9b883c69
RGB[A] <-> XYZ
11 years ago
Ilya Lavrenov
65ee06eb2b
RGB[A] <-> XYZ
11 years ago
Ilya Lavrenov
506c19616d
YCrCb -> RGB[A]
11 years ago
Ilya Lavrenov
90d62cacc9
fixed cv::cvtColor
11 years ago
Ilya Lavrenov
6679aed61e
fixed ocl::resize (INTER_LINEAR) and added an accuracy test
11 years ago
Jason Newton
88b2fe9dbb
correct upper bound for maximum number of labels for 8-way connectivity
11 years ago
StevenPuttemans
7a8bd31657
Fixed bug in report #3346
11 years ago
Ilya Lavrenov
561a7f5782
fixed kernel compilation in imgproc module
11 years ago
Vadim Pisarevsky
677c7f27cb
fixed failure in Tonemap test
11 years ago
Vadim Pisarevsky
241002384c
fixed some more compile errors
11 years ago
Vadim Pisarevsky
e2bbe7597b
fixed few compile errors and doc build errors
11 years ago
Vadim Pisarevsky
8762ee3f6f
removed unnecessary opencl kernels
11 years ago
Vadim Pisarevsky
d914f20a4c
updated patch to bring in the first functions with "transparent API"
11 years ago
Harris Gasparakis
a1de91a4fd
Cleaned up adaptive bilateral filtering, added support for gaussian interpolation, updated sample and docs
11 years ago
Ilya Lavrenov
e9b54ab844
fixed cv::resize (area fast mode) - it writes outside of array boundary in SSE2 version
11 years ago
Ilya Lavrenov
5546f4d77f
consistency SSE2 and plain versions of convertMaps and remap
11 years ago
Ilya Lavrenov
35d9ce0c0c
fixed warnings
11 years ago
Ilya Lavrenov
036e99d03a
fixed ipp-related warnings
11 years ago
Alexander Smorkalov
1aaeb52a4c
Android NDK r9 support. x64 NDK support fix for MacOS X.
11 years ago
Alexander Smorkalov
ccb48ddee0
Android NDK r9 support. x64 NDK support fix for MacOS X.
11 years ago
John Stowers
51341738ba
Add cv::logPolar, cv::linearPolar, and a python example
11 years ago
Alexander Mordvintsev
0a8d62e5fd
createLineSegmentDetectorPtr -> createLineSegmentDetector
11 years ago
Vadim Pisarevsky
8e7eb79f6e
fixed compile errors and warnings when building master branch with IPP enabled
11 years ago
Ovidiu Parvu
2bf36c312f
Removed static variables which were not read-only and used more function parameters instead.
11 years ago
Ovidiu Parvu
e324446c70
Changed the signature of the minEnclosingTriangle function such that it returns the area automatically. Moreover, the overloaded function was no longer required so it was removed. Sample code, documentation and unit tests were updated correspondingly.
11 years ago
Ovidiu Parvu
52cdae6e2b
Removed the cvMinEnclosingTriangle function since the C API will be deprecated starting with OpenCV 3.0
11 years ago
Ovidiu Parvu
21390d806f
Removed non-ASCII characters from the comments
11 years ago
Ovidiu Parvu
73f476bd4b
Added a namespace and prefixed global variables with "G_" in order to prevent variable shadowing problems.
11 years ago
Ovidiu Parvu
dc64dd7315
Made the following changes after code inspection (min_enclosing_triangle.cpp):
...
* Corrected minor typos in comments/function signatures
* Added new details to copyright statement
* Removed unreferenced macros
* Removed the assert statement which was checking the type of the OutputArray triangle
* When returning results using Mat::copyTo instead of Mat::convertTo
* Changed C-style casts to static_casts
* Added division by zero check to distanceFromPointToLine() function
* Updated reference webpages last access dates
* Moved the declaration of the gammaOfA variable outside the while loop in moveAIfLowAndBIfHigh() function for efficiency reasons
11 years ago
Ovidiu Parvu
130b4d8e26
Changed the return type of cvMinEnclosingTriangle to CVAPI(void). Added the implementation of the function to the min_enclosing_triangle.cpp source file.
11 years ago
Ovidiu Parvu
8bada4c751
Overloaded the minEnclosingTriangle function such that there is an alternative function with the same name which does not require the output parameter ``area''.
...
Changed the sample source file minarea.cpp to use the overloaded version of the function.
Updated some comments in the min_enclosing_triangle.cpp source file.
11 years ago
Ovidiu Parvu
0ed2f6201d
Optimised one assert statement in the min_enclosing_triangle.cpp file. Added the minEnclosingTriangle functionality to the existing minarea.cpp sample file.
11 years ago