I'm confused with the set function of AddPixelAccessor. It subtracts a value from the input rather than adding it. <div><br></div><div>Relevant code:</div><div><div>inline void Set( InternalType & output, const ExternalType & input ) const</div>
<div> { output = static_cast<InternalType>( input - m_Value ); }</div></div><div><br></div><div>Shouldn't it add m_Value to the input? Or is there something else going on?</div><div><br></div><div>-Robert</div>
<div><br></div>