forked from cheind/py-motmetrics
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
67 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
FROM ubuntu:latest | ||
|
||
MAINTAINER Avgerinos Christos <christosavg@gmail.com> | ||
|
||
#ARG GT_DIR | ||
#ARG TEST_DIR | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y python3-pip python3-dev vim \ | ||
&& cd /usr/local/bin \ | ||
&& ln -s /usr/bin/python3 python \ | ||
&& pip3 install --upgrade pip | ||
|
||
RUN pip3 install --no-cache-dir numpy scipy | ||
RUN pip install -Iv pandas==0.21.0 | ||
RUN mkdir -p /motmetrics/py-motmetrics | ||
RUN mkdir -p /motmetrics/2DMOT2015 | ||
|
||
COPY ./py-motmetrics /motmetrics/py-motmetrics | ||
COPY ./data /motmetrics/data | ||
|
||
#RUN pip install motmetrics | ||
RUN pip install -e ./motmetrics/py-motmetrics/ | ||
|
||
#RUN pip install -r motmetrics/py-motmetrics/requirements.txt | ||
|
||
ENV GT_DIR motmetrics/data/train/ | ||
ENV TEST_DIR motmetrics/data/test/ | ||
|
||
#ENTRYPOINT python3 -m motmetrics.apps.eval_motchallenge motmetrics/data/train/ motmetrics/data/test/ && /bin/bash | ||
CMD ["sh", "-c", "python3 -m motmetrics.apps.eval_motchallenge ${GT_DIR} ${TEST_DIR} && /bin/bash"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,4 @@ | |
|
||
|
||
# Needs to be last line | ||
__version__ = '1.1.2' | ||
__version__ = '1.1.3' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
numpy>=1.12.1 | ||
pandas>=0.19.2 | ||
pandas>=0.23.1 | ||
scipy>=0.19.0 |