#include <HxImgFtorRuleBase.h>
Public Methods | |
HxIfRbPair () | |
Constructor. More... | |
HxIfRbPair (HxImageSignature s, bool f=true) | |
Constructor. More... | |
operator int () | |
Cast found to an integer. More... | |
operator HxImageSignature () | |
Cast result to an HxImageSignature. More... | |
Public Attributes | |
bool | found |
Was it really found? More... | |
HxImageSignature | sig |
The result. More... |
The result is basically an HxImageSignature annotaed with a flag "found" telling whether the result was actually found in the rule base or was constructed from a default image signature.
|
Constructor.
00027 {} |
|
Constructor.
|
|
Cast found to an integer.
00039 { return found ? 1 : 0; } |
|
Cast result to an HxImageSignature.
00041 { return sig; } |
|
Was it really found?
|
|
The result.
|