Maksim Shabunin
b4050c775e
Updated sample files documentation inclusions
10 years ago
Maksim Shabunin
d01bedbc61
Removed Sphinx documentation files
10 years ago
Vladislav Vinogradov
f36546dbd2
improve error reporting in _InputArray methods
10 years ago
Vladislav Vinogradov
e7e0da0153
fix GpuMat::swap method:
...
add swap instruction for allocator field
10 years ago
Vladislav Vinogradov
b33f3bb2cc
refactor CV_CUDA_TEST_MAIN, use CV_TEST_MAIN for it
...
use CV_CUDA_TEST_MAIN for opencv_test_core to initialize CUDA
device information
10 years ago
Vladislav Vinogradov
f054d6316a
add cuda::HostMem::getAllocator method
...
it allows to use cudaHostAlloc methods for cv::Mat objects
10 years ago
Vladislav Vinogradov
2f8e1798ca
add more FeatureSet constants
10 years ago
Vladislav Vinogradov
1be1a28920
move CUDA core tests to core module
10 years ago
Vladislav Vinogradov
53862687d5
rename CudaMem -> HostMem to better reflect its purpose
10 years ago
Vladislav Vinogradov
9210d8e542
move allocMatFromBuf function to farneback.cpp:
...
* it is the only place, where it is used
* no need to make this function public
10 years ago
Vladislav Vinogradov
1d82aecf45
minor reorganization for CUDA doxygen groups:
...
move main CUDA group to modules/core/cuda.hpp
10 years ago
Vladislav Vinogradov
b5ab82fdbd
mark old CUDA device layer as deprecated and remove it from doxygen documentation
...
add a note to use new cudev module as a replacement
10 years ago
Vladislav Vinogradov
68e08bbecd
fix null stream initialization for multi-gpu systems
10 years ago
Vladislav Vinogradov
05d40946f3
move StackAllocator to cpp file
...
it is internal class, no need to export it
10 years ago
Vladislav Vinogradov
7ed38b97c3
fix cuda::BufferPool deinitialization
...
The deinitialization of BufferPool internal objects is controled by global
object, but it depends on other global objects, which leads to errors
caused by undefined deinitialization order of global objects.
I merge global objects initialization into single class, which performs
initialization and deinitialization in correct order.
10 years ago
Maksim Shabunin
c485aee464
Included c-headers for better 2.4 compatibility
10 years ago
StevenPuttemans
edb608d206
fix documentation bug 2432
10 years ago
Chuanbo Weng
2d8c89c40b
Remove unnecessary kercn limitation of 4.
...
When accessing global memory by DWORD4, memory bandwidth
can be fully utilized on Intel platform. This patch will
make more image format(e.g. 8UC4) be processed in DWORD4
by work-item. After applying this patch, 3 subcase of
./opencv_perf_core --gtest_filter=OCL_RepeatFixture_Repeat.Repeat/*
can be speedup on HD4000 graphics card with Beignet:
OCL_RepeatFixture_Repeat.Repeat/2, 64% improvement.
OCL_RepeatFixture_Repeat.Repeat/6, 50% improvement.
OCL_RepeatFixture_Repeat.Repeat/8, 56% improvement.
Signed-off-by: Chuanbo Weng <chuanbo.weng@intel.com>
10 years ago
Alexander Karsakov
bcca34bc96
Fixed typo in description of Rect operations
10 years ago
Maksim Shabunin
6d282ddf72
Documentation: removed mention of Mat(IplImage*) constructor
10 years ago
Maksim Shabunin
03e213ccae
Doxygen documentation: BiB references and fixes
10 years ago
Maksim Shabunin
1523fdcc1c
Doxygen documentation: more fixes and cleanups
10 years ago
Maksim Shabunin
6dcafe0c2d
Doxygen documentation: cuda submodules reorganized
10 years ago
Maksim Shabunin
ceb6e8bd94
Doxygen documentation: cuda
10 years ago
Dmitry-Me
4ff8a3ad92
Fix incorrect size computation
10 years ago
Maksim Shabunin
555fdf893a
Documenting imgproc module
...
- disabled doxygen tree
- enabled doxygen enum listing
- added imgproc reference to main page
- enabled BiB support
- chenged doxygen root page format
10 years ago
Maksim Shabunin
6aa7a86ae9
Doxygen documentation for core module
10 years ago
Alexander Alekhin
ae4cb571ab
Set status to beta
10 years ago
Vadim Pisarevsky
d58cadc1ea
moved cv::partition from private.hpp to operations.hpp, to expose the function to users
10 years ago
Vadim Pisarevsky
7c8789dc12
fixed my_umat(roi).clone() test by disabling poorly aligned ROI's. Real fix of the problem will require a separate branch in UMat::copyTo().
10 years ago
Alexander Karsakov
462c3c25a9
Removed incorrect using of rootn() and powr() in ocl_pow
10 years ago
Alexander Alekhin
4eb16122c0
ocl: change processing of OpenCL failures
...
disable "unwanted" messages
10 years ago
Alexander Alekhin
1c9f590f0d
IPPICV: disable NormDiff_L1_16s_C1R for IPP/ICV 8.2/8.2.1
10 years ago
berak
c2cb3b515d
support older gcc versions
10 years ago
Ilya Lavrenov
5ca25ab8f0
cv::pow (integer power)
10 years ago
Ilya Lavrenov
ccdc71286c
cv::polarToCart
10 years ago
Ilya Lavrenov
d5f006eee5
cv::magnitude; cv::corner**
10 years ago
Ilya Lavrenov
fb97273b3c
cv::phase; cv::cartToPolar
10 years ago
ElenaGvozdeva
d88fdd0378
use LOCAL_SIZE+1
10 years ago
ElenaGvozdeva
65b8a1cb37
Some small fixes
10 years ago
Elena Gvozdeva
c5a2879ce0
use vectors
10 years ago
Elena Gvozdeva
2d89df1804
use local memory
10 years ago
Elena Gvozdeva
d78bc3c321
naive implementation
10 years ago
vbystricky
8466911ad0
Move _dst.create() to the begining of scaleAdd function
10 years ago
Alexander Karsakov
237cb93143
Added extra checks to ocl::Image2D
10 years ago
Alexander Alekhin
579a7fff6d
ocl: restore clFinish() in unmap() for AMD devices
...
This reverts commit 7d91b8efcd
.
10 years ago
Alexander Karsakov
3a263c6326
Added tests for Image2D
10 years ago
Maksim Shabunin
ba5f343c38
Basic doxygen documentation support
...
- updated existing Doxyfile.in
- added corresponding cmake instructions
- added some specific files (layout, icon)
- clean existing doxygen warnings
10 years ago
vbystricky
a8aa6381d9
Optimize OpenCL version of conversScaleAbs function
10 years ago
ElenaGvozdeva
070e5ec042
Changed predictOptimalVectorWidth function, now it is possible to choose vector size.
10 years ago