Updated by Kirill Kornyakov almost 12 years ago

There is an mistypo in line 75 of "freak_demo.cpp" in OpenCV 2.4.3. It is written:

<pre>
if( !imgA.data ) {
</pre>


and it should be:

<pre>
if( !imgB.data ) {
</pre>


I think..:-)

Back