I've been messing with this script for a few weeks now.
What I'm trying to do is: If motion is detected > run object detection script > if a cup is detected play audio file > if a cup IS NOT detected after a period of time > cancel script and wait until motion is detected
I believe it's a loop fix but I'm new to Python

Here is my code:
Code: Select all
#!/usr/bin/python
import RPi.GPIO as GPIO
import time
import cv2
import pygame
from pygame import mixer
# Use BCM GPIO references
# instead of physical pin numbers
GPIO.setmode(GPIO.BCM)
# Define GPIO to use on Pi
GPIO_PIR = 21
print ("PIR Module Test (CTRL-C to exit)")
# Set pin as input
GPIO.setup(GPIO_PIR,GPIO.IN) # Echo
Current_State = 0
Previous_State = 0
try:
print ("Waiting for PIR to settle ...")
# Loop until PIR output is 0
while GPIO.input(GPIO_PIR)==1:
Current_State = 0
print (" Ready")
# Loop until users quits with CTRL-C
while True :
# Read PIR state
Current_State = GPIO.input(GPIO_PIR)
if Current_State==1 and Previous_State==0:
# PIR is triggered
print (" Motion detected!")
classNames = []
classFile = "/home/pi/Desktop/Object_Detection_Files/coco.names"
#classFile = "/home/pi/coco.names"
with open(classFile,"rt") as f:
classNames = f.read().rstrip("\n").split("\n")
configPath = "/home/pi/Desktop/Object_Detection_Files/ssd_mobilenet_v3_large_coco_2020_01_14.pbtxt"
weightsPath = "/home/pi/Desktop/Object_Detection_Files/frozen_inference_graph.pb"
net = cv2.dnn_DetectionModel(weightsPath,configPath)
net.setInputSize(320,320)
net.setInputScale(1.0/ 127.5)
net.setInputMean((127.5, 127.5, 127.5))
net.setInputSwapRB(True)
def getObjects(img, thres, nms, draw=True, objects=[]):
classIds, confs, bbox = net.detect(img,confThreshold=thres,nmsThreshold=nms)
#print(classIds,bbox)
if len(objects) == 0: objects = classNames
objectInfo =[]
if len(classIds) != 0:
for classId, confidence,box in zip(classIds.flatten(),confs.flatten(),bbox):
className = classNames[classId - 1]
if className in objects:
objectInfo.append([box,className])
#if (draw):
# cv2.rectangle(img,box,color=(0,255,0),thickness=2)
# cv2.putText(img,classNames[classId-1].upper(),(box[0]+10,box[1]+30),
# cv2.FONT_HERSHEY_COMPLEX,1,(0,255,0),2)
# cv2.putText(img,str(round(confidence*100,2)),(box[0]+200,box[1]+30),
# cv2.FONT_HERSHEY_COMPLEX,1,(0,255,0),2)
return img,objectInfo
if __name__ == "__main__":
mixer.init()
mixer.music.load("clap.wav")
mixer.music.set_volume(1.0)
cap = cv2.VideoCapture(-2)
cap.set(3,640)
cap.set(4,480)
cap.set(10,70)
while True:
success, img = cap.read()
result, objectInfo = getObjects(img,0.45,0.2, objects=['cup'])
if objectInfo and not pygame.mixer.music.get_busy():
mixer.music.play()
print(objectInfo)
# Display video output
# cv2.imshow("Output",img)
# cv2.waitKey(1)
# Record previous state
Previous_State=1
elif Current_State==0 and Previous_State==1:
# PIR has returned to ready state
print (" Ready")
Previous_State=0
# Wait for 10 milliseconds
time.sleep(0.10)
except KeyboardInterrupt:
print (" Quit" )
# Reset GPIO settings
GPIO.cleanup()