#include <bfxpixop.h>
Inheritance diagram for BfxThresholdPixelOp:
Protected Member Functions | |
virtual BOOL | IsPixelReallyInRegion (INT32 x, INT32 y) |
To be overriden by derived classes. | |
Private Member Functions | |
CC_DECLARE_DYNCREATE (BfxThresholdPixelOp) |
Definition at line 417 of file bfxpixop.h.
|
|
|
To be overriden by derived classes.
Reimplemented from BfxPixelOp. Definition at line 895 of file bfxpixop.cpp. 00896 { 00897 DWORD Pixel = y*Width+x; 00898 00899 return ( (IntegerSquare( ((INT32)(((AluPix32 *) pB)[Pixel].R)) - ((INT32)(((AluPix32 *) pT)[Pixel].R))) 00900 + IntegerSquare( ((INT32)(((AluPix32 *) pB)[Pixel].G)) - ((INT32)(((AluPix32 *) pT)[Pixel].G))) 00901 + IntegerSquare( ((INT32)(((AluPix32 *) pB)[Pixel].B)) - ((INT32)(((AluPix32 *) pT)[Pixel].B))) ) >= Value ); 00902 }
|