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)
Syntaxpublic 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
)
member ConvertScale :
scale : float *
shift : float -> Image<'TColor, 'TOtherDepth> when '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