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
In the jetcam/jetcam/init .py file,I see only the contents:
from .camera import Camera
However, there are 4 files in the jetbot/jetbot directory, It is, respectively:
camera.py
csi_camera.py
usb_camera.py
utils.py
Change the content of init.py to the following:
from .camera import Camera from .csi_camera import CSICamera from .usb_camera import USBCamera from .utils import bgr8_to_jpeg
the problem is solved!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
problem:
In the jetcam/jetcam/init .py file,I see only the contents:
However, there are 4 files in the jetbot/jetbot directory, It is, respectively:
suggest:
Change the content of init.py to the following:
the problem is solved!
The text was updated successfully, but these errors were encountered: