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 (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Image<TColor, TOtherDepth> ConvertScale<TOtherDepth>(
	double scale,
	double shift
)
where TOtherDepth : new()
Public Function ConvertScale(Of TOtherDepth As New) ( _
	scale As Double, _
	shift As Double _
) As Image(Of TColor, TOtherDepth)
public:
generic<typename TOtherDepth>
where TOtherDepth : gcnew()
Image<TColor, TOtherDepth>^ ConvertScale(
	double scale, 
	double shift
)

Parameters

scale
Double
The value to be multipled with the pixel
shift
Double
The value to be added to the pixel

Type Parameters

TOtherDepth
The type of depth to convert to

Return Value

Image of the specific depth, val = val * scale + shift

See Also