-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
28c09f1
commit cca9d61
Showing
1 changed file
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,58 @@ | ||
# lp3d-analysis | ||
|
||
|
||
## Installation | ||
|
||
**Install `ffmpeg`** | ||
|
||
First, check to see if you have `ffmpeg` installed by typing the following in the terminal: | ||
|
||
``` | ||
ffmpeg -version | ||
``` | ||
|
||
If not, install: | ||
|
||
``` | ||
sudo apt install ffmpeg | ||
``` | ||
|
||
**Set up a `conda` environment** | ||
|
||
``` | ||
conda create --yes --name labeler python=3.8 | ||
conda activate labeler | ||
``` | ||
|
||
**Install dependencies** | ||
|
||
Lightning Pose: | ||
``` | ||
git clone https://github.com/danbider/lightning-pose.git | ||
cd lightning-pose | ||
pip install -e . | ||
cd .. | ||
``` | ||
|
||
Ensemble Kalman Smoother: | ||
``` | ||
git clone https://github.com/paninski-lab/eks.git | ||
cd eks | ||
pip install -e . | ||
cd .. | ||
``` | ||
|
||
**Install `lp3d-analysis` package locally** | ||
|
||
``` | ||
git clone https://github.com/paninski-lab/keypoint-pseudo-labeler.git | ||
cd lp3d-analysis | ||
pip install -e . | ||
cd .. | ||
``` | ||
|
||
## Use | ||
|
||
``` | ||
python pipelines/run_pipeline.py --config <path_to_pipeline_config> | ||
``` |