OpenCV
4.10.0
Open Source Computer Vision
|
non-copyable smart CUDA texture object More...
#include <opencv2/cudev/ptr2d/texture.hpp>
Public Member Functions | |
__host__ | UniqueTexture () noexcept |
__host__ | UniqueTexture (const int rows, const int cols, T *data, const size_t step, const bool normalizedCoords=false, const cudaTextureFilterMode filterMode=cudaFilterModePoint, const cudaTextureAddressMode addressMode=cudaAddressModeClamp, const cudaTextureReadMode readMode=cudaReadModeElementType) |
__host__ | UniqueTexture (const size_t sizeInBytes, T *data, const bool normalizedCoords=false, const cudaTextureFilterMode filterMode=cudaFilterModePoint, const cudaTextureAddressMode addressMode=cudaAddressModeClamp, const cudaTextureReadMode readMode=cudaReadModeElementType) |
__host__ | UniqueTexture (UniqueTexture &&other) noexcept |
__host__ | UniqueTexture (UniqueTexture &)=delete |
__host__ | ~UniqueTexture () |
__host__ cudaTextureObject_t | get () const noexcept |
__host__ | operator bool () const noexcept |
__host__ UniqueTexture & | operator= (const UniqueTexture &)=delete |
__host__ UniqueTexture & | operator= (UniqueTexture &&other) noexcept |
non-copyable smart CUDA texture object
UniqueTexture is a smart non-sharable wrapper for a cudaTextureObject_t handle which ensures that the handle is destroyed after use.