Skip to content

Commit 18e6451

Browse files
committed
✏️ fix coord typo
1 parent 74f57a1 commit 18e6451

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/http/controllers/api/PredictionController.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def post(self):
116116
"xmax": boxes.xmax,
117117
"xmin": boxes.xmin,
118118
"ymax": boxes.ymax,
119-
"ymin": boxes.ymax,
119+
"ymin": boxes.ymin,
120120
}
121121
)
122122

@@ -129,7 +129,7 @@ def post(self):
129129
"xmax": boxes.xmax,
130130
"xmin": boxes.xmin,
131131
"ymax": boxes.ymax,
132-
"ymin": boxes.ymax,
132+
"ymin": boxes.ymin,
133133
}
134134
)
135135

@@ -142,7 +142,7 @@ def post(self):
142142
"xmax": boxes.xmax,
143143
"xmin": boxes.xmin,
144144
"ymax": boxes.ymax,
145-
"ymin": boxes.ymax,
145+
"ymin": boxes.ymin,
146146
}
147147
)
148148

0 commit comments

Comments
 (0)