Accord.Imaging.Filters.QuadrilateralTransformationBilinear.QuadrilateralTransformationBilinear C# (CSharp) Method

QuadrilateralTransformationBilinear() public method

Initializes a new instance of the QuadrilateralTransformationBilinear class.

This constructor sets AutomaticSizeCalculaton to , which means that destination image will have width and height automatically calculated based on SourceCorners property.

public QuadrilateralTransformationBilinear ( List sourceCorners ) : System
sourceCorners List Corners of the source quadrilateral area.
return System
        public QuadrilateralTransformationBilinear( List<IntPoint> sourceCorners )
        {
            baseFilter = new SimpleQuadrilateralTransformation( sourceCorners );
            baseFilter.UseInterpolation = true;
        }

Same methods

QuadrilateralTransformationBilinear::QuadrilateralTransformationBilinear ( List sourceCorners, int newWidth, int newHeight ) : System