We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The current _flip_keypoint function in RandomFlip return the concatenate of keypoints and meta_info
mmcv/mmcv/transforms/processing.py
Line 1262 in 4ae327f
while the keypoints is the original input and is not fliped.
The correct code should be
flipped = np.concatenate([flipped, meta_info], axis=-1)
The text was updated successfully, but these errors were encountered:
Hi @zero0kiriyu , thanks for your report. Are you interested in making a PR to fix this issue?
Sorry, something went wrong.
ice-tong
No branches or pull requests
The current _flip_keypoint function in RandomFlip return the concatenate of keypoints and meta_info
mmcv/mmcv/transforms/processing.py
Line 1262 in 4ae327f
while the keypoints is the original input and is not fliped.
The correct code should be
The text was updated successfully, but these errors were encountered: