Compare commits

...

No commits in common. "a07ead8a9eb0395bea74150ae049f6136063a402" and "f1fdc7b498f485be48ce9ddff9e1133a0998f513" have entirely different histories.

15 changed files with 5261 additions and 47214 deletions

View File

@ -1,10 +1,11 @@
FROM jupyter/minimal-notebook
COPY --chown=1000 requirements.txt /tmp/
COPY --chown=1000 environment.yml /tmp/
COPY --chown=1000 postBuild /tmp/
RUN pip install -r /tmp/requirements.txt \
&& rm /tmp/requirements.txt
RUN conda env create -f /tmp/environment.yml \
&& conda activate video-analysis \
&& rm /tmp/environment.yml
RUN /tmp/postBuild \
&& rm /tmp/postBuild

View File

@ -1,3 +1,3 @@
# video analysis
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/git/https%3A%2F%2Fgit.sbruder.de%2Fsimon%2Fvideo-analysis/master?urlpath=lab)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/git/https%3A%2F%2Fgit.sbruder.de%2Fsimon%2Fvideo-analysis/master?urlpath=lab/tree/ipynb)

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 131 KiB

After

Width:  |  Height:  |  Size: 71 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 126 KiB

After

Width:  |  Height:  |  Size: 68 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 124 KiB

After

Width:  |  Height:  |  Size: 66 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 125 KiB

After

Width:  |  Height:  |  Size: 66 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 50 KiB

After

Width:  |  Height:  |  Size: 26 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 137 KiB

After

Width:  |  Height:  |  Size: 73 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 135 KiB

After

Width:  |  Height:  |  Size: 72 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 132 KiB

After

Width:  |  Height:  |  Size: 69 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 137 KiB

After

Width:  |  Height:  |  Size: 72 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 56 KiB

After

Width:  |  Height:  |  Size: 28 KiB

6
environment.yml Normal file
View File

@ -0,0 +1,6 @@
name: video-analysis
dependencies:
- matplotlib
- numpy
- pandas
- scipy

View File

@ -1,4 +0,0 @@
matplotlib
numpy
pandas
scipy