Is it possible to run after rebooting process a python script that has camera feature in RPI?

23 views Asked by At

` model = load_model("model", compile=False) class_names1 = open("labels.txt", "r").readlines()

GPIO.setmode(GPIO.BCM) GPIO.setwarnings(False)

camera = cv2.VideoCapture(2)`

This is my code and I need help on how to autostart this script after rebooting process

0

There are 0 answers