CoolFace
Apppublic

manhdo/head_pose_estimation_tracking_app

sourceHugging Faceupdated 4y agoView on Hugging Face
1likes
Dockerfile13 linesDownload Raw Back to root
1FROM python:3.8.02 3WORKDIR /app4 5COPY requirements.txt .6RUN pip3 install --upgrade pip7RUN pip3 install -r requirements.txt8 9COPY app.py .10COPY drawing_utils.py .11COPY head_pose_info.yaml .12 13CMD [ "python3", "-m", "streamlit", "run", "app.py"]