Skip to content

Commit 63d0e44

Browse files
committed
Fix a typo
1 parent 0e3f454 commit 63d0e44

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cpp/models/src/keypoint_detection.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ DetectedKeypoints decode_simcc(const cv::Mat& simcc_x,
6262
colArgMax(simcc_x, x_locs, max_val_x, false);
6363

6464
cv::Mat y_locs, max_val_y;
65-
colArgMax(simcc_y, y_locs, max_val_x, false);
65+
colArgMax(simcc_y, y_locs, max_val_y, false);
6666

6767
if (apply_softmax) {
6868
cv::Mat tmp_locs;

0 commit comments

Comments
 (0)