Method | Description | |
---|---|---|
Dispose ( ) : void |
Disposes the object and frees resources for the Garbage Collector.
|
|
Equals ( object obj ) : bool |
Determines whether the specified T:System.Object is equal to the current T:System.Object.
|
|
FastBitmap ( Image bitmap ) : System |
Initializes a new instance of the FastBitmap class.
|
|
FastBitmap ( Image bitmap, bool computeIntegrals ) : System |
Initializes a new instance of the FastBitmap class.
|
|
FastBitmap ( Image bitmap, bool computeIntegrals, bool computeTilted ) : System |
Initializes a new instance of the FastBitmap class.
|
|
GetHashCode ( ) : int |
Serves as a hash function for a particular type.
|
|
GetPixel ( int x, int y ) : Color |
Gets the color at the specified pixel of the System.Drawing.Bitmap.
|
|
GetSum ( int x, int y, int rectangleWidth, int rectangleHeight ) : long |
Gets the sum of the pixels in a rectangle of the Integral image.
|
|
GetSum2 ( int x, int y, int rectangleWidth, int rectangleHeight ) : long |
Gets the sum of the squared pixels in a rectangle of the Integral image.
|
|
GetSumT ( int x, int y, int rectangleWidth, int rectangleHeight ) : long |
Gets the sum of the pixels in a tilted rectangle of the Integral image.
|
|
SetPixel ( int x, int y, Color color ) : void |
Sets the color of the specified pixel of the System.Drawing.Bitmap.
|
Method | Description | |
---|---|---|
Dispose ( bool disposing ) : void |
Disposes the object and frees resources for the Garbage Collector.
|
Method | Description | |
---|---|---|
CalculateIntegrals ( ) : void |
Computes all possible rectangular areas in the image.
|
|
LockBitmap ( ) : void |
Locks the bitmap into system memory.
|
|
UnlockBitmap ( ) : void |
Unlocks the bitmap from system memory.
|
|
this ( int x, int y ) : Color32* |
Gets the pixel data for the given position.
|
protected Dispose ( bool disposing ) : void | ||
disposing | bool | If true, the object gets disposed. |
return | void |
public Equals ( object obj ) : bool | ||
obj | object | The object to compare with the current object. |
return | bool |
public FastBitmap ( Image bitmap ) : System | ||
bitmap | Image | The input bitmap. |
return | System |
public FastBitmap ( Image bitmap, bool computeIntegrals ) : System | ||
bitmap | Image | The input bitmap. |
computeIntegrals | bool | /// Whether to compute integral rectangles. /// |
return | System |
public FastBitmap ( Image bitmap, bool computeIntegrals, bool computeTilted ) : System | ||
bitmap | Image | The input bitmap. |
computeIntegrals | bool | /// Whether to compute integral rectangles. /// |
computeTilted | bool | /// Whether to compute tilted integral rectangles. /// |
return | System |
public GetPixel ( int x, int y ) : Color | ||
x | int | The x-coordinate of the pixel to retrieve. |
y | int | The y-coordinate of the pixel to retrieve. |
return | Color |
public GetSum ( int x, int y, int rectangleWidth, int rectangleHeight ) : long | ||
x | int | The horizontal position of the rectangle |
y | int | The vertical position of the rectangle |
rectangleWidth | int | The rectangle's width |
rectangleHeight | int | The rectangle's height |
return | long |
public GetSum2 ( int x, int y, int rectangleWidth, int rectangleHeight ) : long | ||
x | int | The horizontal position of the rectangle |
y | int | The vertical position of the rectangle |
rectangleWidth | int | The rectangle's width |
rectangleHeight | int | The rectangle's height |
return | long |
public GetSumT ( int x, int y, int rectangleWidth, int rectangleHeight ) : long | ||
x | int | The horizontal position of the rectangle |
y | int | The vertical position of the rectangle |
rectangleWidth | int | The rectangle's width |
rectangleHeight | int | The rectangle's height |
return | long |
public SetPixel ( int x, int y, Color color ) : void | ||
x | int | The x-coordinate of the pixel to set. |
y | int | The y-coordinate of the pixel to set. |
color | Color |
/// A |
return | void |