SunFounder PiCrawler Kit
The keys of the dictionary and their uses are shown in the following list:
• color_x: the x value of the center coordinate of the detected color block, the range is 0~320
• color_y: the y value of the center coordinate of the detected color block, the range is 0~240
• color_w: the width of the detected color block, the range is 0~320
• color_h: the height of the detected color block, the range is 0~240
• color_n: the number of detected color patches
• human_x: the x value of the center coordinate of the detected human face, the range is 0~320
• human_y: the y value of the center coordinate of the detected face, the range is 0~240
• human_w: the width of the detected human face, the range is 0~320
• human_h: the height of the detected face, the range is 0~240
• human_n: the number of detected faces
• traffic_sign_x: the center coordinate x value of the detected traffic sign, the range is 0~320
• traffic_sign_y: the center coordinate y value of the detected traffic sign, the range is 0~240
• traffic_sign_w: the width of the detected traffic sign, the range is 0~320
• traffic_sign_h: the height of the detected traffic sign, the range is 0~240
• traffic_sign_t: the content of the detected traffic sign, the value list is [‘stop’,’right’,’left’,’forward’]
• gesture_x: The center coordinate x value of the detected gesture, the range is 0~320
• gesture_y: The center coordinate y value of the detected gesture, the range is 0~240
• gesture_w: The width of the detected gesture, the range is 0~320
• gesture_h: The height of the detected gesture, the range is 0~240
• gesture_t: The content of the detected gesture, the value list is [“paper”,”scissor”,”rock”]
• qr_date: the content of the QR code being detected
• qr_x: the center coordinate x value of the QR code to be detected, the range is 0~320
• qr_y: the center coordinate y value of the QR code to be detected, the range is 0~240
• qr_w: the width of the QR code to be detected, the range is 0~320
• qr_h: the height of the QR code to be detected, the range is 0~320
3.8 Record Video
This example will guide you how to use the recording function.
Run the Code
cd /home/pi/picrawler/examples
sudo python3 record_video.py
After the code runs, you can enter http://<your IP>:9000/mjpg in the browser to view the video screen.
such as: http://192.168.18.113:9000/mjpg
62 Chapter 3. Play with Python