Click or drag to resize

ImageTColor, TDepthConvertScaleTOtherDepth Method

http://www.emgu.com
Convert the current image to the specific depth, at the same time scale and shift the values of the pixel

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public Image<TColor, TOtherDepth> ConvertScale<TOtherDepth>(
	double scale,
	double shift
)
where TOtherDepth : new()

Parameters

scale
Type: SystemDouble
The value to be multiplied with the pixel
shift
Type: SystemDouble
The value to be added to the pixel

Type Parameters

TOtherDepth
The type of depth to convert to

Return Value

Type: ImageTColor, TOtherDepth
Image of the specific depth, val = val * scale + shift
See Also