Table of Contents

Enum UMatUsageFlags

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

cv::UMatUsageFlags

[Flags]
public enum UMatUsageFlags

Fields

DeviceMemory = 2

Allocate device (GPU) memory. This flag is experimental; the buffer allocation policy is platform and usage specific.

HostMemory = 1

Allocate host (CPU) memory. This flag is experimental; the buffer allocation policy is platform and usage specific.

None = 0

Default allocation policy. Unlike the other flags, this one is not experimental.

SharedMemory = 4

Allocate memory shared between host and device. This flag is experimental and, for the OpenCL allocator, depends on OpenCV's optional OpenCL SVM integration. It is not equal to HostMemory | DeviceMemory.