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
Traceback (most recent call last): File "/home/mehularora/AMG8833_IR_cam/examples/IR_cam_interp.py", line 68, in <module> fig.canvas.set_window_title('AMG8833 Image Interpolation') AttributeError: 'FigureCanvasQTAgg' object has no attribute 'set_window_title'
small fix: need to use fig.canvas.manager if you're accepting PRs, lmk ill open one
fig.canvas.manager
The text was updated successfully, but these errors were encountered:
I am trying to replicate this project for a science fair, could you let me know how to implement the fig.canvas.manager fix?
Sorry, something went wrong.
Change IR_cam_interp.py, line 68 to fig.canvas.manager.set_window_title('AMG8833 Image Interpolation')
John Luke
No branches or pull requests
small fix: need to use
fig.canvas.manager
if you're accepting PRs, lmk ill open one
The text was updated successfully, but these errors were encountered: