healthonrails / annolid

An annotation and instance segmentation-based multiple animal tracking and behavior analysis package.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

annolid

Annolid Build Annolid Release DOI Downloads

An annotation and instance segmentation-based multiple animal tracking and behavior analysis package.

Effortless Object Labeling with Minimal Points: Automated Polygon Generation using Segment Anything Models

Effortlessly Create Polygon Labels for Objects using Segment Anything Models

Overview of Annolid workflow

Overview of Annolid workflow

  • Labeling of frames (annotation)
  • COCO formatting
  • Training and inference (local or Colab)
  • Post-processing and analysis

Annolid video tutorials

Annolid Youtube playlist

YouTube Channel Annolid documentations

User Guide

A basic user guide with installation instructions and recent documentation can be found at https://cplab.science/annolid or https://annolid.com.

Examples

Multiple Animal Tracking

Instance segmentations Behavior prediction

Mouse behavior analysis with instance segmentation based deep learning networks

Mouse behavior analysis with instance segmentation based deep learning networks

Local Installation

First you need to install anaconda.

create a conda env

conda create -n annolid-env python=3.7
conda activate annolid-env 
  • Clone the code repo and change into the directory
git clone --recurse-submodules https://github.com/healthonrails/annolid.git
cd annolid
  • Install the package with pip
pip install git+https://github.com/facebookresearch/segment-anything.git
pip install -e .

The pip install command will attempt to determine your computer's resources (like a GPU) automatically. To control this directly, you alternatively can use the conda env command and the appropriate environment file (.yml). For alternative installation methods, see the Annolid documentation (https://cplab.science/annolid or https://annolid.com).

Recommended steps for Ubuntu 20.04 machine with GPUs

  • Open a terminal window and navigate to the directory where the Annolid source code was downloaded.

  • Create a Conda environment based on the specifications in the environment.yml file located in the Annolid source code directory using the following command:

conda env create -f environment.yml

This command will create a new Conda environment with the required packages and dependencies needed to run Annolid on an Ubuntu 20.04 machine with GPUs.

  • Activate the new Conda environment using the following command:
conda activate annolid-env 
  • Verify that the installation was successful by running the annolid
annolid

Note: For error NVIDIA GeForce RTX 3090 with CUDA capability sm_86 is not compatible with the current PyTorch installation, please try the following command.

pip install torch==1.12.1+cu113 torchvision==0.13.1+cu113 torchaudio==0.12.1 --extra-index-url https://download.pytorch.org/whl/cu113

That's it! You should now have Annolid installed on your Ubuntu 20.04 machine with GPUs and be able to use it for video analysis and annotation tasks.

Note for Mac M1/M2 Chip users

If you encounter the folloing errors,

Intel MKL FATAL ERROR: This system does not meet the minimum requirements for use of the Intel(R) Math Kernel Library.
The processor must support the Intel(R) Supplemental Streaming SIMD Extensions 3 (Intel(R) SSSE3) instructions.
The processor must support the Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) SSE4.2) instructions.
The processor must support the Intel(R) Advanced Vector Extensions (Intel(R) AVX) instructions.
[end of output]

Please try the following commands.

conda create -n annolid-env python=3.7
conda activate annolid-env 
# Please skip this git clone step, if you have already done it in the previous step
git clone --recurse-submodules https://github.com/healthonrails/annolid.git
cd annolid
pip install -e .
annolid

Note: if you got this error: ERROR: Could not find a version that satisfies the requirement decord>=0.4.0 try to install ffmpeg or you can install it in conda with conda install -c conda-forge ffmpeg.

FYI: it is helpful to compress videos to reduce diskspace using ffmpeg using ffmpeg -i my_video.mp4 -vcodec libx264 my_video_compressed.mp4

