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/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.0a0.tar.gz
(7.6 kB
view hashes)
Built Distribution
Close
Hashes for CV_Robot-0.2.0a0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21092c6f574402197c9108ca28c6f9f83eee603a5de634521d283b86db57e2fb |
|
MD5 | 27bc7ae4330099523bdfbf0132aa1d97 |
|
BLAKE2b-256 | 13c41822306e1df82ba20e811a6f11a4631374d0625778eda23b99f8f4d1bf53 |