Skip to content

Commit 204ee25

Browse files
Merge branch 'master' of https://github.com/fourMs/MGT-python
2 parents 908b4af + 223eaa7 commit 204ee25

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

docs/musicalgestures/_motionvideo.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ centroid of motion for each frame with timecodes in milliseconds.
8383

8484
## mg_motiondata
8585

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

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

123123
## mg_motiongrams
124124

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

127127
```python
128128
def mg_motiongrams(
@@ -163,7 +163,7 @@ Shortcut for [mg_motion](#mg_motion) to only render motiongrams.
163163

164164
## mg_motionplots
165165

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

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

207207
## mg_motionscore
208208

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

211211
```python
212212
def mg_motionscore(self):
213213
```
214214

215215
## mg_motionvideo
216216

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

219219
```python
220220
def mg_motionvideo(
@@ -249,7 +249,7 @@ Shortcut to only render the motion video. Uses musicalgestures._utils.motionvide
249249

250250
## save_analysis
251251

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

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

274274
## save_txt
275275

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

278278
```python
279279
def save_txt(

docs/musicalgestures/_pose.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## download_model
1010

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

1313
```python
1414
def download_model(modeltype):

docs/musicalgestures/_show.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## mg_show
1010

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

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

3636
## show_in_new_process
3737

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

4040
```python
4141
def show_in_new_process(cmd):

docs/musicalgestures/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343

4444
## Examples
4545

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

4848
```python
4949
class Examples():
@@ -52,7 +52,7 @@ class Examples():
5252

5353
## MgVideo
5454

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

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

9999
### MgVideo().from_numpy
100100

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

103103
```python
104104
def from_numpy(array, fps, target_name=None):
105105
```
106106

107107
### MgVideo().get_video
108108

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

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

117117
### MgVideo().numpy
118118

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

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

127127
### MgVideo().test_input
128128

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

131131
```python
132132
def test_input():

0 commit comments

Comments
 (0)