C# Class ImageProcessor.Imaging.Filters.Photo.MatrixFilterBase

The matrix filter base contains equality methods.
Inheritance: IMatrixFilter
ファイルを表示 Open project: JimBobSquarePants/ImageProcessor

Public Methods

Method Description
Equals ( object obj ) : bool

Determines whether the specified IMatrixFilter, is equal to this instance.

GetHashCode ( ) : int

Returns the hash code for this instance.

TransformImage ( Image image, Image newImage ) : Bitmap

Processes the image.

Method Details

Equals() public method

Determines whether the specified IMatrixFilter, is equal to this instance.
public Equals ( object obj ) : bool
obj object The to compare with this instance.
return bool

GetHashCode() public method

Returns the hash code for this instance.
public GetHashCode ( ) : int
return int

TransformImage() public abstract method

Processes the image.
public abstract TransformImage ( Image image, Image newImage ) : Bitmap
image System.Drawing.Image The current image to process
newImage System.Drawing.Image The new Image to return
return System.Drawing.Bitmap