├── .gitattributes ├── .gitignore ├── .python_dependencies └── .gitignore ├── .vs ├── ProjectSettings.json ├── VSWorkspaceState.json ├── dream_textures │ └── v16 │ │ └── .suo └── slnx.sqlite ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __init__.py ├── absolute_path.py ├── builtin_presets ├── Debug.py ├── Final.py └── Preview.py ├── classes.py ├── docs ├── IMAGE_GENERATION.md ├── TEXTURE_PROJECTION.md └── assets │ ├── banner.png │ ├── history │ ├── history-export.png │ └── history-import.png │ ├── image_generation.png │ ├── image_generation │ └── opening-ui.png │ ├── inpaint_outpaint.png │ ├── readme-toggle-console.png │ ├── texture_projection.png │ └── texture_projection │ ├── edit_mode.png │ └── projection.gif ├── generator_process ├── __init__.py ├── actions │ ├── SuperResolution.py │ ├── async_pipeline.py │ ├── controlnet_depth_to_image.py │ ├── controlnet_depth_to_image_int8.py │ ├── depth_to_image.py │ ├── huggingface_hub.py │ ├── ocio_transform.py │ ├── p2i_blender.png │ ├── prompt_to_image.py │ ├── prompt_to_image_int8.py │ └── test1_blender.png ├── actor.py ├── block_in_use.py ├── directml_patches.py └── models │ ├── __init__.py │ ├── fix_it_error.py │ └── pipeline.py ├── install.bat ├── model_download.py ├── operators ├── dream_texture.py ├── notify_result.py ├── open_latest_version.py ├── project.py └── view_history.py ├── pil_to_image.py ├── prompt_engineering.py ├── property_groups ├── dream_prompt.py └── dream_prompt_validation.py ├── realtime_viewport.py ├── render_pass.py ├── requirements └── win-openvino.txt ├── scripts └── train_detect_seamless.py ├── security.md ├── ui ├── panels │ ├── dream_texture.py │ ├── history.py │ ├── render_properties.py │ └── upscaling.py ├── presets.py └── space_types.py └── version.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/.gitignore -------------------------------------------------------------------------------- /.python_dependencies/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /.vs/ProjectSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "CurrentProjectSetting": null 3 | } -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/dream_textures/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/.vs/dream_textures/v16/.suo -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/__init__.py -------------------------------------------------------------------------------- /absolute_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/absolute_path.py -------------------------------------------------------------------------------- /builtin_presets/Debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/builtin_presets/Debug.py -------------------------------------------------------------------------------- /builtin_presets/Final.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/builtin_presets/Final.py -------------------------------------------------------------------------------- /builtin_presets/Preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/builtin_presets/Preview.py -------------------------------------------------------------------------------- /classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/classes.py -------------------------------------------------------------------------------- /docs/IMAGE_GENERATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/docs/IMAGE_GENERATION.md -------------------------------------------------------------------------------- /docs/TEXTURE_PROJECTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/docs/TEXTURE_PROJECTION.md -------------------------------------------------------------------------------- /docs/assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/docs/assets/banner.png -------------------------------------------------------------------------------- /docs/assets/history/history-export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/docs/assets/history/history-export.png -------------------------------------------------------------------------------- /docs/assets/history/history-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/docs/assets/history/history-import.png -------------------------------------------------------------------------------- /docs/assets/image_generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/docs/assets/image_generation.png -------------------------------------------------------------------------------- /docs/assets/image_generation/opening-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/docs/assets/image_generation/opening-ui.png -------------------------------------------------------------------------------- /docs/assets/inpaint_outpaint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/docs/assets/inpaint_outpaint.png -------------------------------------------------------------------------------- /docs/assets/readme-toggle-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/docs/assets/readme-toggle-console.png -------------------------------------------------------------------------------- /docs/assets/texture_projection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/docs/assets/texture_projection.png -------------------------------------------------------------------------------- /docs/assets/texture_projection/edit_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/docs/assets/texture_projection/edit_mode.png -------------------------------------------------------------------------------- /docs/assets/texture_projection/projection.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/docs/assets/texture_projection/projection.gif -------------------------------------------------------------------------------- /generator_process/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/__init__.py -------------------------------------------------------------------------------- /generator_process/actions/SuperResolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/actions/SuperResolution.py -------------------------------------------------------------------------------- /generator_process/actions/async_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/actions/async_pipeline.py -------------------------------------------------------------------------------- /generator_process/actions/controlnet_depth_to_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/actions/controlnet_depth_to_image.py -------------------------------------------------------------------------------- /generator_process/actions/controlnet_depth_to_image_int8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/actions/controlnet_depth_to_image_int8.py -------------------------------------------------------------------------------- /generator_process/actions/depth_to_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/actions/depth_to_image.py -------------------------------------------------------------------------------- /generator_process/actions/huggingface_hub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/actions/huggingface_hub.py -------------------------------------------------------------------------------- /generator_process/actions/ocio_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/actions/ocio_transform.py -------------------------------------------------------------------------------- /generator_process/actions/p2i_blender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/actions/p2i_blender.png -------------------------------------------------------------------------------- /generator_process/actions/prompt_to_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/actions/prompt_to_image.py -------------------------------------------------------------------------------- /generator_process/actions/prompt_to_image_int8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/actions/prompt_to_image_int8.py -------------------------------------------------------------------------------- /generator_process/actions/test1_blender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/actions/test1_blender.png -------------------------------------------------------------------------------- /generator_process/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/actor.py -------------------------------------------------------------------------------- /generator_process/block_in_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/block_in_use.py -------------------------------------------------------------------------------- /generator_process/directml_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/directml_patches.py -------------------------------------------------------------------------------- /generator_process/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/models/__init__.py -------------------------------------------------------------------------------- /generator_process/models/fix_it_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/models/fix_it_error.py -------------------------------------------------------------------------------- /generator_process/models/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/generator_process/models/pipeline.py -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/install.bat -------------------------------------------------------------------------------- /model_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/model_download.py -------------------------------------------------------------------------------- /operators/dream_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/operators/dream_texture.py -------------------------------------------------------------------------------- /operators/notify_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/operators/notify_result.py -------------------------------------------------------------------------------- /operators/open_latest_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/operators/open_latest_version.py -------------------------------------------------------------------------------- /operators/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/operators/project.py -------------------------------------------------------------------------------- /operators/view_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/operators/view_history.py -------------------------------------------------------------------------------- /pil_to_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/pil_to_image.py -------------------------------------------------------------------------------- /prompt_engineering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/prompt_engineering.py -------------------------------------------------------------------------------- /property_groups/dream_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/property_groups/dream_prompt.py -------------------------------------------------------------------------------- /property_groups/dream_prompt_validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/property_groups/dream_prompt_validation.py -------------------------------------------------------------------------------- /realtime_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/realtime_viewport.py -------------------------------------------------------------------------------- /render_pass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/render_pass.py -------------------------------------------------------------------------------- /requirements/win-openvino.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/requirements/win-openvino.txt -------------------------------------------------------------------------------- /scripts/train_detect_seamless.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/scripts/train_detect_seamless.py -------------------------------------------------------------------------------- /security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/security.md -------------------------------------------------------------------------------- /ui/panels/dream_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/ui/panels/dream_texture.py -------------------------------------------------------------------------------- /ui/panels/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/ui/panels/history.py -------------------------------------------------------------------------------- /ui/panels/render_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/ui/panels/render_properties.py -------------------------------------------------------------------------------- /ui/panels/upscaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/ui/panels/upscaling.py -------------------------------------------------------------------------------- /ui/presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/ui/presets.py -------------------------------------------------------------------------------- /ui/space_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/ui/space_types.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/intel/dream-textures-openvino/HEAD/version.py --------------------------------------------------------------------------------