Jetson Nano: Drawing Shapes on the Live Video

So here is another basic project with the Jetson Nano. Here I’ve drawn rectangles, circles, lines and incorporated text with the live video.

Demo:

Things Required:

  1. Jetson Nano
  2. Keyboard
  3. Mouse
  4. HDMI Screen
  5. Raspberry Pi Camera
  6. External Power Supply

Reference Material:

  1. Video that I followed to learn this: (LINK)

Code:

Note that code below is in python

View on/Download from Github: (LINK)

import cv2
dispW=640
dispH=480
flip=2
camSet='nvarguscamerasrc !  video/x-raw(memory:NVMM), width=3264, height=2464, format=NV12, framerate=21/1 ! nvvidconv flip-method='+str(flip)+' ! video/x-raw, width='+str(dispW)+', height='+str(dispH)+', format=BGRx ! videoconvert ! video/x-raw, format=BGR ! appsink'
cam=cv2.VideoCapture(camSet)
while True:
    ret, frame= cam.read()
    frame=cv2.rectangle(frame, (300,220),(340,260), (255,0,0), 4)
    frame=cv2.circle(frame,(140,100),50,(0,255,0),4)
    frame=cv2.circle(frame,(400,100),30,(0,0,255),-1)
    fnt=cv2.FONT_HERSHEY_DUPLEX
    frame=cv2.putText(frame, 'My first text', (200,200),fnt,1,(255,0,150),2)
    frame=cv2.line(frame,(10,10),(630,470),(150,0,200),5)
    frame=cv2.arrowedLine(frame,(110,100),(630,470),(255,255,255),4)
    cv2.imshow('nanoCam', 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!!

This image has an empty alt attribute; its file name is stay-tuned.gif

Leave a Reply

PHP JS HTML CSS BASH PYTHON CODE

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.