-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GT Boxes #56
Comments
Hi, after training, I tested the models with my own dataset which has the same format as MOT17 using the weights I trained, but no results are output, please see below:
Training with Extra Self Attention in Every Decoder. Could anyone tell me where I should fix up to solve this issue? Thanks a lot !!!!!! |
have you figured it out? I'm getting the same result |
the same. have you found a solution? @gracebae0123 @EddieEduardo |
Hi, thanks for sharing the codes, but I am confused about the bbox foramt as follows:
in dataset/joint.py/class DetMOTDetection:-->
"""
def _pre_single_frame(self, idx: int):
**if osp.isfile(label_path):
labels0 = np.loadtxt(label_path, dtype=np.float32).reshape(-1, 6)
The dataset I am using is MOT17, it seems that the bboxes format that GT files provide are (x,y,w,h), but here in the above func, the gt boxes are used as (center_x,center_y,w,h), I am not sure if there is something wrong with it ?
The text was updated successfully, but these errors were encountered: