Changes between Initial Version and Version 1 of Ticket #800


Ignore:
Timestamp:
8 Jan 2020, 19:06:49 (4 years ago)
Author:
ksuehring
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #800 – Description

    initial v1  
    22
    33replace:
     4{{{
    45  for (int i = 0; i <= numElements; i++)
    56  {
    67    distortion += (Distortion)(abs(histogram0[i] - histogram1[i]));
    78  }
    8 
     9}}}
    910by:
     11{{{
    1012  for (int i = 0; i < numElements; i++)
    1113  {
    1214    distortion += (Distortion)(abs(histogram0[i] - histogram1[i]));
    1315  }
     16}}}