All Projects → osrf → Tensorflow_object_detector

osrf / Tensorflow_object_detector

Tensorflow Object Detector

Projects that are alternatives of or similar to Tensorflow object detector

Keras Movielens Cf
A set of Jupyter notebooks demonstrating collaborative filtering using matrix factorization with Keras.
Stars: ✭ 79 (-1.25%)
Mutual labels:  jupyter-notebook
Fraud Detection Using Machine Learning
Setup end to end demo architecture for predicting fraud events with Machine Learning using Amazon SageMaker
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Multi Label Text Classification
Kaggle Toxic Comments Challenge
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Introstatlearn
Exercises from 'Introduction to Statistical Learning with Applications in R' written in Python.
Stars: ✭ 79 (-1.25%)
Mutual labels:  jupyter-notebook
Exportify
Export Spotify playlists using the Web API. Analyze them in the Jupyter notebook.
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Cascade Rcnn tensorflow
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Computational Neuroscience Uw
Python scripts that supplement the Coursera Computational Neuroscience course by the University of Washington
Stars: ✭ 79 (-1.25%)
Mutual labels:  jupyter-notebook
Visual tracking api
A simple visual tracking interface using Python
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Demo Fastbert Multi Label Classification
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Pangeo Example Notebooks
Pangeo Example Notebooks
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Jupyter Notebooks
Stars: ✭ 79 (-1.25%)
Mutual labels:  jupyter-notebook
Kdd20 Hands On Tutorial
Scalable Graph Neural Networks with Deep Graph Library
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Probabilistic Programming
Experimenting with and teaching probabilistic programming
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Trumania
Trumania is a scenario-based random dataset generator library in python 3
Stars: ✭ 79 (-1.25%)
Mutual labels:  jupyter-notebook
Opam tip2018
Source code of our TIP 2018 paper "Object-Part Attention Model for Fine-grained Image Classification"
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Fttl With Keras
Transfer Learning and Fine Tuning for Cross Domain Image Classification with Keras
Stars: ✭ 79 (-1.25%)
Mutual labels:  jupyter-notebook
Peregrine
Peregrine: Fast Genome Assembler Using SHIMMER Index
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Alice
NIPS 2017: ALICE: Towards Understanding Adversarial Learning for Joint Distribution Matching
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Data mining in action 2018 spring
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook
Quantum machine learning live
This is the code for "Quantum Machine Learning LIVE" By Siraj Raval on Youtube
Stars: ✭ 80 (+0%)
Mutual labels:  jupyter-notebook

Tensorflow Object Detector with ROS

Requirements:

Tensorflow and ROS

This guide targets Ubuntu 16.04 and ROS Kinetic

Steps:

To run Default SSD (Single Shot Detection) algorithm:

  1. Install ROS: http://wiki.ros.org/kinetic/Installation/Ubuntu

  2. Install camera dependencies

    sudo apt-get install ros-kinetic-usb_cam ros-kinetic-openni2-launch

  3. Install tensorflow into python virtualenv: https://www.tensorflow.org/install/install_linux

    sudo apt-get install python-pip python-dev python-virtualenv

    virtualenv --system-site-packages ~/tensorflow

    source ~/tensorflow/bin/activate

    easy_install -U pip

    pip install --upgrade tensorflow

  4. mkdir ~/catkin_ws/ && mkdir ~/catkin_ws/src/

  5. Clone standard Vision messages repository and this repository into catkin_ws/src:

    cd ~/catkin_ws/src

    git clone https://github.com/Kukanani/vision_msgs.git

    git clone https://github.com/osrf/tensorflow_object_detector.git

  6. Build tensorflow_object_detector and Vision message

    cd ~/catkin_ws && catkin_make

  7. Source catkin workspace's setup.bash:

    source ~/catkin_ws/devel/setup.bash

  8. Plug in camera and launch Single Shot Detector (varies per camera, NOTE: object_detect.launch also launches the openni2.launch file for the camera. If you are using any other camera, please change the camera topic in the launch file before launching the file)

    roslaunch tensorflow_object_detector object_detect.launch

    OR

    roslaunch tensorflow_object_detector usb_cam_detector.launch

If you want to try any other ML model:

  1. Download any Object Detection Models from the Tensorflow Object detection API and place it in data/models/. You can find the models in tensorflow Object Detection Model Zoo . Extract the tar.gz file.

  2. Edit the MODEL_NAME and LABEL_NAME in detect_ros.py. By default it is ssd_mobilenet_v1_coco_11_06_2017 with mscoco_label_map.pbtxt respectively.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].