├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── app.py ├── doc └── StableNormal-Teaser.png ├── gradio_cached_examples └── examples_image │ └── log.csv ├── hubconf.py ├── nirne ├── metrics │ ├── compute_metric.py │ └── compute_variance.py ├── pipeline_stablenormal.py ├── pipeline_yoso_normal.py ├── scheduler │ ├── __init__.py │ └── heuristics_ddimsampler.py └── stablecontrolnet.py ├── requirements.txt ├── requirements_min.txt ├── scripts ├── inference_indoor.py ├── inference_object.py └── inference_outdoor.py ├── setup.py └── stablenormal ├── __init__.py ├── metrics ├── compute_metric.py └── compute_variance.py ├── pipeline_stablenormal.py ├── pipeline_yoso_normal.py ├── scheduler ├── __init__.py └── heuristics_ddimsampler.py └── stablecontrolnet.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .DS_Store 3 | __pycache__ 4 | weights -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/app.py -------------------------------------------------------------------------------- /doc/StableNormal-Teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/doc/StableNormal-Teaser.png -------------------------------------------------------------------------------- /gradio_cached_examples/examples_image/log.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/gradio_cached_examples/examples_image/log.csv -------------------------------------------------------------------------------- /hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/hubconf.py -------------------------------------------------------------------------------- /nirne/metrics/compute_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/nirne/metrics/compute_metric.py -------------------------------------------------------------------------------- /nirne/metrics/compute_variance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/nirne/metrics/compute_variance.py -------------------------------------------------------------------------------- /nirne/pipeline_stablenormal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/nirne/pipeline_stablenormal.py -------------------------------------------------------------------------------- /nirne/pipeline_yoso_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/nirne/pipeline_yoso_normal.py -------------------------------------------------------------------------------- /nirne/scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nirne/scheduler/heuristics_ddimsampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/nirne/scheduler/heuristics_ddimsampler.py -------------------------------------------------------------------------------- /nirne/stablecontrolnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/nirne/stablecontrolnet.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/requirements_min.txt -------------------------------------------------------------------------------- /scripts/inference_indoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/scripts/inference_indoor.py -------------------------------------------------------------------------------- /scripts/inference_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/scripts/inference_object.py -------------------------------------------------------------------------------- /scripts/inference_outdoor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/scripts/inference_outdoor.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/setup.py -------------------------------------------------------------------------------- /stablenormal/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stablenormal/metrics/compute_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/stablenormal/metrics/compute_metric.py -------------------------------------------------------------------------------- /stablenormal/metrics/compute_variance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/stablenormal/metrics/compute_variance.py -------------------------------------------------------------------------------- /stablenormal/pipeline_stablenormal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/stablenormal/pipeline_stablenormal.py -------------------------------------------------------------------------------- /stablenormal/pipeline_yoso_normal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/stablenormal/pipeline_yoso_normal.py -------------------------------------------------------------------------------- /stablenormal/scheduler/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /stablenormal/scheduler/heuristics_ddimsampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/stablenormal/scheduler/heuristics_ddimsampler.py -------------------------------------------------------------------------------- /stablenormal/stablecontrolnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stable-X/StableNormal/HEAD/stablenormal/stablecontrolnet.py --------------------------------------------------------------------------------