MARS is an end-to-end computational pipeline for tracking, pose estimation, and behavior classification in interacting laboratory mice. MARS version 1.8 can detect attack, mounting, and close investigation behaviors in a standard resident-intruder assay.
MARS can be run on Linux, Windows, or MacOS. We strongly recommend running MARS on a computer with a GPU.
MARS v1.8 works on top-view videos featuring pairs of interacting mice, with a black resident mouse and a white intruder mouse. MARS can be run on unoperated mice, or on videos in which one mouse has been implanted with a cable-attached device such as a microendoscope or fiberphotometry/optogenetic fiber.
MARS performs best on videos taken in a standard home cage, at roughly 30Hz, and either in color or grayscale. We recommend the recording setup described in Hong et al 2015, minus the depth camera (front-view camera is optional, and is not currently used in pose estimation.)
The easiest way to run MARS is with a conda environment, which will handle the installation of all necessary Python modules. In cases where this is not possible, we also provide a Docker environment that can be used on Linux machines (see below).
The following instructions cover GPU setup and creation of the MARS conda environment:
Operating System + GPU | Install Instructions |
---|---|
Linux + NVIDIA | link |
Windows + NVIDIA | link |
Mac | (coming soon) |
Installing MARS via Docker instead of conda will give MARS more protection from changes to your host machine, however it is a more involved process. Also note that because Docker for Windows does not support GPU access, the MARS Docker container is currently Linux-only. Instructions to set up the MARS Docker can be found here.
MARS can be run either through a graphical interface or from Juypter/Python terminal. Before running MARS, make sure you do the following:
mars_v1_8
directory to your Python search path (or, run Python from within this directory.)conda activate mars
or source activate mars
.To run MARS with default settings, simply call the following from within Python:
import MARS
folder = ['\path\to\your\videos']
MARS.run_MARS(folder)
Important note: for MARS to find your movie, please give it a file name ending in "_Top" (indicating that it was filmed from a top-view camera.) MARS currently runs on videos in
*.seq
,*.avi
,*.mp4
, or*.mpg
format.
MARS default settings can be found within config.yml
, along with descriptions for what each setting does. You can change settings either by modifying this file, or by passing a second "options" parameter in your call to run_MARS
. For example, here we turn off behavior classification, and tell MARS to overwrite any existing pose/feature files:
opts = {'doActions': False, 'doOverwrite': True}
MARS.run_MARS(folder, user_opts=opts)
Please refer to config.yml
to see the full list of available options.
To run MARS using the GUI, take the following steps:
cd Documents/Github/MARS/mars_v1_8
(or whatever the path to MARS is on your system.)conda activate mars
(or system activate mars
).python MARS.py
To select videos to analyze, click Browse and navigate to the directory containing your videos. Note: the current version of MARS will only find your videos if they have filenames ending in "_Top"!
If MARS finds any videos in the selected directory, it will display additional buttons to set run options:
Click Enqueue to add your selected folder to MARS's work queue, then select the camera view you use (typically "Top") and the tasks you want to run (typically "Pose", "Features", and "Classify Actions".) Check "Produce Video" if you'd like MARS to generate a video of the tracked poses, and check "Overwrite" to overwrite previously generated MARS output. Finally, click the green Run MARS button to start running!
You can track MARS's progress using the progress bars in the gui, or refer to your terminal for more detailed progress updates.
If you encounter any errors while running MARS, take the following steps: