#include "HxImageRep.h"
Go to the source code of this file.
Functions | |
HxImageRep L_HXIMAGEREP | HxSubSat (HxImageRep im1, HxImageRep im2) |
Saturated subtraction. More... |
|
Saturated subtraction. The function computes the saturated subtraction of all corresponding pixels in the input images via a binary pixel operation.
00130 { 00131 // call HxImageRep member function to do the image processing 00132 // std::cout << im1.signature() << std::endl; 00133 // std::cout << im2.signature() << std::endl; 00134 00135 HxTagList tl; 00136 HxAddTag(tl,"minSat", 0);//HxPixMin(im1).HxScalarIntValue().x() ); 00137 00138 00139 return im1.binaryPixOp(im2, "subSat", tl); 00140 } |