Compare commits

...

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

15 changed files with 47189 additions and 5236 deletions

View File

@ -1,11 +1,10 @@
FROM jupyter/minimal-notebook
COPY --chown=1000 environment.yml /tmp/
COPY --chown=1000 requirements.txt /tmp/
COPY --chown=1000 postBuild /tmp/
RUN conda env create -f /tmp/environment.yml \
&& conda activate video-analysis \
&& rm /tmp/environment.yml
RUN pip install -r /tmp/requirements.txt \
&& rm /tmp/requirements.txt
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/tree/ipynb)
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/git/https%3A%2F%2Fgit.sbruder.de%2Fsimon%2Fvideo-analysis/master?urlpath=lab)

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: 71 KiB

After

Width:  |  Height:  |  Size: 131 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 68 KiB

After

Width:  |  Height:  |  Size: 126 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 124 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 66 KiB

After

Width:  |  Height:  |  Size: 125 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 50 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 73 KiB

After

Width:  |  Height:  |  Size: 137 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 135 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 132 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 137 KiB

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 56 KiB

View File

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

4
requirements.txt Normal file
View File

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