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

BaseResizeFilter() protected method

Initializes a new instance of the BaseResizeFilter class.
protected BaseResizeFilter ( int newWidth, int newHeight ) : System
newWidth int Width of the new resized image.
newHeight int Height of the new resize image.
return System
        protected BaseResizeFilter( int newWidth, int newHeight )
        {
            this.newWidth  = newWidth;
            this.newHeight = newHeight;
        }