CogImage8Interlaced ScaleImage Method Cognex VisionPro 9.20
Creates a scaled version of this image. The dimensions of the returned image (in pixels) are specified by the width and height arguments. The scaling is performed using bilinear interpolation.

Namespace: Cognex.VisionPro
Assembly: Cognex.VisionPro.Core (in Cognex.VisionPro.Core.dll) Version: 80.0.0.0
Syntax

public override ICogImage ScaleImage(
	int width,
	int height
)

Parameters

width
Type: System Int32
Width in pixels of the desired output image.
height
Type: System Int32
Height in pixels of the desired output image.

Return Value

Type: ICogImage
The scaled image.

Implements

ICogImage ScaleImage(Int32, Int32)
Remarks

This method completely ignores the interlaced characteristics of this image. As a result, the output image is only suitable for display and should NOT be used for analysis.
See Also