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

Rectification() public method

Constructs a new Blend filter.
public Rectification ( MatrixH homography ) : System.Collections.Generic
homography MatrixH The homography matrix mapping a second image to the overlay image.
return System.Collections.Generic
        public Rectification(MatrixH homography)
        {
            this.homography = homography;
            formatTranslations[PixelFormat.Format8bppIndexed] = PixelFormat.Format8bppIndexed;
            formatTranslations[PixelFormat.Format24bppRgb] = PixelFormat.Format24bppRgb;
            formatTranslations[PixelFormat.Format32bppArgb] = PixelFormat.Format32bppArgb;
        }

Same methods

Rectification::Rectification ( double homography ) : System.Collections.Generic