Skip to main content

A YOLO-based tool for ROI cropping and movement tracking of Mus musculus.

Project description

Mus Musculus Tracker 🐁

PyPI version License: MIT Python 3.13+

A custom YOLO-based tool for automated mouse (Mus musculus) detection, movement tracking, and manual keypoint labeling.

Tracking

📋 Features

  • Automated Detection: Robust mouse tracking powered by YOLO (v12).
  • Video Cropping and Compression: Automatically crops video borders to focus on the arena/cage and compresses them to 640x640 MP4.
  • Trajectory Tracking: Extracts movement coordinates and trajectory data.
  • Keypoints Labeling: Interactive script to label points p0..p9 on the first frame.
  • CLI: Command-line interface.

🚀 Installation

Via Pip (Recommended)

pip install mus-musculus-tracker

Via Conda (Development)

gh repo clone juancolonna/mouse-tracker
cd mouse-tracker
conda env create -f environment.yml
conda activate mouse-tracker
pip install -e .

🛠 Usage

1) Basic Use of Mouse tracking (mouse-track)

Run mouse-track with a single video file:

mouse-track path/to/video.mp4

The output files are saved in the same directory as the input video:

  • video_tracked.mp4 annotated video with the tracking results.
  • video_log.csv CSV file containing the tracking data.

The video_log.csv file contains:

  • Frame: frame number in the video.
  • Track_ID: object tracking ID assigned by YOLO.
  • Class: detected object class.
  • Time (s): timestamp of the frame in seconds.
  • Confidence: YOLO detection confidence score.
  • pos_x: x-coordinate of the detected mouse position.
  • pos_y: y-coordinate of the detected mouse position.
  • Radius: distance from the arena center (p0) to the detected position.
  • Angle: angle of the detected position relative to the arena center (p0), in degrees.
  • Jump: whether the detected point is outside the outer ellipse plus the margin.
  • Region: position category: inner, outer, or outside.
  • Velocity (px/s): instantaneous velocity measured in pixels per second
  • p0_x,p0_y,...,p16_x,p16_y: coordinates of the manually selected and inferred reference points.

For batch mode, provide a CSV file containing the list of videos (one video per row):

mouse-track path/to/list_of_videos.csv

Use the -y flag to automatically accept confirmation prompts:

mouse-track -y path/to/video.mp4

or, in batch mode:

mouse-track -y path/to/list_of_videos.csv

2) Keypoints labeling (keypoints-labeler)

The keypoints_labeler.py script reads a CSV list of videos, opens the first frame of each video, and requests manual selection of the 10 keypoints (p0 to p9).

keypoints-labeler path/to/video_list.csv path/to/output_keypoints.csv

Expected video_list.csv format:

  • No header.
  • One video path per line.
  • Only one column is used.

Example video_list.csv:

/data/exp01/video_001.mp4
/data/exp01/video_002.mp4

Output (output_keypoints.csv):

  • path_and_file column with the original video path.
  • p0_x,p0_y,...,p9_x,p9_y columns.

Labeling behavior:

  • Left-click to select the current point.
  • Any key (e.g. ESC) other than q/Q moves to the next point.
  • If you advance without clicking (e.g. press ESC twice without a mouse click), the current video is skipped.
  • q or Q aborts the batch process.

Point order:

  • p0 is the center.
  • Points p0 -> p1 -> p2 go from the center toward the lid.
  • p3..p9 follow a counter-clockwise order according to the figure.

Keypoints reference

3) Batch Tracking Mode (mouse-track)

For processing multiple videos with pre-labeled keypoints, use a CSV file containing video paths and their keypoints:

mouse-track -y path/to/keypoints_list.csv

Expected keypoints_list.csv format:

  • Header row: path_and_file,p0_x,p0_y,p1_x,p1_y,...,p9_x,p9_y
  • Each subsequent row: video path followed by 20 numeric values (x,y pairs for p0-p9)

Example keypoints_list.csv:

path_and_file,p0_x,p0_y,p1_x,p1_y,p2_x,p2_y,p3_x,p3_y,p4_x,p4_y,p5_x,p5_y,p6_x,p6_y,p7_x,p7_y,p8_x,p8_y,p9_x,p9_y
/data/exp01/video_001.mp4,320,240,315,235,310,230,325,245,330,250,335,255,340,260,345,265,350,270,355,275
/data/exp01/video_002.mp4,320,240,315,235,310,230,325,245,330,250,335,255,340,260,345,265,350,270,355,275

This mode automatically crops and tracks all videos in the list without manual interaction. The script will prompt for confirmation before starting the batch process.

📑 Requirements

  • Python >= 3.13
  • ultralytics
  • opencv-python
  • moviepy
  • tqdm
  • numpy

✍️ Researchers and Authors

Software author and research: Juan G. Colonna juancolonna@icomp.ufam.edu.br
Instituto de Computação (Icomp) - Universidade Federal do Amazonas (UFAM) - Brazil

Data collection and research: Tamara Encinabecker tamara.encinabecker@vuw.ac.nz
Victoria University of Wellington (VUW) - New Zealand

Project research: Stephen Marsland stephen.marsland@vuw.ac.nz
Victoria University of Wellington (VUW) - New Zealand

Project research: Stephen Hartley stephen.hartley@vuw.ac.nz
Victoria University of Wellington (VUW) - New Zealand

📄 License

This project is licensed under the MIT License. See LICENSE for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mus_musculus_tracker-0.1.7.tar.gz (4.9 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mus_musculus_tracker-0.1.7-py3-none-any.whl (4.9 MB view details)

Uploaded Python 3

File details

Details for the file mus_musculus_tracker-0.1.7.tar.gz.

File metadata

  • Download URL: mus_musculus_tracker-0.1.7.tar.gz
  • Upload date:
  • Size: 4.9 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for mus_musculus_tracker-0.1.7.tar.gz
Algorithm Hash digest
SHA256 ca1f8fe66babe2de43c513f91ec299971bc821b0ea2ee508ab4e870f3b123515
MD5 2a0c9ee156dcd73ca310a5821dd2f357
BLAKE2b-256 b5d630c292302ed750a30038b7102b944854c332f9ed2af0e75d79ef779788b1

See more details on using hashes here.

File details

Details for the file mus_musculus_tracker-0.1.7-py3-none-any.whl.

File metadata

File hashes

Hashes for mus_musculus_tracker-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 f08543c44ace618fc3307fb57ee1d02b90fe86ce30721eae668e305d443c7244
MD5 c7233bfa4145609734e49e40b32c959e
BLAKE2b-256 cdbe1cb6792826bb20af92ab374df7f2af6fede138d36948bfe47046b2f8e0e9

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page