#include <HxImgFtorNgb2d.h>
Inheritance diagram for HxImgFtorNgb2d::
Public Types | |
typedef HxImgFtorNgbKey | KeyType |
The key type of this class. More... | |
Public Methods | |
HxImgFtorNgb2d () | |
Constructor. More... | |
virtual | ~HxImgFtorNgb2d () |
Destructor. More... | |
virtual HxSizes | minimumBorderSize (HxTagList &tags) const |
Minimum border size. More... | |
Protected Methods | |
virtual void | doIt (DstDataPtrType dstPtr, SrcDataPtrType srcPtr, HxSizes dstSize, HxSizes srcSize, HxTagList &tags, HxImgFtorDescription *=0) |
Calls HxFuncNgbOp2d(DstDataPtrT,SrcDataPtrT,HxSizes,NgbT&) to do the actual work. More... |
|
The key type of this class.
Reimplemented from HxImgFtorI2Cast. |
|
Constructor.
00021 : HxImgFtorI2Cast<DstImgSigT, SrcImgSigT>( 00022 HxImgFtorNgbKey( 00023 HxClassName<DstImgSigT>(), HxClassName<SrcImgSigT>(), 00024 HxClassName<NgbT>())) 00025 { 00026 HxImgFtorRuleBase::instance().setResultType( 00027 HxClassName<DstImgSigT>(), "ngb", 00028 HxClassName<SrcImgSigT>(), HxClassName<NgbT>()); 00029 00030 } |
|
Destructor.
00034 { 00035 } |
|
Minimum border size.
Reimplemented from HxImgFunctor.
00041 { 00042 NgbT ngb(tags); 00043 return ngb.size() / HxSizes(2,2,2); 00044 } |
|
Calls HxFuncNgbOp2d(DstDataPtrT,SrcDataPtrT,HxSizes,NgbT&) to do the actual work.
Reimplemented from HxImgFtorI2Cast.
00052 { 00053 NgbT ngb(tags); 00054 00055 if (description) { 00056 HxString v(typename NgbT::IteratorCategory().toString()); 00057 v += ", "; 00058 v += typename NgbT::PhaseCategory().toString(); 00059 v += ", "; 00060 v += typename NgbT::TransVarianceCategory().toString(); 00061 description->setVariation(v); 00062 } 00063 00064 HxSizes borderSize = getBorderSize( 00065 tags, ngb.size().sup(srcSize - dstSize)/ HxSizes(2,2,2)); 00066 00067 srcPtr.incXYZ(borderSize.x(), borderSize.y(), borderSize.z()); 00068 00069 HxFuncNgbOp2d(dstPtr, srcPtr, dstSize, ngb); 00070 } |