I&#39;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 &amp; output, const ExternalType &amp; input ) const</div>
<div>    { output = static_cast&lt;InternalType&gt;( input - m_Value ); }</div></div><div><br></div><div>Shouldn&#39;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>