Changes between Initial Version and Version 1 of Ticket #800
- Timestamp:
- 8 Jan 2020, 19:06:49 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #800 – Description
initial v1 2 2 3 3 replace: 4 {{{ 4 5 for (int i = 0; i <= numElements; i++) 5 6 { 6 7 distortion += (Distortion)(abs(histogram0[i] - histogram1[i])); 7 8 } 8 9 }}} 9 10 by: 11 {{{ 10 12 for (int i = 0; i < numElements; i++) 11 13 { 12 14 distortion += (Distortion)(abs(histogram0[i] - histogram1[i])); 13 15 } 16 }}}