All Projects → Earthwings → annotate

Earthwings / annotate

Licence: BSD-3-Clause license
Create 3D labelled bounding boxes in RViz

Programming Languages

C++
36643 projects - #6 most used programming language
Dockerfile
14818 projects
CMake
9771 projects
shell
77523 projects

Projects that are alternatives of or similar to annotate

Label Studio
Label Studio is a multi-type data labeling and annotation tool with standardized output format
Stars: ✭ 7,264 (+6884.62%)
Mutual labels:  annotation, annotations, labeling, annotation-tool, labeling-tool
Labelbox
Labelbox is the fastest way to annotate data to build and ship computer vision applications.
Stars: ✭ 1,588 (+1426.92%)
Mutual labels:  annotation, labeling, bounding-boxes, annotation-tool, labeling-tool
Cvat
Powerful and efficient Computer Vision Annotation Tool (CVAT)
Stars: ✭ 6,557 (+6204.81%)
Mutual labels:  annotation, annotations, labeling, annotation-tool, labeling-tool
Alturos.ImageAnnotation
A collaborative tool for labeling image data for yolo
Stars: ✭ 47 (-54.81%)
Mutual labels:  labeling, bounding-boxes, annotation-tool, labeling-tool
image-sorter2
One-click image sorting/labelling script
Stars: ✭ 65 (-37.5%)
Mutual labels:  annotation, labeling, annotation-tool, labeling-tool
Awesome Data Labeling
A curated list of awesome data labeling tools
Stars: ✭ 1,120 (+976.92%)
Mutual labels:  annotation, lidar, labeling
Nova
NOVA is a tool for annotating and analyzing behaviours in social interactions. It supports Annotators using Machine Learning already during the coding process. Further it features both, discrete labels and continuous scores and a visuzalization of streams recorded with the SSI Framework.
Stars: ✭ 110 (+5.77%)
Mutual labels:  annotation, annotations, labeling
kitti-A-LOAM
Easy description to run and evaluate A-LOAM with KITTI-data
Stars: ✭ 28 (-73.08%)
Mutual labels:  velodyne, ground-truth, lidar-point-cloud
lidar-buster
Collection of Python snippets for processing LiDAR point cloud.
Stars: ✭ 15 (-85.58%)
Mutual labels:  lidar, velodyne, lidar-point-cloud
Form-Labeller
Use this tool to label forms, bounding boxes, and assigning types to annotations
Stars: ✭ 17 (-83.65%)
Mutual labels:  annotations, annotation-tool, labeling-tool
Loam velodyne
Laser Odometry and Mapping (Loam) is a realtime method for state estimation and mapping using a 3D lidar.
Stars: ✭ 1,135 (+991.35%)
Mutual labels:  lidar, pcl, pointcloud
jupyter-bbox-widget
A Jupyter widget for annotating images with bounding boxes
Stars: ✭ 19 (-81.73%)
Mutual labels:  annotations, bounding-boxes, labeling-tool
Loam noted
loam code noted in Chinese(loam中文注解版)
Stars: ✭ 455 (+337.5%)
Mutual labels:  lidar, pcl, pointcloud
labelCloud
A lightweight tool for labeling 3D bounding boxes in point clouds.
Stars: ✭ 264 (+153.85%)
Mutual labels:  annotation, labeling, bounding-boxes
Breadcast
Small Broadcast Receiver Library for Android
Stars: ✭ 15 (-85.58%)
Mutual labels:  annotation, annotations
Person Search Annotation
Cross-Platform Annotation Tool for Person Search Datasets
Stars: ✭ 9 (-91.35%)
Mutual labels:  annotation, labeling
Diffgram
Data Annotation, Data Labeling, Annotation Tooling, Training Data for Machine Learning
Stars: ✭ 43 (-58.65%)
Mutual labels:  annotation, labeling
Slate
A Super-Lightweight Annotation Tool for Experts: Label text in a terminal with just Python
Stars: ✭ 61 (-41.35%)
Mutual labels:  annotation, labeling
Http Router
🎉 Release 2.0 is released! Very fast HTTP router for PHP 7.1+ (incl. PHP8 with attributes) based on PSR-7 and PSR-15 with support for annotations and OpenApi (Swagger)
Stars: ✭ 124 (+19.23%)
Mutual labels:  annotation, annotations
Screenity
The most powerful screen recorder & annotation tool for Chrome 🎥
Stars: ✭ 6,229 (+5889.42%)
Mutual labels:  annotation, annotation-tool

annotate

GitHub GitHub top language GitHub last commit

The evaluation of perception algorithms requires labeled ground truth data. Supervised machine learning algorithms need labeled training data. Annotate is a tool to create 3D labeled bounding boxes in ROS/RViz. Its labeled data is useful both as training data for machine learning algorithms as well as ground truth for evaluation.

Requirements

Annotate is useful in the following contexts:

  • You are using ROS. Annotate was tested with ROS Kinetic (Ubuntu 16.04) and ROS Melodic (Ubuntu 18.04).
  • Your data is available in (or can easily be converted to) 3D point clouds.

Overview

Create annotations (labeled data) using RViz. Annotate provides RViz extensions for labeling. You are responsible to provide labeling data using a ROS topic with sensor_msgs/PointCloud2 data.

  • Use rosbag play or similar tooling to provide point cloud data to be annotated in sensor_msgs/PointCloud2 format
  • Start rviz from a ROS workspace including this repository to create and edit annotation tracks
  • Labeled data is stored in a YAML file of your choice See labeling for a detailled description of label creation.

Getting Started

Clone this repository in a ROS workspace to build and run annotate. For a successful build please install the dependency pcl-ros as well. You can also use rosdep to pick it up for you.

cd /path/to/your/workspace/src
git clone https://github.com/Earthwings/annotate.git
catkin build  # or catkin_make or your other favorite build method
source /path/to/your/workspace/devel/setup.bash  # or setup.zsh for ZSH users

Use the demo.launch launch file shipped with annotate to see it in action quickly. Here is a sample call:

roslaunch annotate demo.launch \
  bag:="/kitti/2011_09_26_drive_0005_sync_pointcloud.bag --pause-topics velodyne_points"

The above call will run rosbag play and RViz using a configuration file that includes the annotate RViz tool and the annotate RViz display. In the annotate display set the topic with to be labeled data to /velodyne_points. The RViz window will look similar to this:

RViz/Annotate screenshot

Please see labeling for a detailed description of label creation.

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].