test: fix a comment
authorInki Dae <inki.dae@samsung.com>
Mon, 9 Mar 2020 04:15:18 +0000 (13:15 +0900)
committerInki Dae <inki.dae@samsung.com>
Tue, 14 Apr 2020 00:42:53 +0000 (09:42 +0900)
Change-Id: I892180e682bbc50c6faa3e8e48ab8f889a02cd79
Signed-off-by: Inki Dae <inki.dae@samsung.com>
test/src/inference_engine_test.cpp

index 55cc16c..0ab0ca4 100644 (file)
@@ -375,7 +375,7 @@ int VerifyPoseEstimationResults(tensor_t &outputData, std::vector<int> &answers,
 
         for (int y = 0; y < heat_map_height; ++y) {
             for (int x = 0; x < heat_map_width; ++x) {
-                // head_map[Yn][Xn][Kn] = (Yn * heat_map_height * num_of_pose) + (Xn * num_of_pose) + Kn
+                // head_map[Yy][Xx][Kidx] = (Yy * heat_map_height * num_of_pose) + (Xx * num_of_pose) + Kidx
                 float score = data[(y * heat_map_width * num_of_pose) + (x * num_of_pose) + idx];
                 if (score > max_score) {
                     max_score = score;