Skip to content
Snippets Groups Projects

Fix assert in DotProductImageFilter

Merged Cédric Traizet requested to merge fix_dotProductImageFilter into develop
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -58,7 +58,7 @@ public:
OutputType operator()(const InputType& in)
{
assert(in.Size() == m.Size());
assert(in.Size() == m_Vector.Size());
OutputType result = 0;
for (unsigned int i = 0; i < in.Size(); ++i)
{
Loading