Koki Hirano
Results
2
comments of
Koki Hirano
Thank you for your reply. I fixed three points you mentioned, but it seems like it's not still working... ```python transform = transforms.Compose([ transforms.ToTensor(), transforms.Resize((256, 192)), normalize]) img = cv2.imread(args.img_path)...
It worked! The model seems to output the horizontally flipped orientation (comparing with the figure in the paper), so I changed the code like below, and now it's working as...