Skip to main content

Fully automated tracking of single rows of whiskers in high-speed video.

Project description

Janelia Whisker tracking

Fully automated tracking of single rows of whiskers in high-speed video.

The original source code repository is https://github.com/nclack/whisk/.
The associated website for this program is not accessible anymore outside of Janelia. A copy of the instructions and the tutorial are available here.

Downloading

Pre-built binaries are available on this forked repository.
Binary and library file can simply be installed from Pypi, with pip install whisk-janelia.

Note that on Linux, if not root, you may need to make some of the binary files executable, e.g. chmod +x /path/to/whisk/bin/trace. You can also use the post-installation script update_permissions.py to make all files in the whisk/bin directory executable. See also the README on the whisk-dockerfile repo, in whisk-base section.

Building

Updated build files are found here.
This package uses a Cmake based build system. The basic build steps are similar under Windows, OS X, and Linux.
The build requirements are cmake gcc-12.2+ ffmpeg.

For Unix-y systems:

  1. Install CMake 2.8+, a C++ compiler and other build tools.
sudo apt update
sudo cmake pkg-config bison gawk
sudo apt install g++ gdb make ninja-build rsync zip
  1. Install ffmpeg libraries
sudo apt install libavdevice-dev libavfilter-dev libavformat-dev libavcodec-dev libswresample-dev libswscale-dev libavutil-dev

If cmake still fails because of it can't find ffmpeg libraries libavdevice;libavfilter;libavformat;libavcodec;libswresample;libswscale;libavutil, you need to have them somewhere, and make it find it, e.g. export PKG_CONFIG_PATH=/home/jovyan/ffmpeg_build/lib/pkgconfig.

  1. Start in the root of the source directory (in a terminal).
  2. Type these commands (or use VSCode's CMake extension to configure and build):
    mkdir build
    cd build
    cmake ..
    make

For WSL systems, this page may be helpful: https://devblogs.microsoft.com/cppblog/build-and-debug-c-with-wsl-2-distributions-and-visual-studio-2022/

For Windows systems (ignore VS Code instructions if not using it):

  1. Install Visual Studio Code.
  2. Install the C/C++ extension for VS Code.
  3. Install Mingw-w64 via MSYS2. Prefer installing MSYS2 in a directory without space (e.g., not C:/Program Files/ ...). That will save you a lot of headaches.
  4. Launch a MSYS2 terminal for the UCRT64 environment as an administrator and install the following:
  • Install gcc as mentioned in MSYS2 installation page: pacman -S mingw-w64-ucrt-x86_64-gcc
  • Install the Mingw-w64 toolchain: pacman -S --needed base-devel mingw-w64-x86_64-toolchain
  • Install cmake and generators (ninja ... make is installed with the toolchain above, ): pacman -S mingw-w64-x86_64-cmake
  • Install the FFmpeg libraries for the 64-bit MinGW toolchain: To install the most recent version instead, run pacman -S mingw-w64-x86_64-ffmpeg.
    If using python (see packages whisk-janelia and whiskiwrap), you need to ensure compatibility between the ffmpeg version used to build whisk (currently, version 6.0) and the ffmpeg library files that python will call with the package ctypes. Tarballs are available for download on MSYS2's package page, or run wget https://mirror.msys2.org/mingw/mingw64/mingw-w64-x86_64-ffmpeg-6.0-7-any.pkg.tar.zst. Then, install the package with pacman -U mingw-w64-x86_64-ffmpeg-6.0-7-any.pkg.tar.zst.
  • Update the PKG_CONFIG_PATH environment variable to include the path to the FFmpeg library .pc files. In the MSYS2 terminal, run: export PKG_CONFIG_PATH=$PKG_CONFIG_PATH:/mingw64/lib/pkgconfig, and add it to ~/.bashrc as well to make this change permanent.
  1. Open a terminal, navigate to the whisk repository directory.
  2. Run the following commands:
    mkdir build
    cd build
    cmake ..
    ninja

CMake works by building the Makefile, or other required project files, in the "build" directory you created. You don't have to use a Makefile; XCode projects, Eclipse projects, Visual Studio projects, etc ... can be generated. To generate these other project types replace the "cmake .." step with "cmake-gui ..". The GUI will show available options. See the CMake documentation for more details.

File formats

Whiskers

Whiskers can be stored in either a text or binary format. There is a command line utility, whisker_convert, provided to convert between different supported formats. batch.py can be used to speed up the process of converting many files.

The most detailed description of each format can be found in the corresponding whisker_io_*.c files implimenting the readers/writers for each format.

In general, each whisker segment in a file is comprised of a unique id and a number of data points describing the shape as output from the tracing program.

Measurements

The measurements file stores the features of traced curves used for classification, such as follicle position, angle and whisker length. Additionally, after classification, this file records the determined identity of each traced curve.

Graphical interface

See ui/README for instructions on how to use the graphical user interface.

  ui2.py --help

Community

Chat

Issue Tracker

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

whisk-janelia-1.1.7.tar.gz (19.0 MB view hashes)

Uploaded Source

Built Distribution

whisk_janelia-1.1.7-py3-none-any.whl (19.1 MB view hashes)

Uploaded Python 3

Supported by

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