AForge.Imaging.Filters.SimpleQuadrilateralTransformation.SimpleQuadrilateralTransformation C# (CSharp) Метод

SimpleQuadrilateralTransformation() публичный Метод

Initializes a new instance of the SimpleQuadrilateralTransformation class.

This constructor sets AutomaticSizeCalculaton to , which means that destination image will have width and height as specified by user.

public SimpleQuadrilateralTransformation ( List sourceQuadrilateral, int newWidth, int newHeight ) : System
sourceQuadrilateral List Corners of the source quadrilateral area.
newWidth int Width of the new transformed image.
newHeight int Height of the new transformed image.
Результат System
        public SimpleQuadrilateralTransformation( List<IntPoint> sourceQuadrilateral, int newWidth, int newHeight )
            : this( )
        {
            this.automaticSizeCalculaton = false;
            this.sourceQuadrilateral = sourceQuadrilateral;
            this.newWidth  = newWidth;
            this.newHeight = newHeight;
        }

Same methods

SimpleQuadrilateralTransformation::SimpleQuadrilateralTransformation ( ) : System
SimpleQuadrilateralTransformation::SimpleQuadrilateralTransformation ( List sourceQuadrilateral ) : System