An error occurred while fetching participants.
Fix assert in DotProductImageFilter
Compare changes
In MR !427 (merged) was added an assert on the size of two vectors :
assert(in.Size() == m.Size());
but m
does not exist ... It should be:
assert(in.Size() == m_Vector.Size());
Dashboard was green because the branch was compiled in release mode, without the assert.
The copyright owner is CNES and has signed the ORFEO ToolBox Contributor License Agreement.