insight-users,<br><br>What is the proper filter type to subclass for an operation like this:<br><br>sum = 0<br><br>for each pixel p in an image<br>    sum = sum + f(p)<br><br>return sum<br><br>The result of this operation is the sum, not another image, so making it a subclass of itk::ImageSource or itk::ImageToImageFilter or itk::InPlaceImageFilter doesn&#39;t seem right. The class itk::ProjectionImageFilter is closer, but it is still a subclass of itk::ImageSource, and I am interested in projecting all the way to a scalar not another image.<br>
<br>Currently I am using itk::InPlaceImageFilter, telling the filter to operate in-place because I wanted to use itk::ImageSource::ThreadedGenerateData and friends.<br><br>Such a class is probably there and I&#39;m just not seeing it.<br>

<br>
Brady<br>