Question about WBF #52
Unanswered
IAmNewToCode
asked this question in
Q&A
Replies: 1 comment
-
It's ok if order of boxes is different for different models. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! I would just like to ask:
If I have 2 bbox coordinates generated by 2 different models in this format
[
[
[x1,y1,w,h], # for model 1
[x2,y2,w,h],
],
[
[x2,y2,w,h], #for model 2 where the orders are flipped so x2 y2 is infront now
[x1,y1, w, h] #for model 2
]]
will the module be able to determine that it is supposed to compare between the x1s instead of comparing index 0 of first list with index 0 of second list?
Beta Was this translation helpful? Give feedback.
All reactions