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
imgaug 年久失修,若imshow需要修改源码:
python3.10/site-packages/imgaug/imgaug.py
fig, ax = plt.subplots(figsize=(w, h), dpi=dpi) fig.canvas.set_window_title("imgaug.imshow(%s)" % (image.shape,)) # cmap=gray is automatically only activate for grayscale images ax.imshow(image, cmap="gray")
其中需要把 fig.canvas.set_window_title 修改为 fig.canvas.manager.set_window_title
The text was updated successfully, but these errors were encountered:
No branches or pull requests
imgaug 年久失修,若imshow需要修改源码:
python3.10/site-packages/imgaug/imgaug.py
其中需要把
fig.canvas.set_window_title 修改为 fig.canvas.manager.set_window_title
The text was updated successfully, but these errors were encountered: