commit | 0ff777c81c0d6fb8543256a6555c9a9331266fec | [log] [tgz] |
---|---|---|
author | Parker Schuh <parker.schuh+gerrit_code_review@gmail.com> | Sun Feb 19 15:01:13 2017 -0800 |
committer | Parker Schuh <parker.schuh+gerrit_code_review@gmail.com> | Sun Feb 19 17:03:45 2017 -0800 |
tree | 3e73bff053e1f454dc3ea9a5a836e856a1c4ebfe | |
parent | 2dfc9cffb8d756a1293702bffbfa4d6e8311fc7b [diff] [blame] |
Some additions to aos/vision/blob (transpose and move_scale). Change-Id: I927144e27d0494f3ea879ebbd1647741f82e3c7b
diff --git a/aos/vision/blob/hierarchical_contour_merge.cc b/aos/vision/blob/hierarchical_contour_merge.cc index b3d9f41..ec617ca 100644 --- a/aos/vision/blob/hierarchical_contour_merge.cc +++ b/aos/vision/blob/hierarchical_contour_merge.cc
@@ -22,7 +22,7 @@ // This is an exclusive range lookup into a modulo ring. // The integral is precomputed in items_ and is inclusive even though - // the input is [a, b). + // the input is [a, b). T Get(int a, int b) { a = Mod(a, items_.size()); b = Mod(b, items_.size());