#include <HxImgFunctor.h>
Inheritance diagram for HxImgFunctor::
Public Methods | |
HxImgFunctor (const HxImgFtorKey &) | |
virtual | ~HxImgFunctor () |
virtual STD_OSTREAM & | put (STD_OSTREAM &) const |
virtual HxSizes | minimumBorderSize (HxTagList &tags) const |
some functor instantiations can determine the minimum border size needed to perform the operation correctly. More... | |
virtual bool | probeOp (HxTagList &) const |
some operator instantiations can be queried for pre-condition information. More... | |
Protected Methods | |
HxImgFtorDescription * | getDescription () const |
HxSizes | getBorderSize (HxTagList &tags, HxSizes defSize=HxSizes(0, 0, 0)) const |
Support method that reads a border size from the tag list if set. More... |
|
some functor instantiations can determine the minimum border size needed to perform the operation correctly. MNPO IMPORTANT DESIGN NOTES: this (obsolete) function should be implemented by means of the probeOp MNPO Reimplemented in HxImgFtorKernelNgb2d, and HxImgFtorNgb2d.
00030 { 00031 return HxSizes(0,0,0); 00032 } |
|
some operator instantiations can be queried for pre-condition information.
Reimplemented in HxImgFtorMNpo.
00044 { 00045 return true; 00046 } |
|
Support method that reads a border size from the tag list if set. Returns a border size of (0, 0, 0) otherwise.
00036 { 00037 return HxGetTag(tags, "borderSize", defSize); 00038 } |