Computer vision robotics project
Project description
Computer Vision Robot
Library for computer vision code in Google Colab and Raspberry Pi. Uses Yolo v3 with OpenCV.
Example:
#Imports
from CV_Robot import robot
from CV_Robot import vision
from time import sleep
#Example - find objects in an image
img = vision.load_image("sample_images/sample_005.png")
vision.show_image(img)
vision.show_objects(img, pause=True)
print(vision.find_objects(img))
#Example - drive forward until a STOP_SIGN is found
robot.forward()
vision.activate_camera()
while True:
img = vision.get_camera_image()
if img is None: #This is good practice - it will stop the loop if the video ends / the camera fails
break
vision.show_objects(img)
if vision.Objects.STOP_SIGN in vision.find_objects(img):
break
sleep(0.1)
robot.stop()
Data Sources
https://github.com/nandinib1999/object-detection-yolo-opencv
#Download some sample videos + images for testing
wget https://github.com/nandinib1999/object-detection-yolo-opencv/raw/master/videos/pedestrians.mp4
wget https://github.com/nandinib1999/object-detection-yolo-opencv/raw/master/videos/car_on_road.mp4
wget -O sample_images.zip https://github.com/RobertJN64/CV_Robot/raw/master/Examples/Samples/100samples.zip
unzip sample_images.zip -d sample_images
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
CV_Robot-0.2.0a1.tar.gz
(7.6 kB
view hashes)
Built Distribution
Close
Hashes for CV_Robot-0.2.0a1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21d90126497acf9bb2ae33bf4b0ee5b522a8275db1c914da40988b1848bb23c8 |
|
MD5 | d26aa6b47d5bbdc4a5839b20317ec6ad |
|
BLAKE2b-256 | b26fbbc44ad3e771804e49ed92caed50e63f414871232fbd1fde04303d2fc31f |