![]() |
VOOZH | about |
dotnet add package Bonsai.DeepLabCut --version 0.4.0
NuGet\Install-Package Bonsai.DeepLabCut -Version 0.4.0
<PackageReference Include="Bonsai.DeepLabCut" Version="0.4.0" />
<PackageVersion Include="Bonsai.DeepLabCut" Version="0.4.0" />Directory.Packages.props
<PackageReference Include="Bonsai.DeepLabCut" />Project file
paket add Bonsai.DeepLabCut --version 0.4.0
#r "nuget: Bonsai.DeepLabCut, 0.4.0"
#:package Bonsai.DeepLabCut@0.4.0
#addin nuget:?package=Bonsai.DeepLabCut&version=0.4.0Install as a Cake Addin
#tool nuget:?package=Bonsai.DeepLabCut&version=0.4.0Install as a Cake Tool
Bonsai.DeepLabCut is a Bonsai interface for DeepLabCut allowing real-time markerless pose estimation using pretrained models stored in the Protocol Buffers (pb) format. Natively, DLC stores the result of training as checkpoints, but it is possible to export them to .pb files using the deeplabcut.export_model function within DLC (Read more here).
Bonsai.DeepLabCut loads these .pb files using TensorFlowSharp, a set of .NET bindings for TensorFlow allowing native inference using either the CPU or GPU. By using the .pb file and the pose configuration YAML (pose_cfg.yaml), the DetectPose operator from Bonsai.DeepLabCut automatically sets up an inference graph and feeds it with live image data coming from any other Bonsai image source. The output is a Pose class which you can access to extract specific body parts, filter out invalid positions using a confidence threshold, or record using CsvWriter.
The Bonsai.DeepLabCut project was kickstarted at the DeepLabCut Hackathon sponsored by the Chan Zuckerberg Initiative and held at Harvard University in March 2020. It has since been published in eLife (Kane et al, eLife 2020).
Bonsai.DeepLabCut can be downloaded through the Bonsai package manager. In order to get visualizer support, you should download both the Bonsai.DeepLabCut and Bonsai.DeepLabCut.Design packages. However, in order to use it for either CPU or GPU inference, you need to pair it with a compiled native TensorFlow binary. You can find precompiled binaries for Windows 64-bit at https://www.tensorflow.org/install/lang_c.
To use GPU TensorFlow (highly recommended for live inference), you also need to install the CUDA Toolkit 11.2 from the CUDA Toolkit Archive, and download cuDNN 8.1.0 for CUDA 11.2. Make sure you have a CUDA 11 compatible GPU with the latest NVIDIA drivers.
After downloading the native TensorFlow binary and cuDNN, you can follow these steps to get the required native files into the Extensions folder of your local Bonsai install:
tensorflow.dll file from either the CPU or GPU tensorflow release to the Extensions folder;cuda/bin folder of your cuDNN download to the PATH environment variable, or copy all DLL files to the Extensions folder.The core operator of Bonsai.DeepLabCut is the DetectPose node. You can place it after any image source, like so:
You will also need to point the ModelFileName to the exported .pb file containing your pretrained DLC model, and the PoseConfigFileName to the pose_cfg.yaml file describing the joint labels of the pose skeleton.
If everything works out, you should see some indications in the Bonsai command line window about whether the GPU was successfully detected and enabled. The first frame will cold start the inference graph which may take a bit of time, but after that your poses should start streaming through!
For all questions regarding installation of DeepLabCut, please check the official docs. However, we did find the following build steps to be reliable for a self-contained barebones install on Windows at the time of writing:
WinPython Command Prompt.exe.pip install tensorflow==2.8.0 or pip install tensorflow-gpu==2.8.0 depending on whether you will be using CPU or GPU TensorFlow.pip install deeplabcut[gui]==2.2.0.6.python -m deeplabcut.| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net472 net472 is compatible. net48 net48 was computed. net481 net481 was computed. |
Showing the top 1 NuGet packages that depend on Bonsai.DeepLabCut:
| Package | Downloads |
|---|---|
|
Bonsai.DeepLabCut.Design
Bonsai Library containing reactive visualizations for markerless pose estimation using DeepLabCut. |
This package is not used by any popular GitHub repositories.