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.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public Image<TColor, TOtherDepth> ConvertScale<TOtherDepth>(
double scale,
double shift
)
where TOtherDepth : new()
|
Visual Basic (Declaration) |
---|
Public Function ConvertScale(Of TOtherDepth As New) ( _
scale As Double, _
shift As Double _
) As Image(Of TColor, TOtherDepth) |
Visual C++ |
---|
public:
generic<typename TOtherDepth>
where TOtherDepth : gcnew()
Image<TColor, TOtherDepth>^ ConvertScale(
double scale,
double shift
) |
Type Parameters
- TOtherDepth
- The type of depth to convert to
Return Value
Image of the specific depth, val = val * scale + shift
See Also