├── LICENSE ├── README.md ├── intrinsic_lora_addon ├── __init__.py ├── camera_utils.py ├── generate_texture.py ├── image_utils.py ├── intrinsic_lora.py └── pretrained_weights │ └── place_intrinsic_loras_here └── requirements.txt /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neph1/blender-intrinsic-lora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neph1/blender-intrinsic-lora/HEAD/README.md -------------------------------------------------------------------------------- /intrinsic_lora_addon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neph1/blender-intrinsic-lora/HEAD/intrinsic_lora_addon/__init__.py -------------------------------------------------------------------------------- /intrinsic_lora_addon/camera_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neph1/blender-intrinsic-lora/HEAD/intrinsic_lora_addon/camera_utils.py -------------------------------------------------------------------------------- /intrinsic_lora_addon/generate_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neph1/blender-intrinsic-lora/HEAD/intrinsic_lora_addon/generate_texture.py -------------------------------------------------------------------------------- /intrinsic_lora_addon/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neph1/blender-intrinsic-lora/HEAD/intrinsic_lora_addon/image_utils.py -------------------------------------------------------------------------------- /intrinsic_lora_addon/intrinsic_lora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neph1/blender-intrinsic-lora/HEAD/intrinsic_lora_addon/intrinsic_lora.py -------------------------------------------------------------------------------- /intrinsic_lora_addon/pretrained_weights/place_intrinsic_loras_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neph1/blender-intrinsic-lora/HEAD/requirements.txt --------------------------------------------------------------------------------