UnaryPixOp(Out, In, PixOp) { foreach i, o in In, Out Out(o) = PixOp(In(i)); }
The requirements on the UpoT template parameter expressed as class definition are:
template<class DstValT, class SrcValT> class UpoT { public: UpoT(HxTagList&); DstValT doIt(const SrcValT& x); static HxString className(); };
The function doIt will be called with 1 parameter of type SrcImgSigT::ArithType, and the result will be stored in a variable of type DstImgSigT::ArithType before being written to the destination image.