Roman Donchenko
|
4692d4b36e
|
Fix bug: cv::String would break if assigned to itself.
|
12 years ago |
Alexander Smorkalov
|
e241c14b94
|
OpenCV Library and Manager version incremented.
OpenCV Version 2.4.6;
OpenCV Manager Version 2.8;
Doc fixes.
|
12 years ago |
Vladislav Vinogradov
|
3c32fc1329
|
removed obsolete methods from gpu::Stream
|
12 years ago |
Roman Donchenko
|
c16316c4b4
|
Replaced the semi-public CV_PARALLEL_FRAMEWORK macro with a function.
That way, core/internal.hpp doesn't have to depend on cvconfig.h, which we
don't ship.
|
12 years ago |
Vladislav Vinogradov
|
98bd401534
|
fix gpu::DeviceInfo compilation under linux
glibc defines major and minor macros
which conflict with gpu::DeviceInfo methods with the same name
|
12 years ago |
peng xiao
|
e129638263
|
Add a workaround to interpolate between oclMat and Input/OutputArray.
|
12 years ago |
Roman Donchenko
|
24d84a45b1
|
Made tests record in the XML output which parallel framework was used.
|
12 years ago |
Alexander Smorkalov
|
8f7ba03ed2
|
Some fixes for incorrectly documented parameters identified by rst_parser.py (Bug #1205)
|
12 years ago |
Vikas Dhiman
|
dbc9b4db0c
|
support elementwise division for Matx with "/" operator.
|
12 years ago |
Vladislav Vinogradov
|
564fd21e87
|
fixed documentation build
|
12 years ago |
Vladislav Vinogradov
|
439c3574ed
|
renamed gpu_private.hpp to private.gpu.hpp
|
12 years ago |
Vladislav Vinogradov
|
1db4afac6a
|
made createContinuous & ensureSizeIsEnough generic (OutputArray support)
|
12 years ago |
Vladislav Vinogradov
|
f17b836d24
|
added Event class (wrapper for cudaEvent)
|
12 years ago |
Vladislav Vinogradov
|
2dab93c2e8
|
refactored gpu info structures (TargetArchs and DeviceInfo)
now DeviceInfo provides full information about device (from cudaDeviceProp)
|
12 years ago |
Vladislav Vinogradov
|
76f4b02b06
|
refactored gpu::Stream (minor fixes)
|
12 years ago |
Vladislav Vinogradov
|
a52af84dcf
|
refactored CudaMem (now alloc type assign only in constructor)
|
12 years ago |
Vladislav Vinogradov
|
69be49bac1
|
refactored GpuMat:
* switch to InputArray/OutputArray
* add Stream support
|
12 years ago |
Vladislav Vinogradov
|
db1178b5df
|
moved GpuMat implementation to separate file
|
12 years ago |
Vladislav Vinogradov
|
2153a14872
|
moved inline implementation to separate file
|
12 years ago |
Vladislav Vinogradov
|
6994a02c15
|
added Stream support to ogl::Buffer
|
12 years ago |
Vladislav Vinogradov
|
649737b6a8
|
removed obsolete DevMem2D class
|
12 years ago |
Vladislav Vinogradov
|
4c9773d55f
|
renamed gpu headers (made it more consistent)
|
12 years ago |
Vladislav Vinogradov
|
6c253a41c2
|
added CudaMem support to Input/Output arrays
|
12 years ago |
Vladislav Vinogradov
|
2fae1d9507
|
removed ogl::Texture2D support from InputArray
|
12 years ago |
berak
|
610e29fa31
|
restored utility.hpp
|
12 years ago |
berak
|
50e27ffc37
|
added initialization of Moments.nu** params in completeMomentState( Moments* moments )
|
12 years ago |
Vladislav Vinogradov
|
14e4b3adde
|
rewrite core/cuda/vec_math.hpp file
old version isn't compiled with CUDA 5.5
new version doesn't depend on functional.hpp
|
12 years ago |
Vladislav Vinogradov
|
bf7c1c6c25
|
fixed NPP error constants usage
|
12 years ago |
Vladislav Vinogradov
|
3eeaa9189c
|
Revert "Revert "Merge pull request #836 from jet47:gpu-modules""
|
12 years ago |
Roman Donchenko
|
8a4090fe3f
|
Make AutoLock noncopyable (it would break on copying, anyway).
|
12 years ago |
Andrey Kamaev
|
b8ed00bd64
|
Compile OpenCV with GCC visibility set to hidden
|
12 years ago |
Andrey Kamaev
|
416fb50594
|
Revert "Merge pull request #836 from jet47:gpu-modules"
This reverts commit fba72cb60d , reversing
changes made to 02131ffb62 .
|
12 years ago |
Vladislav Vinogradov
|
6d735c11c6
|
removed const qualifier (it produces warnings)
|
12 years ago |
Vladislav Vinogradov
|
43d5e2d8b4
|
removed gpu BORDER_* constants
|
12 years ago |
Vladislav Vinogradov
|
31c8b527c6
|
gpuarithm module for arithmetics operations on matrices
|
12 years ago |
Andrey Kamaev
|
b2ba8b9969
|
Drop old python interface
|
12 years ago |
Andrey Kamaev
|
8406312571
|
Remove C API from OpenCL module
|
12 years ago |
Andrey Kamaev
|
4296b456e5
|
Add missed constants for reduce operation
|
12 years ago |
Gurpinder Singh Sandhu
|
36aad46fe1
|
changed reinterpret_cast to static_cast
This issue seem to be lingering around for quite some time
https://github.com/Itseez/opencv/pull/639
http://code.opencv.org/issues/2819
|
12 years ago |
Roman Donchenko
|
484607fb6f
|
Backported RNG_MT19937 from master.
|
12 years ago |
Roman Donchenko
|
f64d512774
|
Backported globbing from master.
|
12 years ago |
Andrey Kamaev
|
c98c246fc2
|
Move border type constants and Moments class to core module
|
12 years ago |
Andrey Kamaev
|
b0e6606b98
|
Cleanup core module API
* Drop some low level API
* Remove outdated overloads
* Utilize Input/OutputArray
|
12 years ago |
Andrey Kamaev
|
3107f79cea
|
Cast to unsigned inside CV_XADD to quiet nvcc
|
12 years ago |
Vladislav Vinogradov
|
a783f5c260
|
removed blank lines at then end of file
|
12 years ago |
Vladislav Vinogradov
|
b50090f850
|
restore cudaSafeCall
|
12 years ago |
Vladislav Vinogradov
|
6e28e67741
|
removed static_check.hpp
|
12 years ago |
Vladislav Vinogradov
|
910ef57109
|
renamed cuda namespace to cudev
|
12 years ago |
Vladislav Vinogradov
|
193e857392
|
removed cu_safe_call.h and cu_safe_call.cpp
|
12 years ago |
Vladislav Vinogradov
|
204a19b431
|
moved common gpu utility functionality to gpu_private.hpp
|
12 years ago |