Code Monkey home page Code Monkey logo

yolov5_ros's Introduction

Yolov5_ros

For simplified Chinese version: 简体中文版

This package provides a ROS wrapper for PyTorch-YOLOv5 based on PyTorch-YOLOv5. The package has been tested with Ubuntu 16.04 and Ubuntu 18.04.

V1.0.1: Add device options(cpu or gpu).

Authors: Zhitao Zheng ([email protected])

develop environment:

  • Ubuntu 16.04 / 18.04
  • ROS Kinetic / Melodic
  • Python>=3.6.0 environment, including PyTorch>=1.7

Prerequisites:

Install Anaconda:

1. First download the corresponding installation package Anaconda

2. Then install anaconda (for example)

bash ~/Downloads/Anaconda3-2021.05-Linux-x86_64.sh

3. Edit the ~/.bashrc file and add it at the end

export PATH=/home/your/anaconda3/bin:$PATH

4. Execute after save and exit:

source ~/.bashrc

Install Pytorch:

1. First create an anaconda virtual environment for pytorch

conda create -n mypytorch python=3.8

2. activate the mypytorch environment

conda activate mypytorch

3. Install pytorch1.8 in the created pytorch environment

Install PyTorch: https://pytorch.org/get-started/locally/

conda install pytorch torchvision cudatoolkit=10.2 -c pytorch

4. Edit ~/.bashrc file, set to use python3.8 in mypytorch environment

alias python='/home/your/anaconda3/envs/mypytorch/bin/python3.8'

5. Execute after save and exit:

source ~/.bashrc

Installation yolov5_ros

cd /your/catkin_ws/src

git clone https://github.com/qq44642754a/Yolov5_ros.git

cd yolov5_ros/yolov5

sudo pip install -r requirements.txt

Basic Usage

  1. First, make sure to put your weights in the weights folder.
  2. The default settings (using yolov5s.pt) in the launch/yolo_v5.launch file should work, all you should have to do is change the image topic you would like to subscribe to:
roslaunch yolov5_ros yolo_v5.launch

Alternatively you can modify the parameters in the launch file, recompile and launch it that way so that no arguments need to be passed at runtime.

Node parameters

  • image_topic

    Subscribed camera topic.

  • weights_path

    Path to weights file.

  • pub_topic

    Published topic with the detected bounding boxes.

  • confidence

    Confidence threshold for detected objects.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.