diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 00000000..1cc58f10 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,24 @@ +name: build +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-20.04 + steps: + - uses: actions/checkout@v1 + - name: Build/Tests + run: | + sudo rm -rf /usr/share/dotnet + sudo rm -rf /opt/ghc + sudo rm -rf "/usr/local/share/boost" + sudo rm -rf "$AGENT_TOOLSDIRECTORY" + cd docker && ./build.sh + + deployment: + name: Deployment + runs-on: ubuntu-20.04 + needs: [build] + steps: + - uses: actions/checkout@v1 + - name: Deploy + run: | + echo "deploy is OK!" \ No newline at end of file diff --git a/README.md b/README.md index 71d971ff..58133448 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,12 @@ # DAGM-Mono: Deformable Attention-Guided Modeling for Monocular 3D Reconstruction +![workflow](https://github.com/YoushaaMurhij/DAGM-Mono/actions/workflows/main.yml/badge.svg) [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT) ## Introduction This repo is the Pytorch Code of DAGM-Mono: Deformable Attention-Guided Modeling for Monocular 3D Reconstruction. +### DAGM-Mono main pipeline: +drawing ## Data setting @@ -20,9 +23,9 @@ ${CODE Root} |-- images ``` -- Download annotation files to fill in `apollo_annot` [[hear](https://drive.google.com/file/d/1qCUdjJEnKS7jyXDVuDBO5wCYZFeo1VsY/view?usp=sharing)]. +- Download annotation files to fill in `apollo_annot` [[here](https://drive.google.com/file/d/1qCUdjJEnKS7jyXDVuDBO5wCYZFeo1VsY/view?usp=sharing)]. -- Download image files to fill in `images` [[hear](https://apolloscape.auto/car_instance.html)]. +- Download image files to fill in `images` [[here](https://apolloscape.auto/car_instance.html)]. ## Usage: diff --git a/assets/DAGM-Mono.png b/assets/DAGM-Mono.png new file mode 100644 index 00000000..b77a931b Binary files /dev/null and b/assets/DAGM-Mono.png differ