Tip: to fix the error like objc[13977]: Class QCocoaPageLayoutDelegate is implemented in both /Users/xxx/anaconda3/envs/annolid-env/lib/python3.7/site-packages/cv2/.dylibs/QtGui (0x10ebd85c0) and /Users/xxx/anaconda3/envs/annolid-env/lib/python3.7/site-packages/PyQt5/Qt/lib/QtPrintSupport.framework/Versions/5/QtPrintSupport (0x10fc9d540, please try the command conda install qtpy.

Launch annolid user interface based on labelme

source activate annolid-env
annolid
#or you can provide a label.txt file as follows.
annolid --labels=/path/to/labels_custom.txt

Annolid UI based on labelme

If you want to learn more about labelme, please check the following link.

Read more about annotations

How to label animals and behaviors?

Polygons & keypoints(e.g. Vole_1, nose, tail_base, rearing…...)

  • To train models for tracking animals and assigning IDs, please label each instance with a unique name or ID (e.g. vole_1, mouse_2, or frog_femal_01).

  • For instances without needing to assign IDs across different frames or videos, please label instances with a generic name or ID (e.g vole, mouse, or frog).

  • For encoding behaviors, please name the ploygon with the behavior name (e.g. rearing, object_investigation, or grooming)

  • For body parts, please use keypoint with names like nose, tail_base, or left_ear.

annolid config file

The first time you run annolid, it will create a config file in the user's home directory ~/.labelmerc (C:\Users<username>.labelmerc on Windows). You can edit this file, and the changes will take effect the next time you launch annolid. To set the auto_save option to true, open the labelmerc file in a text editor and add the line auto_save: true. Save the changes, and labelme will automatically save your annotations when you make them. If you prefer to use a config file from a different location, you can specify the file path by using the --config flag followed by the path to your desired config file.

Instructions for labeling behaviors with timestamps using keys:

Efficient Timestamp Labeling and Editing of Behaviors: Streamlined Key Shortcuts and Video Slider Controls

To label behaviors, use the following key shortcuts:

  • Press 's' to indicate the start of an event.
  • Press 'e' to mark the end of an event.
  • If you click play on the seek bar, it will play with a specific interval.
  • Use 'f' to add 10 frames and 'b' to subtract 10 frames at a time.

To edit the predicted timestamps provided by Annolid:

  • Click the tick mark on the video slider bar.
  • Press 'r' to remove the event.

Once you have finished labeling the behaviors, follow these steps:

  • Click the "Save Timestamps" button to save the scored behaviors.

To enable frame-level labels in Annolid using a multi-select component:

  • Launch Annolid with the "--flags" option. For example: annolid --flags "digging,rearing,grooming".
  • This will display a flags list with a multi-select component.
  • In the multi-select component, you can see a list of available labels.
  • If you choose an event or behavior item from the flags list and then press 's,' it will encode that behavior or event. Pressing the 'e' key will encode the end of the behavior.
  • To eliminate the added event from the seekbar, simply press the 'R' key.

To save the selected frame-level labels in Annolid, you can follow either of these methods:

  • Press Ctrl+S: Use the keyboard shortcut Ctrl+S to save the selected frame-level labels.
  • Click the "Save" button: Alternatively, you can click the "Save" button in the user interface to save the selected frame-level labels.

How many frames do you need to label?

  • 20 to 100 frames per video Auto-labeling

  • For autolabeling, you can label 20 frames and train a model. Then you can use the trained model to predict on the video and add the corrected predictions to the training set to train a better model. Repeat the process until the model is matching human performance. Auto-labeling

  • Write labeling guidelines by starting with this template.

Tracking and re-identification

  • To link instances across frames, we treat each instance as its own class across frames.
  • To track multiple animals, label each animal as a separate instance.
  • To generalize across animals or videos, label multiple animals as examples of the same instance.

Docker

Please make sure that Docker is installed on your system.

# on Linux
cd annolid/docker
docker build .
xhost +local:docker
docker run -it -v /tmp/.X11-unix:/tmp/.X11-unix/ -e DISPLAY=$DISPLAY  <Image ID>

Citing Annolid

If you use Annolid in your research, please use the following BibTeX entry.

@misc{yang2020Annolid,
  author =       {Chen Yang, Jeremy Forest, Matthew Einhorn, Thomas Cleland},
  title =        {Annolid:  an instance segmentation-based multiple animal tracking and behavior analysis package},
  howpublished = {\url{https://github.com/healthonrails/annolid}},
  year =         {2020}
}

Other open-access pre-prints related to Annolid

@article{pranic2022rates,
  title={Rates but not acoustic features of ultrasonic vocalizations are related to non-vocal behaviors in mouse pups},
  author={Pranic, Nicole M and Kornbrek, Caroline and Yang, Chen and Cleland, Thomas A and Tschida, Katherine A},
  journal={bioRxiv},
  year={2022},
  publisher={Cold Spring Harbor Laboratory}
}

For more information: https://cplab.science/annolid .

SfN 2021 poster

Annolid: an instance segmentation-based multiple-animal tracking and behavior analysis package

SfN 2023 posters

  • PSTR512.02 - Annolid: Annotate, Segment, and Track Anything You Need
  • PSTR512.01 - Scoring rodent digging behavior with Annolid

Datasets

New An example dataset annotated by Annolid and converted to COCO format dataset is now available from this Google Drive link https://drive.google.com/file/d/1fUXCLnoJ5SwXg54mj0NBKGzidsV8ALVR/view?usp=sharing.

Pretrained models

The pretrained models will be shared to the Google Drive folder.

Feature requests and bug reports

To request a new feature or report bugs, please use the link https://github.com/healthonrails/annolid/issues here.

Annolid Google groups

annolid@googlegroups.com

About

An annotation and instance segmentation-based multiple animal tracking and behavior analysis package.

License:Other


Languages

Language:Jupyter Notebook 79.0%Language:HTML 19.3%Language:Python 1.5%Language:CSS 0.1%Language:JavaScript 0.1%Language:Cuda 0.0%Language:C++ 0.0%Language:Dockerfile 0.0%Language:C 0.0%Language:Shell 0.0%