00001
00002
00003
00004
00005
00006
00007
00008
00011 #ifndef HxFuncBorderOp_h
00012 #define HxFuncBorderOp_h
00013
00014 #include "HxBorderType.h"
00015
00016
00019 template <class DataPtrT>
00020 void
00021 HxFuncBorderMirror2d(DataPtrT imgPtr, HxSizes imgSize, HxSizes borderSize);
00022
00023
00026 template <class DataPtrT>
00027 void
00028 HxFuncBorderMirror3d(DataPtrT imgPtr, HxSizes imgSize, HxSizes borderSize);
00029
00030
00033 template <class DataPtrT, class ArithT>
00034 void
00035 HxFuncBorderConstant2d(
00036 DataPtrT imgPtr, HxSizes imgSize, HxSizes borderSize, ArithT value);
00037
00038
00041 template <class DataPtrT, class ArithT>
00042 void
00043 HxFuncBorderConstant3d(
00044 DataPtrT imgPtr, HxSizes imgSize, HxSizes borderSize, ArithT value);
00045
00046
00049 template <class DataPtrT>
00050 void
00051 HxFuncBorderPropagate2d(DataPtrT imgPtr, HxSizes imgSize, HxSizes borderSize);
00052
00053
00061 template <class DataPtrT, class ArithT>
00062 void
00063 HxFuncBorderPropagateNormalized2d(
00064 DataPtrT imgPtr, HxSizes imgSize, HxSizes borderSize, ArithT normLeft, ArithT normRight, ArithT normTop, ArithT normBottom);
00065
00066
00069 template <class DataPtrT>
00070 void
00071 HxFuncBorderPropagate3d(DataPtrT imgPtr, HxSizes imgSize, HxSizes borderSize);
00072
00073 #ifdef INC_TEMPLATE_SRC
00074 #include "HxFuncBorderOp.c"
00075 #endif
00076
00077 #endif