Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimpoutaraud committed Jan 4, 2024
2 parents 908b4af + 223eaa7 commit 204ee25
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
14 changes: 7 additions & 7 deletions docs/musicalgestures/_motionvideo.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ centroid of motion for each frame with timecodes in milliseconds.

## mg_motiondata

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L393)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L394)

```python
def mg_motiondata(
Expand Down Expand Up @@ -122,7 +122,7 @@ Shortcut for [mg_motion](#mg_motion) to only render motion data.

## mg_motiongrams

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L280)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L281)

```python
def mg_motiongrams(
Expand Down Expand Up @@ -163,7 +163,7 @@ Shortcut for [mg_motion](#mg_motion) to only render motiongrams.

## mg_motionplots

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L471)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L472)

```python
def mg_motionplots(
Expand Down Expand Up @@ -206,15 +206,15 @@ Shortcut for [mg_motion](#mg_motion) to only render motion plots.

## mg_motionscore

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L533)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L534)

```python
def mg_motionscore(self):
```

## mg_motionvideo

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L347)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L348)

```python
def mg_motionvideo(
Expand Down Expand Up @@ -249,7 +249,7 @@ Shortcut to only render the motion video. Uses musicalgestures._utils.motionvide

## save_analysis

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L547)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L548)

```python
def save_analysis(
Expand All @@ -273,7 +273,7 @@ Helper function to plot the motion data using matplotlib.

## save_txt

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L753)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_motionvideo.py#L754)

```python
def save_txt(
Expand Down
2 changes: 1 addition & 1 deletion docs/musicalgestures/_pose.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

## download_model

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_pose.py#L344)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_pose.py#L350)

```python
def download_model(modeltype):
Expand Down
4 changes: 2 additions & 2 deletions docs/musicalgestures/_show.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

## mg_show

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_show.py#L15)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_show.py#L14)

```python
def mg_show(
Expand All @@ -35,7 +35,7 @@ General method to show an image or video file either in a window, or inline in a

## show_in_new_process

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_show.py#L297)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/_show.py#L296)

```python
def show_in_new_process(cmd):
Expand Down
12 changes: 6 additions & 6 deletions docs/musicalgestures/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@

## Examples

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/__init__.py#L225)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/__init__.py#L226)

```python
class Examples():
Expand All @@ -52,7 +52,7 @@ class Examples():

## MgVideo

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/__init__.py#L10)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/__init__.py#L11)

```python
class MgVideo(MgAudio):
Expand Down Expand Up @@ -98,15 +98,15 @@ These preprocesses will apply upon creating the MgVideo. Further processes are a

### MgVideo().from_numpy

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/__init__.py#L202)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/__init__.py#L203)

```python
def from_numpy(array, fps, target_name=None):
```

### MgVideo().get_video

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/__init__.py#L143)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/__init__.py#L144)

```python
def get_video():
Expand All @@ -116,7 +116,7 @@ Creates a video attribute to the Musical Gestures object with the given correct

### MgVideo().numpy

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/__init__.py#L191)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/__init__.py#L192)

```python
def numpy():
Expand All @@ -126,7 +126,7 @@ Pipe all video frames from FFmpeg to numpy array

### MgVideo().test_input

[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/__init__.py#L139)
[[find in source code]](https://github.com/fourMs/MGT-python/blob/master/musicalgestures/__init__.py#L140)

```python
def test_input():
Expand Down

0 comments on commit 204ee25

Please sign in to comment.