Click or drag to resize
CudaInvokeCopyMakeBorder Method
http://www.emgu.com
Copies a 2D array to a larger destination array and pads borders with the given constant.

Namespace: Emgu.CV.Cuda
Assembly: Emgu.CV.Cuda (in Emgu.CV.Cuda.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static void CopyMakeBorder(
	IInputArray src,
	IOutputArray dst,
	int top,
	int bottom,
	int left,
	int right,
	BorderType borderType,
	MCvScalar value = null,
	Stream stream = null
)

Parameters

src
Type: Emgu.CVIInputArray
Source image.
dst
Type: Emgu.CVIOutputArray
Destination image with the same type as src. The size is Size(src.cols+left+right, src.rows+top+bottom).
top
Type: SystemInt32
Number of pixels in each direction from the source image rectangle to extrapolate.
bottom
Type: SystemInt32
Number of pixels in each direction from the source image rectangle to extrapolate.
left
Type: SystemInt32
Number of pixels in each direction from the source image rectangle to extrapolate.
right
Type: SystemInt32
Number of pixels in each direction from the source image rectangle to extrapolate.
borderType
Type: Emgu.CV.CvEnumBorderType
Border Type
value (Optional)
Type: Emgu.CV.StructureMCvScalar
Border value.
stream (Optional)
Type: Emgu.CV.CudaStream
Use a Stream to call the function asynchronously (non-blocking) or null to call the function synchronously (blocking).
See Also