Click or drag to resize

MatrixTDepthConvertTOtherDepth Method

http://www.emgu.com
Convert this matrix to different depth

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntax
public Matrix<TOtherDepth> Convert<TOtherDepth>(
	double scale = 1,
	double shift = 0
)
where TOtherDepth : new()

Parameters

scale (Optional)
Type: SystemDouble
the scaling factor to apply during conversion (defaults to 1.0 -- no scaling)
shift (Optional)
Type: SystemDouble
the shift factor to apply during conversion (defaults to 0.0 -- no shifting)

Type Parameters

TOtherDepth
The depth type to convert to

Return Value

Type: MatrixTOtherDepth
Matrix of different depth
See Also