Add person_detect to camera.py
This commit is contained in:
parent
f09358a0ff
commit
d900f956db
@ -9,19 +9,59 @@ IR_PIN = 3
|
|||||||
|
|
||||||
GPIO.setmode(GPIO.BOARD)
|
GPIO.setmode(GPIO.BOARD)
|
||||||
GPIO.setup(IR_PIN, GPIO.OUT)
|
GPIO.setup(IR_PIN, GPIO.OUT)
|
||||||
|
# set cameramode to normal; GPIO.LOW would enable infrared mode
|
||||||
|
GPIO.output(IR_PIN, GPIO.HIGH)
|
||||||
|
|
||||||
|
def person_detect():
|
||||||
|
# initialize the HOG descriptor/person detector
|
||||||
|
hog = cv2.HOGDescriptor()
|
||||||
|
hog.setSVMDetector(cv2.HOGDescriptor_getDefaultPeopleDetector())
|
||||||
|
|
||||||
|
# loop over the image paths
|
||||||
|
for imagePath in paths.list_images(args["images"]):
|
||||||
|
# load the image and resize it to (1) reduce detection time
|
||||||
|
# and (2) improve detection accuracy
|
||||||
|
image = cv2.imread(imagePath)
|
||||||
|
image = imutils.resize(image, width=min(400, image.shape[1]))
|
||||||
|
orig = image.copy()
|
||||||
|
|
||||||
|
# detect people in the image
|
||||||
|
(rects, weights) = hog.detectMultiScale(image, winStride=(4, 4),
|
||||||
|
padding=(8, 8), scale=1.05)
|
||||||
|
|
||||||
|
# draw the original bounding boxes
|
||||||
|
for (x, y, w, h) in rects:
|
||||||
|
cv2.rectangle(orig, (x, y), (x + w, y + h), (0, 0, 255), 2)
|
||||||
|
|
||||||
|
# apply non-maxima suppression to the bounding boxes using a
|
||||||
|
# fairly large overlap threshold to try to maintain overlapping
|
||||||
|
# boxes that are still people
|
||||||
|
rects = np.array([[x, y, x + w, y + h] for (x, y, w, h) in rects])
|
||||||
|
pick = non_max_suppression(rects, probs=None, overlapThresh=0.65)
|
||||||
|
|
||||||
|
# draw the final bounding boxes
|
||||||
|
for (xA, yA, xB, yB) in pick:
|
||||||
|
cv2.rectangle(image, (xA, yA), (xB, yB), (0, 255, 0), 2)
|
||||||
|
|
||||||
|
# show some information on the number of bounding boxes
|
||||||
|
filename = imagePath[imagePath.rfind("/") + 1:]
|
||||||
|
print("[INFO] {}: {} original boxes, {} after suppression".format(filename, len(rects), len(pick)))
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
i = 0
|
i = 0
|
||||||
|
|
||||||
try:
|
try:
|
||||||
while True:
|
while True:
|
||||||
print("Gpio Low")
|
print("Gpio Low")
|
||||||
GPIO.output(IR_PIN, GPIO.HIGH)
|
|
||||||
time.sleep(2)
|
time.sleep(2)
|
||||||
|
|
||||||
# take image and scp it to the other pi
|
# take image and scp it to the other pi
|
||||||
print("take image...")
|
print("take image...")
|
||||||
subprocess.run(['raspistill', '-o', 'images/image' + str(i) + '.jpg'])
|
subprocess.run(['raspistill', '-o', 'images/image' + str(i) + '.jpg'])
|
||||||
|
|
||||||
print("transfer image")
|
|
||||||
|
#print("transfer image")
|
||||||
#scp('images/image' + str(i) + '.jpg', '~/image' + str(i) + '.jpg', '192.168.252.1', 'pi', 'smarthome')
|
#scp('images/image' + str(i) + '.jpg', '~/image' + str(i) + '.jpg', '192.168.252.1', 'pi', 'smarthome')
|
||||||
|
|
||||||
i+=1
|
i+=1
|
||||||
@ -45,3 +85,8 @@ except Exception as e:
|
|||||||
print(e)
|
print(e)
|
||||||
finally:
|
finally:
|
||||||
GPIO.cleanup()
|
GPIO.cleanup()
|
||||||
|
|
||||||
|
#person_detect()
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
main()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user