CudaConvolution Constructor |
http://www.emgu.com
Create a Cuda Convolution object.
Namespace:
Emgu.CV.Cuda
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
Syntaxpublic CudaConvolution(
Size userBlockSize = null
)
Public Sub New (
Optional userBlockSize As Size = Nothing
)
public:
CudaConvolution(
Size userBlockSize = nullptr
)
new :
?userBlockSize : Size
(* Defaults:
let _userBlockSize = defaultArg userBlockSize null
*)
-> CudaConvolution
Parameters
- userBlockSize (Optional)
- Type: System.DrawingSize
Block size. If you leave default value Size(0,0) then automatic estimation of block size will be used (which is optimized for speed). By varying user_block_size you can reduce memory requirements at the cost of speed.
See Also