Skip to content

Commit

Permalink
[feats] add AnyObject3D assets and .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
florinshen committed Apr 16, 2023
1 parent 8093d96 commit fcfffc9
Show file tree
Hide file tree
Showing 6 changed files with 133 additions and 1 deletion.
122 changes: 122 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# PyTorch checkpoint
*.pth

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/
.pytest_cache/

# Translations
*.mo
*.pot

# Django stuff:
*.log
local_settings.py
db.sqlite3

# Flask stuff:
instance/
.webassets-cache

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/en/_build/
docs/en/api/generated/
docs/zh_cn/_build/
docs/zh_cn/api/generated/

# PyBuilder
target/

# Jupyter Notebook
.ipynb_checkpoints

# pyenv
.python-version

# celery beat schedule file
celerybeat-schedule

# SageMath parsed files
*.sage.py

# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/

# Spyder project settings
.spyderproject
.spyproject

# Rope project settings
.ropeproject

# mkdocs documentation
/site

# mypy
.mypy_cache/

# editors and IDEs
.idea/
.vscode/

# custom
.DS_Store

# datasets and logs and checkpoints
data/
work_dir/

Binary file added AnyObject3D/assets/bull.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AnyObject3D/assets/bull_mask.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AnyObject3D/assets/corgi.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added AnyObject3D/assets/corgi_mask.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ We plan to create a very interesting demo by combining [Segment Anything](https:

- [Anything-3DNovel-View](#anything-3dnovel-view)
- [Any-3DFace](#any-3dface)
- [Anything-3D-Objects](#anything-3d-objects)
- [:cupid: Acknowledgements](#cupid-acknowledgements)
- [Citation](#citation)
## Anything-3DNovel-View
Expand All @@ -18,17 +19,26 @@ We plan to create a very interesting demo by combining [Segment Anything](https:
- SAM + [HRN](https://younglbw.github.io/HRN-homepage/)

| Segmentation | Result|
| --- | ---|
| :---: | :---:|
| <img src="AnyFace3D/assets/celebrity_selfie/mask_1.jpg" width="2000"> | ![1](AnyFace3D/assets/celebrity_selfie/1.gif) |
| <img src="AnyFace3D/assets/celebrity_selfie/mask_2.jpg" width="2000">| ![3](AnyFace3D/assets/celebrity_selfie/2.gif) |
| <img src="AnyFace3D/assets/celebrity_selfie/mask_3.jpg" width="2000">| ![3](AnyFace3D/assets/celebrity_selfie/3.gif) |


## Anything-3D-Objects
- SAM + [3DFuse](https://github.com/KU-CVLAB/3DFuse)

| Segmentation | Result|
| :---: | :---:|
| <img src="AnyObject3D/assets/bull_mask.png" width="1000"> | ![1](AnyObject3D/assets/bull.gif) |
| <img src="AnyObject3D/assets/corgi_mask.png" width="1000">| ![2](AnyObject3D/assets/corgi.gif) |


## :cupid: Acknowledgements
- [Segment Anything](https://github.com/facebookresearch/segment-anything)
- [Zero 1-to-3](https://github.com/cvlab-columbia/zero123)
- [HRN](https://younglbw.github.io/HRN-homepage/)
- [3DFuse](https://github.com/KU-CVLAB/3DFuse)

## Citation
If you find this project helpful for your research, please consider citing the following BibTeX entry.
Expand Down

0 comments on commit fcfffc9

Please sign in to comment.