Enum UMatUsageFlags
- Namespace
- OpenCvSharp
- Assembly
- OpenCvSharp.dll
cv::UMatUsageFlags
[Flags]
public enum UMatUsageFlags
Fields
DeviceMemory = 2Allocate device (GPU) memory. This flag is experimental; the buffer allocation policy is platform and usage specific.
HostMemory = 1Allocate host (CPU) memory. This flag is experimental; the buffer allocation policy is platform and usage specific.
None = 0Default allocation policy. Unlike the other flags, this one is not experimental.
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.