Skip to content

Commit

Permalink
adding slides for pose-estimation (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
niksirbi authored Dec 4, 2023
1 parent 484cf3f commit 513494d
Show file tree
Hide file tree
Showing 20 changed files with 934 additions and 0 deletions.
10 changes: 10 additions & 0 deletions img/diagrams/array-jobs.mmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
%%{init: {"theme": "neutral", "fontFamily": "arial", "curve": "linear"} }%%

flowchart LR
classDef emphasis fill:#03A062;

script["array script"] -->|"video 1"| GPU1["GPU 1"] --> model1["predictions 1"]
script -->|"video 2"| GPU2GPU1["GPU 2"] --> model2["predictions 2"]
script -->|"video n"| GPU3GPU1["GPU n"] --> model3["predictions n"]

class script emphasis
16 changes: 16 additions & 0 deletions img/diagrams/pose-estimation.mmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
%%{init: {"theme": "neutral", "fontFamily": "arial", "curve": "linear"} }%%

flowchart LR
classDef emphasis fill:#03A062;

videos("videos\n 1,2,...,n")
videos -->|extract| frames("sampled\n frames")
frames -->|label\n body parts| labels("training\n dataset")
labels -->|train| model
model("model") -->|infer| predictions("predicted\n body parts")
predictions -.->|fix labels| labels
videos -->|unseeen data| model


linkStyle 2 stroke:#03A062, color:;
linkStyle 3 stroke:#03A062, color:;
1 change: 1 addition & 0 deletions img/diagrams/pose-estimation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions img/diagrams/video_pipeline_pose.mmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
flowchart TB
classDef emphasis fill:#03A062;

video -->|compression/re-encoding | video2["compressed video"]
video2 -->|pose estimation + tracking| tracks["pose tracks"]
tracks --> |calculations| kinematics
tracks -->|classifiers| actions["actions / behav syllables"]
video2 --> |comp vision| actions

linkStyle 1 stroke:#03A062, color:;
class video2 emphasis
class tracks emphasis
Binary file added img/modern_behav_experiment_analysis.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/pose_estimation_2D.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/pose_estimation_bottomup.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/pose_estimation_topdown.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/sleap-evaluation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/sleap-labeling.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/sleap-monitoring.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/sleap-training.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/sleap_movie.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 513494d

Please sign in to comment.