Soo this is another beginner setup project where I’ve gotten a Logitech webcam setup with the Jetson Nano.
Check out Arduino Projects here: (LINK)
Check out Raspberry Pi Projects here: (LINK)
Demo:
Things Required:
- Jetson Nano
- Keyboard
- Mouse
- HDMI Screen
- Webcam Camera
- External Power Supply
Reference Material:
- To start off with the Camera: (LINK)
Code:
I’ve coded it all in python!
View on/ Download from Github: (LINK)
import cv2
dispW=640
dispH=480
flip=2
cam=cv2.VideoCapture(1)
while True:
ret, frame=cam.read()
cv2.imshow('WebCam', frame)
if cv2.waitKey(1)==ord('q'):
break
cam.release()
cv2.destroyAllWindows()
Stay Tuned for upcoming posts on Jetson Nano and AI Projects! Want to be the first to know when a new and amazing post comes up?? Then feel free to subscribe!
Happy Learning!!
