├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── publish.yml ├── .gitignore ├── .vscode └── settings.json ├── Checkpoints ├── CRM │ └── Put Convolutional Reconstruction Model here.txt ├── CRM_T2I_V3 │ └── Put CRM_T2I_V3 model here.txt ├── CharacterGen │ ├── .gitattributes │ ├── 2D_Stage │ │ └── models │ │ │ └── image_encoder │ │ │ └── config.json │ ├── 3D_Stage │ │ └── models │ │ │ └── base │ │ │ ├── README.md │ │ │ ├── config.json │ │ │ └── preprocessor_config.json │ ├── Put CharacterGen Model here.txt │ └── README.md ├── Craftsman │ └── image-to-shape-diffusion │ │ └── clip-mvrgb-modln-l256-e64-ne8-nd16-nl6-aligned-vae │ │ └── Put Craftsman Model here.txt ├── Diffusers │ ├── JeffreyXiang │ │ └── TRELLIS-image-large │ │ │ ├── .gitattributes │ │ │ └── README.md │ ├── MrForExample │ │ └── Unique3D │ │ │ ├── .gitattributes │ │ │ ├── README.md │ │ │ ├── image2mvimage │ │ │ ├── feature_extractor │ │ │ │ └── preprocessor_config.json │ │ │ ├── image_encoder │ │ │ │ └── config.json │ │ │ ├── model_index.json │ │ │ ├── scheduler │ │ │ │ └── scheduler_config.json │ │ │ ├── unet │ │ │ │ └── config.json │ │ │ └── vae │ │ │ │ └── config.json │ │ │ ├── image2normal │ │ │ ├── feature_extractor │ │ │ │ └── preprocessor_config.json │ │ │ ├── image_encoder │ │ │ │ └── config.json │ │ │ ├── model_index.json │ │ │ ├── scheduler │ │ │ │ └── scheduler_config.json │ │ │ ├── unet │ │ │ │ └── config.json │ │ │ └── vae │ │ │ │ └── config.json │ │ │ └── v1-inference.yaml │ ├── Stable3DGen │ │ ├── stablex │ │ │ └── yoso-normal-v1-8-1 │ │ │ │ ├── .gitattributes │ │ │ │ ├── README.md │ │ │ │ ├── controlnet │ │ │ │ ├── config.json │ │ │ │ └── controlnetvae.py │ │ │ │ ├── model_index.json │ │ │ │ ├── unet │ │ │ │ └── config.json │ │ │ │ └── vae │ │ │ │ └── config.json │ │ └── trellis │ │ │ └── trellis-normal-v0-1 │ │ │ ├── .gitattributes │ │ │ ├── README.md │ │ │ ├── ckpts │ │ │ ├── slat_dec_mesh_swin8_B_64l8m256c_fp16.json │ │ │ ├── slat_flow_normal_dit_L_64l8p2_fp16.json │ │ │ ├── ss_dec_conv3d_16l8_fp16.json │ │ │ └── ss_flow_normal_dit_L_16l8_fp16.json │ │ │ └── pipeline.json │ ├── TencentARC │ │ └── InstantMesh │ │ │ └── Put InstantMesh modified Zero123Plus Duffusion model here.txt │ ├── VAST-AI │ │ ├── TripoSG-scribble │ │ │ ├── .gitattributes │ │ │ ├── README.md │ │ │ ├── feature_extractor_dinov2 │ │ │ │ └── preprocessor_config.json │ │ │ ├── image_encoder_dinov2 │ │ │ │ └── config.json │ │ │ ├── model_index.json │ │ │ ├── scheduler │ │ │ │ └── scheduler_config.json │ │ │ ├── text_encoder │ │ │ │ └── config.json │ │ │ ├── tokenizer │ │ │ │ ├── merges.txt │ │ │ │ ├── special_tokens_map.json │ │ │ │ ├── tokenizer_config.json │ │ │ │ └── vocab.json │ │ │ ├── transformer │ │ │ │ └── config.json │ │ │ └── vae │ │ │ │ └── config.json │ │ └── TripoSG │ │ │ ├── .gitattributes │ │ │ ├── README.md │ │ │ ├── feature_extractor_dinov2 │ │ │ └── preprocessor_config.json │ │ │ ├── image_encoder_dinov2 │ │ │ └── config.json │ │ │ ├── model_index.json │ │ │ ├── scheduler │ │ │ └── scheduler_config.json │ │ │ ├── transformer │ │ │ └── config.json │ │ │ └── vae │ │ │ └── config.json │ ├── ashawkey │ │ └── imagedream-ipmv-diffusers │ │ │ ├── .gitattributes │ │ │ ├── README.md │ │ │ ├── feature_extractor │ │ │ └── preprocessor_config.json │ │ │ ├── image_encoder │ │ │ └── config.json │ │ │ ├── model_index.json │ │ │ ├── pipeline_mvdream.py │ │ │ ├── scheduler │ │ │ └── scheduler_config.json │ │ │ ├── text_encoder │ │ │ └── config.json │ │ │ ├── tokenizer │ │ │ ├── merges.txt │ │ │ ├── special_tokens_map.json │ │ │ ├── tokenizer_config.json │ │ │ └── vocab.json │ │ │ ├── unet │ │ │ ├── config.json │ │ │ └── mv_unet.py │ │ │ └── vae │ │ │ └── config.json │ ├── flamehaze1115 │ │ └── wonder3d-v1.0 │ │ │ ├── .gitattributes │ │ │ ├── README.md │ │ │ ├── feature_extractor │ │ │ └── preprocessor_config.json │ │ │ ├── image_encoder │ │ │ └── config.json │ │ │ ├── model_index.json │ │ │ ├── scheduler │ │ │ └── scheduler_config.json │ │ │ ├── unet │ │ │ └── config.json │ │ │ └── vae │ │ │ └── config.json │ ├── jetx │ │ └── TRELLIS-image-large │ │ │ ├── .gitattributes │ │ │ └── README.md │ ├── pengHTYX │ │ └── MacLab-Era3D-512-6view │ │ │ ├── .gitattributes │ │ │ ├── README.md │ │ │ ├── feature_extractor │ │ │ └── preprocessor_config.json │ │ │ ├── image_encoder │ │ │ └── config.json │ │ │ ├── image_noising_scheduler │ │ │ └── scheduler_config.json │ │ │ ├── image_normalizer │ │ │ └── config.json │ │ │ ├── model_index.json │ │ │ ├── scheduler │ │ │ └── scheduler_config.json │ │ │ ├── text_encoder │ │ │ └── config.json │ │ │ ├── tokenizer │ │ │ ├── merges.txt │ │ │ ├── special_tokens_map.json │ │ │ ├── tokenizer_config.json │ │ │ └── vocab.json │ │ │ ├── unet │ │ │ └── config.json │ │ │ └── vae │ │ │ └── config.json │ ├── sudo-ai │ │ └── zero123plus-v1.2 │ │ │ ├── .gitattributes │ │ │ ├── feature_extractor_clip │ │ │ └── preprocessor_config.json │ │ │ ├── feature_extractor_vae │ │ │ └── preprocessor_config.json │ │ │ ├── model_index.json │ │ │ ├── scheduler │ │ │ └── scheduler_config.json │ │ │ ├── text_encoder │ │ │ └── config.json │ │ │ ├── tokenizer │ │ │ ├── merges.txt │ │ │ ├── special_tokens_map.json │ │ │ ├── tokenizer_config.json │ │ │ └── vocab.json │ │ │ ├── unet │ │ │ └── config.json │ │ │ ├── vae │ │ │ └── config.json │ │ │ └── vision_encoder │ │ │ └── config.json │ ├── tencent │ │ ├── Hunyuan3D-1 │ │ │ ├── .gitattributes │ │ │ ├── LICENSE.txt │ │ │ ├── Notice │ │ │ ├── README.md │ │ │ ├── config.json │ │ │ ├── mvd_lite │ │ │ │ ├── .gitattributes │ │ │ │ ├── feature_extractor_clip │ │ │ │ │ └── preprocessor_config.json │ │ │ │ ├── feature_extractor_vae │ │ │ │ │ └── preprocessor_config.json │ │ │ │ ├── model_index.json │ │ │ │ ├── scheduler │ │ │ │ │ └── scheduler_config.json │ │ │ │ ├── text_encoder │ │ │ │ │ └── config.json │ │ │ │ ├── tokenizer │ │ │ │ │ ├── merges.txt │ │ │ │ │ ├── special_tokens_map.json │ │ │ │ │ ├── tokenizer_config.json │ │ │ │ │ └── vocab.json │ │ │ │ ├── unet │ │ │ │ │ └── config.json │ │ │ │ ├── vae │ │ │ │ │ └── config.json │ │ │ │ └── vision_encoder │ │ │ │ │ ├── config.json │ │ │ │ │ └── preprocessor_config.json │ │ │ └── mvd_std │ │ │ │ ├── feature_extractor_vae │ │ │ │ └── preprocessor_config.json │ │ │ │ ├── model_index.json │ │ │ │ ├── scheduler │ │ │ │ └── scheduler_config.json │ │ │ │ ├── unet │ │ │ │ └── config.json │ │ │ │ ├── vae │ │ │ │ └── config.json │ │ │ │ ├── vision_encoder │ │ │ │ └── config.json │ │ │ │ ├── vision_encoder_2 │ │ │ │ └── config.json │ │ │ │ └── vision_processor │ │ │ │ └── preprocessor_config.json │ │ ├── Hunyuan3D-2 │ │ │ ├── .gitattributes │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── config.json │ │ │ ├── hunyuan3d-delight-v2-0 │ │ │ │ ├── feature_extractor │ │ │ │ │ └── preprocessor_config.json │ │ │ │ ├── model_index.json │ │ │ │ ├── scheduler │ │ │ │ │ └── scheduler_config.json │ │ │ │ ├── text_encoder │ │ │ │ │ └── config.json │ │ │ │ ├── tokenizer │ │ │ │ │ ├── merges.txt │ │ │ │ │ ├── special_tokens_map.json │ │ │ │ │ ├── tokenizer_config.json │ │ │ │ │ └── vocab.json │ │ │ │ ├── unet │ │ │ │ │ └── config.json │ │ │ │ └── vae │ │ │ │ │ └── config.json │ │ │ ├── hunyuan3d-dit-v2-0-fast │ │ │ │ └── config.yaml │ │ │ ├── hunyuan3d-dit-v2-0-turbo │ │ │ │ └── config.yaml │ │ │ ├── hunyuan3d-dit-v2-0 │ │ │ │ └── config.yaml │ │ │ ├── hunyuan3d-paint-v2-0-turbo │ │ │ │ ├── .gitattributes │ │ │ │ ├── README.md │ │ │ │ ├── feature_extractor │ │ │ │ │ └── preprocessor_config.json │ │ │ │ ├── image_encoder │ │ │ │ │ ├── config.json │ │ │ │ │ └── preprocessor_config.json │ │ │ │ ├── model_index.json │ │ │ │ ├── scheduler │ │ │ │ │ └── scheduler_config.json │ │ │ │ ├── text_encoder │ │ │ │ │ └── config.json │ │ │ │ ├── tokenizer │ │ │ │ │ ├── merges.txt │ │ │ │ │ ├── special_tokens_map.json │ │ │ │ │ ├── tokenizer_config.json │ │ │ │ │ └── vocab.json │ │ │ │ ├── unet │ │ │ │ │ ├── config.json │ │ │ │ │ └── modules.py │ │ │ │ └── vae │ │ │ │ │ └── config.json │ │ │ ├── hunyuan3d-paint-v2-0 │ │ │ │ ├── .gitattributes │ │ │ │ ├── feature_extractor │ │ │ │ │ └── preprocessor_config.json │ │ │ │ ├── model_index.json │ │ │ │ ├── scheduler │ │ │ │ │ └── scheduler_config.json │ │ │ │ ├── text_encoder │ │ │ │ │ └── config.json │ │ │ │ ├── tokenizer │ │ │ │ │ ├── merges.txt │ │ │ │ │ ├── special_tokens_map.json │ │ │ │ │ ├── tokenizer_config.json │ │ │ │ │ └── vocab.json │ │ │ │ ├── unet │ │ │ │ │ ├── config.json │ │ │ │ │ └── modules.py │ │ │ │ └── vae │ │ │ │ │ └── config.json │ │ │ ├── hunyuan3d-vae-v2-0-turbo │ │ │ │ └── config.yaml │ │ │ └── hunyuan3d-vae-v2-0 │ │ │ │ └── config.yaml │ │ ├── Hunyuan3D-2_1 │ │ │ ├── hunyuan3d-dit-v2-1 │ │ │ │ └── config.yaml │ │ │ ├── hunyuan3d-paintpbr-v2-1 │ │ │ │ ├── feature_extractor │ │ │ │ │ └── preprocessor_config.json │ │ │ │ ├── image_encoder │ │ │ │ │ └── config.json │ │ │ │ ├── model_index.json │ │ │ │ ├── scheduler │ │ │ │ │ └── scheduler_config.json │ │ │ │ ├── text_encoder │ │ │ │ │ └── config.json │ │ │ │ ├── tokenizer │ │ │ │ │ ├── special_tokens_map.json │ │ │ │ │ ├── tokenizer_config.json │ │ │ │ │ └── vocab.json │ │ │ │ ├── unet │ │ │ │ │ └── config.json │ │ │ │ └── vae │ │ │ │ │ └── config.json │ │ │ └── hunyuan3d-vae-v2-1 │ │ │ │ └── config.yaml │ │ ├── Hunyuan3D-2mini │ │ │ ├── hunyuan3d-dit-v2-mini-fast │ │ │ │ └── config.yaml │ │ │ ├── hunyuan3d-dit-v2-mini-turbo │ │ │ │ └── config.yaml │ │ │ └── hunyuan3d-dit-v2-mini │ │ │ │ └── config.yaml │ │ └── Hunyuan3D-2mv │ │ │ ├── hunyuan3d-dit-v2-mv-fast │ │ │ └── config.yaml │ │ │ ├── hunyuan3d-dit-v2-mv-turbo │ │ │ └── config.yaml │ │ │ └── hunyuan3d-dit-v2-mv │ │ │ └── config.yaml │ └── wgsxm │ │ ├── PartCrafter-Scene │ │ ├── .gitattributes │ │ ├── README.md │ │ ├── feature_extractor_dinov2 │ │ │ └── preprocessor_config.json │ │ ├── image_encoder_dinov2 │ │ │ └── config.json │ │ ├── model_index.json │ │ ├── scheduler │ │ │ └── scheduler_config.json │ │ ├── transformer │ │ │ └── config.json │ │ └── vae │ │ │ └── config.json │ │ └── PartCrafter │ │ ├── .gitattributes │ │ ├── README.md │ │ ├── feature_extractor_dinov2 │ │ └── preprocessor_config.json │ │ ├── image_encoder_dinov2 │ │ └── config.json │ │ ├── model_index.json │ │ ├── scheduler │ │ └── scheduler_config.json │ │ ├── transformer │ │ └── config.json │ │ └── vae │ │ └── config.json ├── InstantMesh │ └── Put InstantMesh model here.txt ├── LGM │ └── Put Large Multiview Gaussian Model here.txt ├── StableFast3D │ └── Put StableFast3D Model here.txt ├── T2I_V2 │ ├── Put T2I_V2 Model here.txt │ └── config.json ├── TriplaneGaussian │ └── Put Triplane Gaussian Transformers Model here.txt ├── TripoSR │ └── Put TripoSR Model here.txt └── facebookresearch │ └── dinov2 │ └── Put dinov2 here.txt ├── Configs ├── CRM_T2I_V2_configs │ ├── sd_v2_base_ipmv_chin8_zero_snr.yaml │ └── sd_v2_base_ipmv_zero_SNR.yaml ├── CRM_T2I_V3_configs │ ├── sd_v2_base_ipmv_chin8_zero_snr.yaml │ └── sd_v2_base_ipmv_zero_SNR_Hyper.yaml ├── CRM_configs │ ├── sd_v2_base_ipmv_chin8_zero_snr.yaml │ ├── sd_v2_base_ipmv_zero_SNR.yaml │ └── specs_objaverse_total.json ├── CharacterGen_configs │ ├── Stage_2D_infer.yaml │ └── Stage_3D_infer.yaml ├── Craftsman_config.yaml ├── Era3D_config.yaml ├── Hunyuan3D_V1_svrm_config.yaml ├── InstantMesh_configs │ ├── instant_mesh_base.yaml │ ├── instant_mesh_large.yaml │ ├── instant_nerf_base.yaml │ └── instant_nerf_large.yaml ├── MV_Adapter_configs │ ├── geometry-guidance │ │ ├── mvadapter_ig2mv_partialimg_sdxl.yaml │ │ ├── mvadapter_ig2mv_sdxl.yaml │ │ └── mvadapter_tg2mv_sdxl.yaml │ └── view-guidance │ │ ├── mvadapter_i2mv_sd21.yaml │ │ ├── mvadapter_i2mv_sdxl.yaml │ │ ├── mvadapter_i2mv_sdxl_aug_quantity.yaml │ │ ├── mvadapter_t2mv_sd21.yaml │ │ └── mvadapter_t2mv_sdxl.yaml ├── StableFast3D_config.yaml ├── TriplaneGaussian_config.yaml ├── TripoSR_config.yaml ├── Unique3D_configs │ ├── image2mvimage.yaml │ └── image2normal.yaml ├── Wonder3D_config.yaml └── system.conf ├── DOCKER_INSTRUCTIONS.md ├── Dockerfile ├── Gen_3D_Modules ├── CRM │ ├── imagedream │ │ ├── __init__.py │ │ ├── camera_utils.py │ │ ├── configs │ │ │ ├── sd_v2_base_ipmv.yaml │ │ │ ├── sd_v2_base_ipmv_ch8.yaml │ │ │ ├── sd_v2_base_ipmv_chin8.yaml │ │ │ └── sd_v2_base_ipmv_local.yaml │ │ ├── ldm │ │ │ ├── __init__.py │ │ │ ├── interface.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── autoencoder.py │ │ │ │ └── diffusion │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ddim.py │ │ │ ├── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── attention.py │ │ │ │ ├── diffusionmodules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── adaptors.py │ │ │ │ │ ├── model.py │ │ │ │ │ ├── openaimodel.py │ │ │ │ │ └── util.py │ │ │ │ ├── distributions │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── distributions.py │ │ │ │ ├── ema.py │ │ │ │ └── encoders │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── modules.py │ │ │ └── util.py │ │ └── model_zoo.py │ ├── libs │ │ ├── base_utils.py │ │ └── sample.py │ ├── model │ │ ├── __init__.py │ │ ├── archs │ │ │ ├── __init__.py │ │ │ ├── decoders │ │ │ │ ├── __init__.py │ │ │ │ └── shape_texture_net.py │ │ │ ├── mlp_head.py │ │ │ └── unet.py │ │ └── crm │ │ │ ├── model.py │ │ │ └── sampler.py │ └── util │ │ ├── __init__.py │ │ ├── flexicubes_geometry.py │ │ ├── renderer.py │ │ └── utils.py ├── CRM_T2I_V2 │ ├── imagedream │ │ ├── __init__.py │ │ ├── camera_utils.py │ │ ├── configs │ │ │ ├── sd_v2_base_ipmv.yaml │ │ │ ├── sd_v2_base_ipmv_ch8.yaml │ │ │ ├── sd_v2_base_ipmv_chin8.yaml │ │ │ └── sd_v2_base_ipmv_local.yaml │ │ ├── ldm │ │ │ ├── __init__.py │ │ │ ├── interface.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── autoencoder.py │ │ │ │ └── diffusion │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ddim.py │ │ │ ├── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── attention.py │ │ │ │ ├── diffusionmodules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── adaptors.py │ │ │ │ │ ├── model.py │ │ │ │ │ ├── openaimodel.py │ │ │ │ │ └── util.py │ │ │ │ ├── distributions │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── distributions.py │ │ │ │ ├── ema.py │ │ │ │ └── encoders │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── modules.py │ │ │ └── util.py │ │ └── model_zoo.py │ ├── libs │ │ ├── base_utils.py │ │ └── sample.py │ ├── model │ │ ├── __init__.py │ │ ├── archs │ │ │ ├── __init__.py │ │ │ ├── decoders │ │ │ │ ├── __init__.py │ │ │ │ └── shape_texture_net.py │ │ │ ├── mlp_head.py │ │ │ └── unet.py │ │ ├── crm │ │ │ ├── model.py │ │ │ └── sampler.py │ │ └── t2i_adapter_v2.py │ └── util │ │ ├── __init__.py │ │ ├── flexicubes.py │ │ ├── flexicubes_geometry.py │ │ ├── renderer.py │ │ ├── tables.py │ │ └── utils.py ├── CRM_T2I_V3 │ ├── imagedream │ │ ├── __init__.py │ │ ├── camera_utils.py │ │ ├── configs │ │ │ ├── sd_v2_base_ipmv.yaml │ │ │ ├── sd_v2_base_ipmv_ch8.yaml │ │ │ ├── sd_v2_base_ipmv_chin8.yaml │ │ │ ├── sd_v2_base_ipmv_chin8_zero_snr.yaml │ │ │ ├── sd_v2_base_ipmv_local.yaml │ │ │ ├── sd_v2_base_ipmv_zero_SNR.yaml │ │ │ └── sd_v2_base_ipmv_zero_SNR_Hyper.yaml │ │ ├── ldm │ │ │ ├── __init__.py │ │ │ ├── interface.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── autoencoder.py │ │ │ │ └── diffusion │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── ddim.py │ │ │ ├── modules │ │ │ │ ├── __init__.py │ │ │ │ ├── attention.py │ │ │ │ ├── diffusionmodules │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── adaptors.py │ │ │ │ │ ├── model.py │ │ │ │ │ ├── openaimodel.py │ │ │ │ │ └── util.py │ │ │ │ ├── distributions │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── distributions.py │ │ │ │ ├── ema.py │ │ │ │ └── encoders │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── modules.py │ │ │ └── util.py │ │ └── model_zoo.py │ ├── libs │ │ ├── base_utils.py │ │ └── sample.py │ ├── model │ │ ├── __init__.py │ │ ├── archs │ │ │ ├── __init__.py │ │ │ ├── decoders │ │ │ │ ├── __init__.py │ │ │ │ └── shape_texture_net.py │ │ │ ├── mlp_head.py │ │ │ └── unet.py │ │ └── crm │ │ │ ├── model.py │ │ │ └── sampler.py │ └── util │ │ ├── __init__.py │ │ ├── flexicubes.py │ │ ├── flexicubes_geometry.py │ │ ├── renderer.py │ │ ├── tables.py │ │ └── utils.py ├── CharacterGen │ ├── Stage_2D │ │ ├── material │ │ │ ├── pose.json │ │ │ ├── pose0.png │ │ │ ├── pose1.png │ │ │ ├── pose2.png │ │ │ └── pose3.png │ │ └── tuneavideo │ │ │ ├── models │ │ │ ├── PoseGuider.py │ │ │ ├── attention.py │ │ │ ├── imageproj.py │ │ │ ├── refunet.py │ │ │ ├── resnet.py │ │ │ ├── transformer_mv2d.py │ │ │ ├── unet.py │ │ │ ├── unet_blocks.py │ │ │ ├── unet_mv2d_blocks.py │ │ │ ├── unet_mv2d_condition.py │ │ │ └── unet_mv2d_ref.py │ │ │ ├── pipelines │ │ │ └── pipeline_tuneavideo.py │ │ │ └── util.py │ ├── Stage_3D │ │ ├── character_gen_texture_refine.py │ │ ├── lrm │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── background │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── solid_color_background.py │ │ │ │ ├── camera.py │ │ │ │ ├── exporters │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── mesh_exporter.py │ │ │ │ ├── isosurface.py │ │ │ │ ├── lpips.py │ │ │ │ ├── materials │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── no_material.py │ │ │ │ ├── mesh.py │ │ │ │ ├── networks.py │ │ │ │ ├── renderers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ └── triplane_dmtet.py │ │ │ │ ├── tokenizers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── dinov2.py │ │ │ │ │ ├── image.py │ │ │ │ │ └── triplane.py │ │ │ │ └── transformers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── attention.py │ │ │ │ │ ├── transformer_1d.py │ │ │ │ │ └── transformer_2d.py │ │ │ ├── systems │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── multiview_lrm.py │ │ │ │ └── utils.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── callbacks.py │ │ │ │ ├── config.py │ │ │ │ ├── misc.py │ │ │ │ ├── ops.py │ │ │ │ ├── rasterize.py │ │ │ │ ├── saving.py │ │ │ │ ├── sdf.py │ │ │ │ └── typing.py │ │ └── material │ │ │ ├── examples │ │ │ └── 1 │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ │ ├── meta.json │ │ │ └── tets │ │ │ ├── 128_tets.npz │ │ │ ├── 256_tets.npz │ │ │ ├── 32_tets.npz │ │ │ ├── 64_tets.npz │ │ │ └── generate_tets.py │ └── character_inference.py ├── Era3D │ ├── mvdiffusion │ │ ├── data │ │ │ ├── dataset.py │ │ │ ├── dataset_nc.py │ │ │ ├── fixed_prompt_embeds_6view │ │ │ │ ├── clr_embeds.pt │ │ │ │ └── normal_embeds.pt │ │ │ ├── generate_fixed_text_embeds.py │ │ │ ├── normal_utils.py │ │ │ └── single_image_dataset.py │ │ ├── models │ │ │ ├── transformer_mv2d_image.py │ │ │ ├── transformer_mv2d_rowwise.py │ │ │ ├── transformer_mv2d_self_rowwise.py │ │ │ ├── unet_mv2d_blocks.py │ │ │ └── unet_mv2d_condition.py │ │ └── pipelines │ │ │ └── pipeline_mvdiffusion_unclip.py │ └── utils │ │ └── misc.py ├── Hunyuan3D_2_1 │ ├── .gitignore │ ├── __init__.py │ ├── hy3dpaint │ │ ├── DifferentiableRenderer │ │ │ ├── MeshRender.py │ │ │ ├── __init__.py │ │ │ ├── camera_utils.py │ │ │ ├── compile_mesh_painter.bat │ │ │ ├── compile_mesh_painter.sh │ │ │ ├── mesh_inpaint_processor.cpp │ │ │ ├── mesh_inpaint_processor_fallback.py │ │ │ └── mesh_utils.py │ │ ├── LICENSE │ │ ├── README.md │ │ ├── __init__.py │ │ ├── cfgs │ │ │ └── hunyuan-paint-pbr.yaml │ │ ├── convert_utils.py │ │ ├── custom_rasterizer │ │ │ ├── custom_rasterizer │ │ │ │ ├── __init__.py │ │ │ │ └── render.py │ │ │ ├── lib │ │ │ │ └── custom_rasterizer_kernel │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── grid_neighbor.cpp │ │ │ │ │ ├── rasterizer.cpp │ │ │ │ │ ├── rasterizer.h │ │ │ │ │ └── rasterizer_gpu.cu │ │ │ └── setup.py │ │ ├── demo.py │ │ ├── hunyuanpaintpbr │ │ │ ├── __init__.py │ │ │ ├── pipeline.py │ │ │ └── unet │ │ │ │ ├── attn_processor.py │ │ │ │ ├── model.py │ │ │ │ └── modules.py │ │ ├── mesh_inpaint_wheel │ │ │ ├── MANIFEST.in │ │ │ ├── mesh_inpaint_processor │ │ │ │ ├── __init__.py │ │ │ │ └── mesh_inpaint_processor_fallback.py │ │ │ ├── pyproject.toml │ │ │ └── setup.py │ │ ├── src │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── __init__.py │ │ │ │ ├── dataloader │ │ │ │ │ ├── loader_util.py │ │ │ │ │ ├── objaverse_loader_forTexturePBR.py │ │ │ │ │ └── pbr_data_format.txt │ │ │ │ └── objaverse_hunyuan.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ └── train_util.py │ │ ├── textureGenPipeline.py │ │ ├── train.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── image_super_utils.py │ │ │ ├── multiview_utils.py │ │ │ ├── pipeline_utils.py │ │ │ ├── simplify_mesh_utils.py │ │ │ ├── torchvision_fix.py │ │ │ └── uvwrap_utils.py │ ├── hy3dshape │ │ ├── .gitignore │ │ ├── configs │ │ │ ├── hunyuan3ddit-full-params-finetuning-flowmatching-dinog518-bf16-lr1e5-512.yaml │ │ │ ├── hunyuan3ddit-mini-overfitting-flowmatching-dinog518-bf16-lr1e4-512.yaml │ │ │ ├── hunyuandit-finetuning-flowmatching-dinog518-bf16-lr1e5-4096.yaml │ │ │ ├── hunyuandit-mini-overfitting-flowmatching-dinog518-bf16-lr1e4-4096.yaml │ │ │ └── hunyuandit-mini-overfitting-flowmatching-dinog518-bf16-lr1e4-512.yaml │ │ ├── hy3dshape │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── dit_asl.py │ │ │ │ └── utils.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── autoencoders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── attention_blocks.py │ │ │ │ │ ├── attention_processors.py │ │ │ │ │ ├── model.py │ │ │ │ │ ├── surface_extractors.py │ │ │ │ │ └── volume_decoders.py │ │ │ │ ├── conditioner.py │ │ │ │ ├── denoisers │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── hunyuan3ddit.py │ │ │ │ │ ├── hunyuandit.py │ │ │ │ │ └── moe_layers.py │ │ │ │ └── diffusion │ │ │ │ │ ├── flow_matching_sit.py │ │ │ │ │ └── transport │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── integrators.py │ │ │ │ │ ├── path.py │ │ │ │ │ ├── transport.py │ │ │ │ │ └── utils.py │ │ │ ├── pipelines.py │ │ │ ├── postprocessors.py │ │ │ ├── preprocessors.py │ │ │ ├── rembg.py │ │ │ ├── schedulers.py │ │ │ ├── surface_loaders.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── ema.py │ │ │ │ ├── misc.py │ │ │ │ ├── trainings │ │ │ │ ├── __init__.py │ │ │ │ ├── callback.py │ │ │ │ ├── lr_scheduler.py │ │ │ │ ├── mesh.py │ │ │ │ ├── mesh_log_callback.py │ │ │ │ └── peft.py │ │ │ │ ├── utils.py │ │ │ │ └── visualizers │ │ │ │ ├── __init__.py │ │ │ │ ├── color_util.py │ │ │ │ ├── html_util.py │ │ │ │ └── pythreejs_viewer.py │ │ ├── main.py │ │ ├── requirements.txt │ │ ├── scripts │ │ │ └── train_deepspeed.sh │ │ └── tools │ │ │ ├── README.md │ │ │ ├── pipeline.sh │ │ │ ├── render │ │ │ └── render.py │ │ │ └── watertight │ │ │ └── watertight_and_sample.py │ ├── requirements.txt │ └── torchvision_fix.py ├── Hunyuan3D_V1 │ ├── infer │ │ ├── __init__.py │ │ ├── text_to_image.py │ │ ├── utils.py │ │ └── views_to_mesh.py │ ├── mvd │ │ ├── __init__.py │ │ ├── hunyuan3d_mvd_lite_pipeline.py │ │ ├── hunyuan3d_mvd_std_pipeline.py │ │ └── utils.py │ └── svrm │ │ ├── .DS_Store │ │ ├── ldm │ │ ├── .DS_Store │ │ ├── models │ │ │ └── svrm.py │ │ ├── modules │ │ │ ├── attention.py │ │ │ ├── encoders │ │ │ │ ├── __init__.py │ │ │ │ ├── dinov2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── hub │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── backbones.py │ │ │ │ │ │ └── utils.py │ │ │ │ │ ├── layers │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── attention.py │ │ │ │ │ │ ├── block.py │ │ │ │ │ │ ├── dino_head.py │ │ │ │ │ │ ├── drop_path.py │ │ │ │ │ │ ├── layer_scale.py │ │ │ │ │ │ ├── mlp.py │ │ │ │ │ │ ├── patch_embed.py │ │ │ │ │ │ └── swiglu_ffn.py │ │ │ │ │ └── models │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── vision_transformer.py │ │ │ │ └── dinov2_mod.py │ │ │ ├── rendering_neus │ │ │ │ ├── __init__.py │ │ │ │ ├── mesh.py │ │ │ │ ├── rasterize.py │ │ │ │ ├── synthesizer.py │ │ │ │ ├── third_party │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── custom_ops.py │ │ │ │ │ ├── dnnlib │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ └── util.py │ │ │ │ │ ├── misc.py │ │ │ │ │ ├── ops │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── bias_act.cpp │ │ │ │ │ │ ├── bias_act.cu │ │ │ │ │ │ ├── bias_act.h │ │ │ │ │ │ ├── bias_act.py │ │ │ │ │ │ ├── grid_sample.cpp │ │ │ │ │ │ ├── grid_sample.cu │ │ │ │ │ │ ├── grid_sample.py │ │ │ │ │ │ ├── grid_sample_gradfix.py │ │ │ │ │ │ ├── gridsample_cuda.cpp │ │ │ │ │ │ └── gridsample_cuda.cu │ │ │ │ │ └── pytorch_ssim │ │ │ │ │ │ └── __init__.py │ │ │ │ └── utils │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── math_utils.py │ │ │ │ │ ├── ray_marcher.py │ │ │ │ │ ├── ray_sampler.py │ │ │ │ │ └── renderer.py │ │ │ ├── translator │ │ │ │ ├── __init__.py │ │ │ │ └── img_to_triplane.py │ │ │ └── x_transformer.py │ │ ├── util.py │ │ ├── utils │ │ │ ├── ops.py │ │ │ └── typing.py │ │ └── vis_util.py │ │ ├── predictor.py │ │ └── utils │ │ ├── camera_utils.py │ │ ├── img_utils.py │ │ └── log_utils.py ├── Hunyuan3D_V2 │ ├── .gitignore │ ├── LICENSE │ ├── NOTICE │ ├── __init__.py │ ├── fix_configs.py │ ├── hy3dgen │ │ ├── __init__.py │ │ ├── rembg.py │ │ ├── shapegen │ │ │ ├── __init__.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ ├── autoencoders │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── attention_blocks.py │ │ │ │ │ ├── attention_processors.py │ │ │ │ │ ├── model.py │ │ │ │ │ ├── surface_extractors.py │ │ │ │ │ └── volume_decoders.py │ │ │ │ ├── conditioner.py │ │ │ │ └── denoisers │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── hunyuan3ddit.py │ │ │ ├── pipelines.py │ │ │ ├── postprocessors.py │ │ │ ├── preprocessors.py │ │ │ ├── schedulers.py │ │ │ └── utils.py │ │ ├── texgen │ │ │ ├── __init__.py │ │ │ ├── custom_rasterizer │ │ │ │ ├── custom_rasterizer │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── io_glb.py │ │ │ │ │ ├── io_obj.py │ │ │ │ │ └── render.py │ │ │ │ ├── lib │ │ │ │ │ └── custom_rasterizer_kernel │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── grid_neighbor.cpp │ │ │ │ │ │ ├── rasterizer.cpp │ │ │ │ │ │ ├── rasterizer.h │ │ │ │ │ │ └── rasterizer_gpu.cu │ │ │ │ └── setup.py │ │ │ ├── differentiable_renderer │ │ │ │ ├── __init__.py │ │ │ │ ├── camera_utils.py │ │ │ │ ├── compile_mesh_painter.bat │ │ │ │ ├── mesh_processor.cpp │ │ │ │ ├── mesh_processor.py │ │ │ │ ├── mesh_render.py │ │ │ │ ├── mesh_utils.py │ │ │ │ └── setup.py │ │ │ ├── hunyuanpaint │ │ │ │ ├── __init__.py │ │ │ │ ├── pipeline.py │ │ │ │ └── unet │ │ │ │ │ ├── __init__.py │ │ │ │ │ └── modules.py │ │ │ ├── pipelines.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── alignImg4Tex_utils.py │ │ │ │ ├── counter_utils.py │ │ │ │ ├── dehighlight_utils.py │ │ │ │ ├── imagesuper_utils.py │ │ │ │ ├── multiview_utils.py │ │ │ │ ├── simplify_mesh_utils.py │ │ │ │ └── uv_warp_utils.py │ │ └── text2image.py │ ├── requirements.txt │ └── setup.py ├── InstantMesh │ ├── __init__.py │ ├── data │ │ ├── __init__.py │ │ ├── objaverse.py │ │ └── objaverse_zero123plus.py │ ├── model.py │ ├── model_mesh.py │ ├── models │ │ ├── __init__.py │ │ ├── decoder │ │ │ ├── __init__.py │ │ │ └── transformer.py │ │ ├── encoder │ │ │ ├── __init__.py │ │ │ ├── dino.py │ │ │ └── dino_wrapper.py │ │ ├── geometry │ │ │ ├── __init__.py │ │ │ ├── camera │ │ │ │ ├── __init__.py │ │ │ │ └── perspective_camera.py │ │ │ ├── render │ │ │ │ ├── __init__.py │ │ │ │ └── neural_render.py │ │ │ └── rep_3d │ │ │ │ ├── __init__.py │ │ │ │ ├── extract_texture_map.py │ │ │ │ └── flexicubes_geometry.py │ │ ├── lrm.py │ │ ├── lrm_mesh.py │ │ └── renderer │ │ │ ├── __init__.py │ │ │ ├── synthesizer.py │ │ │ ├── synthesizer_mesh.py │ │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── math_utils.py │ │ │ ├── ray_marcher.py │ │ │ ├── ray_sampler.py │ │ │ └── renderer.py │ └── utils │ │ ├── __init__.py │ │ ├── camera_util.py │ │ ├── infer_util.py │ │ ├── mesh_util.py │ │ └── train_util.py ├── LGM │ ├── acc_configs │ │ ├── gpu1.yaml │ │ ├── gpu4.yaml │ │ ├── gpu6.yaml │ │ └── gpu8.yaml │ ├── core │ │ ├── __init__.py │ │ ├── attention.py │ │ ├── gs.py │ │ ├── options.py │ │ ├── provider_objaverse.py │ │ ├── unet.py │ │ └── utils.py │ ├── large_multiview_gaussian_model.py │ ├── mvdream │ │ ├── mv_unet.py │ │ └── pipeline_mvdream.py │ └── nerf_marching_cubes_converter.py ├── MV_Adapter │ ├── mvadapter │ │ ├── __init__.py │ │ ├── loaders │ │ │ ├── __init__.py │ │ │ └── custom_adapter.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ └── attention_processor.py │ │ ├── pipelines │ │ │ ├── pipeline_mvadapter_i2mv_sdxl.py │ │ │ ├── pipeline_mvadapter_t2mv_sdxl.py │ │ │ └── pipeline_texture.py │ │ ├── schedulers │ │ │ ├── scheduler_utils.py │ │ │ └── scheduling_shift_snr.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── callbacks.py │ │ │ ├── config.py │ │ │ ├── core.py │ │ │ ├── geometry.py │ │ │ ├── logging.py │ │ │ ├── mesh_utils │ │ │ ├── __init__.py │ │ │ ├── blend.py │ │ │ ├── camera.py │ │ │ ├── cv_ops.py │ │ │ ├── mesh.py │ │ │ ├── mesh_process.py │ │ │ ├── projection.py │ │ │ ├── render.py │ │ │ ├── seg.py │ │ │ ├── smart_paint.py │ │ │ ├── utils.py │ │ │ ├── uv.py │ │ │ └── warp.py │ │ │ ├── misc.py │ │ │ ├── ops.py │ │ │ ├── saving.py │ │ │ └── typing.py │ └── mvadapter_node_utils.py ├── PartCrafter │ ├── .gitignore │ ├── LICENSE │ ├── README.md │ ├── __init__.py │ ├── configs │ │ ├── mp16_nt1024.yaml │ │ ├── mp16_nt512.yaml │ │ └── mp8_nt512.yaml │ ├── datasets │ │ ├── README.md │ │ ├── example_configs.json │ │ ├── object_part_configs.json │ │ └── preprocess │ │ │ ├── calculate_iou.py │ │ │ ├── mesh_to_point.py │ │ │ ├── preprocess.py │ │ │ ├── render.py │ │ │ └── rmbg.py │ ├── partcrafter_src │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ └── objaverse_part.py │ │ ├── models │ │ │ ├── attention_processor.py │ │ │ ├── autoencoders │ │ │ │ ├── __init__.py │ │ │ │ ├── autoencoder_kl_triposg.py │ │ │ │ └── vae.py │ │ │ ├── briarmbg.py │ │ │ ├── embeddings.py │ │ │ └── transformers │ │ │ │ ├── __init__.py │ │ │ │ ├── modeling_outputs.py │ │ │ │ └── partcrafter_transformer.py │ │ ├── pipelines │ │ │ ├── pipeline_partcrafter.py │ │ │ ├── pipeline_partcrafter_output.py │ │ │ └── pipeline_utils.py │ │ ├── schedulers │ │ │ ├── __init__.py │ │ │ └── scheduling_rectified_flow.py │ │ ├── train_partcrafter.py │ │ └── utils │ │ │ ├── data_utils.py │ │ │ ├── image_utils.py │ │ │ ├── inference_utils.py │ │ │ ├── metric_utils.py │ │ │ ├── render_utils.py │ │ │ ├── smoothing.py │ │ │ ├── train_utils.py │ │ │ └── typing_utils.py │ ├── scripts │ │ └── inference_partcrafter.py │ ├── settings │ │ ├── requirements.txt │ │ └── setup.sh │ └── test_both_versions.py ├── Stable3DGen │ ├── __init__.py │ ├── dinov2 │ │ ├── dinov2 │ │ │ ├── __init__.py │ │ │ ├── hub │ │ │ │ ├── __init__.py │ │ │ │ ├── backbones.py │ │ │ │ ├── classifiers.py │ │ │ │ ├── depth │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── decode_heads.py │ │ │ │ │ ├── encoder_decoder.py │ │ │ │ │ └── ops.py │ │ │ │ ├── depthers.py │ │ │ │ └── utils.py │ │ │ ├── layers │ │ │ │ ├── __init__.py │ │ │ │ ├── attention.py │ │ │ │ ├── block.py │ │ │ │ ├── dino_head.py │ │ │ │ ├── drop_path.py │ │ │ │ ├── layer_scale.py │ │ │ │ ├── mlp.py │ │ │ │ ├── patch_embed.py │ │ │ │ └── swiglu_ffn.py │ │ │ ├── models │ │ │ │ ├── __init__.py │ │ │ │ └── vision_transformer.py │ │ │ └── utils │ │ │ │ ├── __init__.py │ │ │ │ ├── cluster.py │ │ │ │ ├── config.py │ │ │ │ ├── dtype.py │ │ │ │ ├── param_groups.py │ │ │ │ └── utils.py │ │ └── hubconf.py │ ├── pipeline_builders.py │ ├── stable_trellis_model_manager.py │ ├── stablex │ │ ├── __init__.py │ │ ├── controlnetvae.py │ │ └── pipeline_yoso.py │ └── trellis │ │ ├── __init__.py │ │ ├── backend_config.py │ │ ├── models │ │ ├── __init__.py │ │ ├── sparse_structure_flow.py │ │ ├── sparse_structure_vae.py │ │ ├── structured_latent_flow.py │ │ └── structured_latent_vae │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── decoder_mesh.py │ │ │ └── encoder.py │ │ ├── modules │ │ ├── __init__.py │ │ ├── attention │ │ │ ├── __init__.py │ │ │ ├── full_attn.py │ │ │ └── modules.py │ │ ├── attention_utils.py │ │ ├── norm.py │ │ ├── sparse │ │ │ ├── __init__.py │ │ │ ├── attention │ │ │ │ ├── __init__.py │ │ │ │ ├── full_attn.py │ │ │ │ ├── modules.py │ │ │ │ ├── serialized_attn.py │ │ │ │ └── windowed_attn.py │ │ │ ├── basic.py │ │ │ ├── conv │ │ │ │ ├── __init__.py │ │ │ │ ├── conv_spconv.py │ │ │ │ └── conv_torchsparse.py │ │ │ ├── linear.py │ │ │ ├── nonlinearity.py │ │ │ ├── norm.py │ │ │ ├── spatial.py │ │ │ └── transformer │ │ │ │ ├── __init__.py │ │ │ │ ├── blocks.py │ │ │ │ └── modulated.py │ │ ├── spatial.py │ │ ├── transformer │ │ │ ├── __init__.py │ │ │ ├── blocks.py │ │ │ └── modulated.py │ │ └── utils.py │ │ ├── pipelines │ │ ├── __init__.py │ │ ├── base.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── classifier_free_guidance_mixin.py │ │ │ ├── flow_euler.py │ │ │ └── guidance_interval_mixin.py │ │ └── trellis_image_to_3d.py │ │ ├── representations │ │ ├── __init__.py │ │ └── mesh │ │ │ ├── __init__.py │ │ │ ├── cube2mesh.py │ │ │ ├── flexicube.py │ │ │ ├── tables.py │ │ │ └── utils_cube.py │ │ └── utils │ │ ├── __init__.py │ │ ├── _rasterization.py │ │ ├── general_utils.py │ │ └── random_utils.py ├── StableFast3D │ ├── load │ │ └── tets │ │ │ └── 160_tets.npz │ └── sf3d │ │ ├── .slangtorch_cache │ │ └── texture_baker │ │ │ └── 44136fa355b3678a │ │ │ ├── 0 │ │ │ ├── .ninja_deps │ │ │ ├── .ninja_log │ │ │ ├── _slangtorch_texture_baker_44136fa355b3678a.exp │ │ │ ├── _slangtorch_texture_baker_44136fa355b3678a.lib │ │ │ ├── build.ninja │ │ │ ├── metadata.json │ │ │ ├── texture_baker.o │ │ │ └── texture_baker_cuda.cuda.o │ │ │ ├── latest.txt │ │ │ ├── texture_baker.cpp │ │ │ └── texture_baker_cuda.cu │ │ ├── box_uv_unwrap.py │ │ ├── models │ │ ├── camera.py │ │ ├── global_estimator │ │ │ └── multi_head_estimator.py │ │ ├── image_estimator │ │ │ └── clip_based_estimator.py │ │ ├── isosurface.py │ │ ├── mesh.py │ │ ├── network.py │ │ ├── tokenizers │ │ │ ├── dinov2.py │ │ │ ├── image.py │ │ │ └── triplane.py │ │ ├── transformers │ │ │ ├── attention.py │ │ │ └── backbone.py │ │ └── utils.py │ │ ├── system.py │ │ ├── texture_baker.py │ │ ├── texture_baker.slang │ │ └── utils.py ├── TRELLIS │ └── trellis │ │ ├── __init__.py │ │ ├── models │ │ ├── __init__.py │ │ ├── sparse_structure_flow.py │ │ ├── sparse_structure_vae.py │ │ ├── structured_latent_flow.py │ │ └── structured_latent_vae │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── decoder_gs.py │ │ │ ├── decoder_mesh.py │ │ │ ├── decoder_rf.py │ │ │ └── encoder.py │ │ ├── modules │ │ ├── attention │ │ │ ├── __init__.py │ │ │ ├── full_attn.py │ │ │ └── modules.py │ │ ├── norm.py │ │ ├── sparse │ │ │ ├── __init__.py │ │ │ ├── attention │ │ │ │ ├── __init__.py │ │ │ │ ├── full_attn.py │ │ │ │ ├── modules.py │ │ │ │ ├── serialized_attn.py │ │ │ │ └── windowed_attn.py │ │ │ ├── basic.py │ │ │ ├── conv │ │ │ │ ├── __init__.py │ │ │ │ ├── conv_spconv.py │ │ │ │ └── conv_torchsparse.py │ │ │ ├── linear.py │ │ │ ├── nonlinearity.py │ │ │ ├── norm.py │ │ │ ├── spatial.py │ │ │ └── transformer │ │ │ │ ├── __init__.py │ │ │ │ ├── blocks.py │ │ │ │ └── modulated.py │ │ ├── spatial.py │ │ ├── transformer │ │ │ ├── __init__.py │ │ │ ├── blocks.py │ │ │ └── modulated.py │ │ └── utils.py │ │ ├── pipelines │ │ ├── __init__.py │ │ ├── base.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── classifier_free_guidance_mixin.py │ │ │ ├── flow_euler.py │ │ │ └── guidance_interval_mixin.py │ │ └── trellis_image_to_3d.py │ │ ├── renderers │ │ ├── __init__.py │ │ ├── gaussian_render.py │ │ ├── mesh_renderer.py │ │ ├── octree_renderer.py │ │ └── sh_utils.py │ │ ├── representations │ │ ├── __init__.py │ │ ├── gaussian │ │ │ ├── __init__.py │ │ │ ├── gaussian_model.py │ │ │ └── general_utils.py │ │ ├── mesh │ │ │ ├── __init__.py │ │ │ ├── cube2mesh.py │ │ │ ├── flexicubes │ │ │ │ ├── flexicubes.py │ │ │ │ └── tables.py │ │ │ └── utils_cube.py │ │ ├── octree │ │ │ ├── __init__.py │ │ │ └── octree_dfs.py │ │ └── radiance_field │ │ │ ├── __init__.py │ │ │ └── strivec.py │ │ └── utils │ │ ├── __init__.py │ │ ├── general_utils.py │ │ ├── postprocessing_utils.py │ │ ├── random_utils.py │ │ └── render_utils.py ├── TriplaneGaussian │ ├── __init__.py │ ├── data.py │ ├── models │ │ ├── __init__.py │ │ ├── image_feature.py │ │ ├── networks.py │ │ ├── pointclouds │ │ │ ├── LICENSE_POINTNET │ │ │ ├── pointnet.py │ │ │ └── simplepoint.py │ │ ├── renderer.py │ │ ├── snowflake │ │ │ ├── LICENSE │ │ │ ├── SPD.py │ │ │ ├── SPD_crossattn.py │ │ │ ├── SPD_pp.py │ │ │ ├── attention.py │ │ │ ├── model_spdpp.py │ │ │ ├── skip_transformer.py │ │ │ └── utils.py │ │ ├── tokenizers │ │ │ ├── dinov2.py │ │ │ ├── image.py │ │ │ ├── point.py │ │ │ └── triplane.py │ │ └── transformers.py │ ├── triplane_gaussian_transformers.py │ └── utils │ │ ├── __init__.py │ │ ├── base.py │ │ ├── config.py │ │ ├── misc.py │ │ ├── ops.py │ │ ├── saving.py │ │ └── typing.py ├── TripoSG │ ├── LICENSE │ ├── inference_utils.py │ ├── models │ │ ├── attention_processor.py │ │ ├── autoencoders │ │ │ ├── __init__.py │ │ │ ├── autoencoder_kl_triposg.py │ │ │ └── vae.py │ │ ├── embeddings.py │ │ └── transformers │ │ │ ├── __init__.py │ │ │ ├── modeling_outputs.py │ │ │ └── triposg_transformer.py │ ├── pipelines │ │ ├── pipeline_triposg.py │ │ ├── pipeline_triposg_output.py │ │ ├── pipeline_triposg_scribble.py │ │ └── pipeline_utils.py │ ├── schedulers │ │ ├── __init__.py │ │ └── scheduling_rectified_flow.py │ └── utils │ │ └── typing.py ├── TripoSR │ ├── models │ │ ├── isosurface.py │ │ ├── nerf_renderer.py │ │ ├── network_utils.py │ │ ├── tokenizers │ │ │ ├── image.py │ │ │ └── triplane.py │ │ └── transformer │ │ │ ├── attention.py │ │ │ ├── basic_transformer_block.py │ │ │ └── transformer_1d.py │ ├── system.py │ └── utils.py ├── Unique3D │ ├── __init__.py │ ├── custum_3d_diffusion │ │ ├── __init__.py │ │ ├── custum_modules │ │ │ ├── attention_processors.py │ │ │ └── unifield_processor.py │ │ ├── custum_pipeline │ │ │ ├── unifield_pipeline_img2img.py │ │ │ └── unifield_pipeline_img2mvimg.py │ │ ├── modules.py │ │ └── trainings │ │ │ ├── __init__.py │ │ │ ├── config_classes.py │ │ │ └── utils.py │ ├── mesh_reconstruction │ │ ├── __init__.py │ │ ├── func.py │ │ ├── opt.py │ │ ├── recon.py │ │ ├── refine.py │ │ ├── remesh.py │ │ └── render.py │ └── scripts │ │ ├── __init__.py │ │ ├── all_typing.py │ │ ├── mesh_init.py │ │ ├── normal_to_height_map.py │ │ ├── project_mesh.py │ │ └── utils.py ├── Wonder3D │ ├── data │ │ ├── fixed_poses │ │ │ └── nine_views │ │ │ │ ├── 000_back_RT.txt │ │ │ │ ├── 000_back_left_RT.txt │ │ │ │ ├── 000_back_right_RT.txt │ │ │ │ ├── 000_front_RT.txt │ │ │ │ ├── 000_front_left_RT.txt │ │ │ │ ├── 000_front_right_RT.txt │ │ │ │ ├── 000_left_RT.txt │ │ │ │ ├── 000_right_RT.txt │ │ │ │ └── 000_top_RT.txt │ │ ├── normal_utils.py │ │ ├── objaverse_dataset.py │ │ └── single_image_dataset.py │ ├── models │ │ ├── transformer_mv2d.py │ │ ├── unet_mv2d_blocks.py │ │ └── unet_mv2d_condition.py │ ├── pipelines │ │ └── pipeline_mvdiffusion_image.py │ └── utils │ │ └── misc.py ├── Zero123Plus │ ├── model.py │ └── pipeline.py └── craftsman │ ├── __init__.py │ ├── data │ ├── __init__.py │ └── objaverse.py │ ├── models │ ├── __init__.py │ ├── autoencoders │ │ ├── __init__.py │ │ ├── michelangelo_autoencoder.py │ │ └── utils.py │ ├── conditional_encoders │ │ ├── __init__.py │ │ ├── base.py │ │ ├── clip │ │ │ ├── modeling_clip.py │ │ │ └── modeling_conditional_clip.py │ │ └── clip_encoder.py │ ├── denoisers │ │ ├── __init__.py │ │ └── simple_denoiser.py │ ├── geometry │ │ ├── __init__.py │ │ ├── base.py │ │ └── utils.py │ └── transformers │ │ ├── attention.py │ │ ├── perceiver_1d.py │ │ └── utils.py │ ├── systems │ ├── __init__.py │ ├── base.py │ ├── shape_autoencoder.py │ └── shape_diffusion.py │ └── utils │ ├── __init__.py │ ├── base.py │ ├── callbacks.py │ ├── checkpoint.py │ ├── config.py │ ├── misc.py │ ├── ops.py │ ├── saving.py │ ├── scheduler.py │ ├── typing.py │ └── visualizers │ ├── __init__.py │ ├── color_util.py │ ├── html_util.py │ └── pythreejs_viewer.py ├── LICENSE ├── MVs_Algorithms ├── DiffRastMesh │ ├── __init__.py │ ├── diff_mesh.py │ └── diff_mesh_renderer.py ├── FlexiCubes │ ├── __init__.py │ ├── flexicubes.py │ ├── flexicubes_renderer.py │ ├── flexicubes_trainer.py │ ├── loss.py │ ├── tables.py │ └── util.py ├── GaussianSplatting │ ├── main_3DGS.py │ └── main_3DGS_renderer.py └── NeRF │ └── Instant_NGP.py ├── README.md ├── _Pre_Builds ├── README.md └── _Build_Scripts │ ├── __init__.py │ ├── auto_build_all.py │ ├── build_config.yaml │ ├── build_requirements.txt │ ├── build_utils.py │ └── dependencies.txt ├── __init__.py ├── docker-compose.yml ├── example_workflows ├── CRM │ ├── CRM MVDiffusion_to_Craftsman.json │ ├── CRM MVDiffusion_to_InstantMesh.json │ ├── CRM MVDiffusion_to_Unique3D.json │ └── CRM_Img_to_Multi-views_to_CCMs_to_Mesh.json ├── CRM_T2I_V2 │ ├── CRM_T2I_V2_MVs_Only.json │ └── CRM_T2I_V2_to_MV_to_Texture.json ├── CRM_T2I_V3 │ ├── CRM_T2I_V3_MVs_Only.json │ ├── CRM_T2I_V3_to_MV_to_Texture_dora_model_Handgun_Example.json │ └── CRM_T2I_V3_to_MV_to_Texture_lora_model_Cup_Example.json ├── CharacterGen │ ├── CharacterGen_InstantMesh.json │ ├── CharacterGen_Vanilla.json │ └── CharacterGen_to_Unique3D.json ├── Era3D_to_InstantMesh.json ├── Hunyuan3D_2_1 │ ├── Hunyuan2.1-Full.json │ ├── Hunyuan2.1-Shapegen.json │ └── Hunyuan2.1-Texgen.json ├── Hunyuan3D_V1.json ├── Hunyuan3D_V2 │ ├── Hunyuan3D_V2.json │ ├── Hunyuan3D_V2_Fast.json │ ├── Hunyuan3D_V2_MV.json │ ├── Hunyuan3D_V2_MV_Fast.json │ ├── Hunyuan3D_V2_MV_Turbo.json │ ├── Hunyuan3D_V2_Mini.json │ ├── Hunyuan3D_V2_Mini_Fast.json │ ├── Hunyuan3D_V2_Mini_Turbo.json │ └── Hunyuan3D_V2_Turbo.json ├── MV-Adapter │ ├── MV-Adapter-Texturing.json │ ├── MV-Adapter-ig2mv.json │ └── MV-Adapter-tg2mv.json ├── MVDream_to_Large_Multiview_Gaussian_Model_to_3DGS and_3DMesh.json ├── Multi-View-Images_to_Instant-NGP_to_DiffRast_to_3DMesh.json ├── PartCrafter │ ├── PartCrafter-Scene.json │ └── PartCrafter.json ├── Render_Mesh_and_3DGS_Example.json ├── Stable3DGen.json ├── StableFast3D_to_Mesh.json ├── Trellis_Image_to_Mesh.json ├── Triplane_Gaussian_Transformers_to_3DGS_and_3DMesh.json ├── TripoSG_Scribble_Model.json ├── TripoSG_to_Mesh.json ├── TripoSR_to_Mesh.json ├── Unique3D │ ├── 0_MV_RGB.json │ ├── 1_MV_RGB_Upscale.json │ ├── 1_MV_RGB_Upscale_New.json │ ├── 2_MV_Normal.json │ ├── 3_Mesh_Reconstruction.json │ ├── Unique3D_All_Stages.json │ └── Unique3D_with_Era3D_All.json ├── Using_Stack_Orbit_Camera_Poses_to_conditioning_StableZero123.json ├── Wonder3D_to_Large_Multiview_Gaussian_Model_to_3DGS and_3DMesh.json ├── Zero123Plus_to_InstantMesh.json ├── [FlexiCubes] Multi-View Depth plus Optional Normal maps to 3D Mesh.json ├── _Example_Inputs_Files │ ├── Cammy_Style_0-NoBG_Square.png │ ├── Cat_Coffee_rgba.png │ ├── CharacterGen_Test_2.png │ ├── Cucumber_Shark_rgba.png │ ├── KungFuCat.png │ ├── Mario_Cat.png │ ├── PirateCat.png │ ├── Test_ChunLi 768X512.png │ ├── White Tiger Girl_1.png │ ├── a_pikachu_with_smily_face-removebg.png │ ├── bear_back.png │ ├── bear_front.png │ ├── bear_left.png │ ├── dining_scene.png │ ├── ghost_rgba.png │ ├── matermulti.png │ ├── meshes │ │ └── squirrel_girl1_shape.glb │ ├── monster.png │ ├── penguin.png │ ├── ref_cup.png │ ├── ref_gun.png │ ├── robot.png │ ├── round_cat.png │ ├── squirrel_girl1_grid.png │ ├── squirrel_girl_0.png │ ├── squirrel_girl_1.png │ └── squirrel_girl_2.png └── _Example_Outputs │ ├── Cammy_Cam_Rotate_Clockwise.gif │ ├── Cammy_Cam_Rotate_Clockwise_Camposes.png │ ├── Cammy_Cam_Rotate_Counter_Clockwise.gif │ ├── Cammy_Cam_Rotate_Counter_Clockwise_Camposes.png │ └── Wonder3D_FatCat_MVs.jpg ├── install.py ├── mesh_processer ├── __init__.py ├── mesh.py └── mesh_utils.py ├── my-reqs.txt ├── nodes.py ├── pyproject.toml ├── requirements.txt ├── shared_utils ├── __init__.py ├── camera_utils.py ├── common_utils.py ├── image_utils.py ├── log_utils.py └── sh_utils.py ├── web ├── html │ ├── gsVisualizer.html │ └── threeVisualizer.html ├── js │ ├── coloris.js │ ├── gsVisualizer.js │ ├── sharedFunctions.js │ └── threeVisualizer.js ├── style │ ├── coloris.css │ ├── gsStyle.css │ ├── sharedStyle.css │ └── threeStyle.css └── visualization.js └── webserver └── server.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Checkpoints/CRM/Put Convolutional Reconstruction Model here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Checkpoints/CRM_T2I_V3/Put CRM_T2I_V3 model here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Checkpoints/CharacterGen/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/CharacterGen/.gitattributes -------------------------------------------------------------------------------- /Checkpoints/CharacterGen/2D_Stage/models/image_encoder/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/CharacterGen/2D_Stage/models/image_encoder/config.json -------------------------------------------------------------------------------- /Checkpoints/CharacterGen/3D_Stage/models/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/CharacterGen/3D_Stage/models/base/README.md -------------------------------------------------------------------------------- /Checkpoints/CharacterGen/3D_Stage/models/base/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/CharacterGen/3D_Stage/models/base/config.json -------------------------------------------------------------------------------- /Checkpoints/CharacterGen/Put CharacterGen Model here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Checkpoints/CharacterGen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/CharacterGen/README.md -------------------------------------------------------------------------------- /Checkpoints/Craftsman/image-to-shape-diffusion/clip-mvrgb-modln-l256-e64-ne8-nd16-nl6-aligned-vae/Put Craftsman Model here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Checkpoints/Diffusers/JeffreyXiang/TRELLIS-image-large/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/JeffreyXiang/TRELLIS-image-large/README.md -------------------------------------------------------------------------------- /Checkpoints/Diffusers/MrForExample/Unique3D/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/MrForExample/Unique3D/.gitattributes -------------------------------------------------------------------------------- /Checkpoints/Diffusers/MrForExample/Unique3D/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/MrForExample/Unique3D/README.md -------------------------------------------------------------------------------- /Checkpoints/Diffusers/MrForExample/Unique3D/v1-inference.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/MrForExample/Unique3D/v1-inference.yaml -------------------------------------------------------------------------------- /Checkpoints/Diffusers/TencentARC/InstantMesh/Put InstantMesh modified Zero123Plus Duffusion model here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Checkpoints/Diffusers/VAST-AI/TripoSG-scribble/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/VAST-AI/TripoSG-scribble/.gitattributes -------------------------------------------------------------------------------- /Checkpoints/Diffusers/VAST-AI/TripoSG-scribble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/VAST-AI/TripoSG-scribble/README.md -------------------------------------------------------------------------------- /Checkpoints/Diffusers/VAST-AI/TripoSG-scribble/model_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/VAST-AI/TripoSG-scribble/model_index.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/VAST-AI/TripoSG-scribble/tokenizer/merges.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/VAST-AI/TripoSG-scribble/tokenizer/merges.txt -------------------------------------------------------------------------------- /Checkpoints/Diffusers/VAST-AI/TripoSG-scribble/tokenizer/vocab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/VAST-AI/TripoSG-scribble/tokenizer/vocab.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/VAST-AI/TripoSG-scribble/vae/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/VAST-AI/TripoSG-scribble/vae/config.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/VAST-AI/TripoSG/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/VAST-AI/TripoSG/.gitattributes -------------------------------------------------------------------------------- /Checkpoints/Diffusers/VAST-AI/TripoSG/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/VAST-AI/TripoSG/README.md -------------------------------------------------------------------------------- /Checkpoints/Diffusers/VAST-AI/TripoSG/model_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/VAST-AI/TripoSG/model_index.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/VAST-AI/TripoSG/transformer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/VAST-AI/TripoSG/transformer/config.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/VAST-AI/TripoSG/vae/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/VAST-AI/TripoSG/vae/config.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/ashawkey/imagedream-ipmv-diffusers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/ashawkey/imagedream-ipmv-diffusers/README.md -------------------------------------------------------------------------------- /Checkpoints/Diffusers/flamehaze1115/wonder3d-v1.0/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/flamehaze1115/wonder3d-v1.0/.gitattributes -------------------------------------------------------------------------------- /Checkpoints/Diffusers/flamehaze1115/wonder3d-v1.0/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | license: agpl-3.0 3 | --- -------------------------------------------------------------------------------- /Checkpoints/Diffusers/flamehaze1115/wonder3d-v1.0/model_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/flamehaze1115/wonder3d-v1.0/model_index.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/flamehaze1115/wonder3d-v1.0/unet/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/flamehaze1115/wonder3d-v1.0/unet/config.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/flamehaze1115/wonder3d-v1.0/vae/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/flamehaze1115/wonder3d-v1.0/vae/config.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/jetx/TRELLIS-image-large/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/jetx/TRELLIS-image-large/.gitattributes -------------------------------------------------------------------------------- /Checkpoints/Diffusers/jetx/TRELLIS-image-large/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/jetx/TRELLIS-image-large/README.md -------------------------------------------------------------------------------- /Checkpoints/Diffusers/pengHTYX/MacLab-Era3D-512-6view/README.md: -------------------------------------------------------------------------------- 1 | --- 2 | license: apache-2.0 3 | --- 4 | -------------------------------------------------------------------------------- /Checkpoints/Diffusers/sudo-ai/zero123plus-v1.2/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/sudo-ai/zero123plus-v1.2/.gitattributes -------------------------------------------------------------------------------- /Checkpoints/Diffusers/sudo-ai/zero123plus-v1.2/model_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/sudo-ai/zero123plus-v1.2/model_index.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/sudo-ai/zero123plus-v1.2/unet/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/sudo-ai/zero123plus-v1.2/unet/config.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/sudo-ai/zero123plus-v1.2/vae/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/sudo-ai/zero123plus-v1.2/vae/config.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/tencent/Hunyuan3D-1/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/tencent/Hunyuan3D-1/.gitattributes -------------------------------------------------------------------------------- /Checkpoints/Diffusers/tencent/Hunyuan3D-1/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/tencent/Hunyuan3D-1/LICENSE.txt -------------------------------------------------------------------------------- /Checkpoints/Diffusers/tencent/Hunyuan3D-1/Notice: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/tencent/Hunyuan3D-1/Notice -------------------------------------------------------------------------------- /Checkpoints/Diffusers/tencent/Hunyuan3D-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/tencent/Hunyuan3D-1/README.md -------------------------------------------------------------------------------- /Checkpoints/Diffusers/tencent/Hunyuan3D-1/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "usage": "download counts" 3 | } -------------------------------------------------------------------------------- /Checkpoints/Diffusers/tencent/Hunyuan3D-2/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/tencent/Hunyuan3D-2/.gitattributes -------------------------------------------------------------------------------- /Checkpoints/Diffusers/tencent/Hunyuan3D-2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/tencent/Hunyuan3D-2/LICENSE -------------------------------------------------------------------------------- /Checkpoints/Diffusers/tencent/Hunyuan3D-2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/tencent/Hunyuan3D-2/NOTICE -------------------------------------------------------------------------------- /Checkpoints/Diffusers/tencent/Hunyuan3D-2/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/tencent/Hunyuan3D-2/config.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/wgsxm/PartCrafter-Scene/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/wgsxm/PartCrafter-Scene/.gitattributes -------------------------------------------------------------------------------- /Checkpoints/Diffusers/wgsxm/PartCrafter-Scene/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/wgsxm/PartCrafter-Scene/README.md -------------------------------------------------------------------------------- /Checkpoints/Diffusers/wgsxm/PartCrafter-Scene/model_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/wgsxm/PartCrafter-Scene/model_index.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/wgsxm/PartCrafter-Scene/vae/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/wgsxm/PartCrafter-Scene/vae/config.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/wgsxm/PartCrafter/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/wgsxm/PartCrafter/.gitattributes -------------------------------------------------------------------------------- /Checkpoints/Diffusers/wgsxm/PartCrafter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/wgsxm/PartCrafter/README.md -------------------------------------------------------------------------------- /Checkpoints/Diffusers/wgsxm/PartCrafter/model_index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/wgsxm/PartCrafter/model_index.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/wgsxm/PartCrafter/transformer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/wgsxm/PartCrafter/transformer/config.json -------------------------------------------------------------------------------- /Checkpoints/Diffusers/wgsxm/PartCrafter/vae/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/Diffusers/wgsxm/PartCrafter/vae/config.json -------------------------------------------------------------------------------- /Checkpoints/InstantMesh/Put InstantMesh model here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Checkpoints/LGM/Put Large Multiview Gaussian Model here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Checkpoints/StableFast3D/Put StableFast3D Model here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Checkpoints/T2I_V2/Put T2I_V2 Model here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Checkpoints/T2I_V2/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Checkpoints/T2I_V2/config.json -------------------------------------------------------------------------------- /Checkpoints/TriplaneGaussian/Put Triplane Gaussian Transformers Model here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Checkpoints/TripoSR/Put TripoSR Model here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Checkpoints/facebookresearch/dinov2/Put dinov2 here.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Configs/CRM_T2I_V2_configs/sd_v2_base_ipmv_chin8_zero_snr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/CRM_T2I_V2_configs/sd_v2_base_ipmv_chin8_zero_snr.yaml -------------------------------------------------------------------------------- /Configs/CRM_T2I_V2_configs/sd_v2_base_ipmv_zero_SNR.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/CRM_T2I_V2_configs/sd_v2_base_ipmv_zero_SNR.yaml -------------------------------------------------------------------------------- /Configs/CRM_T2I_V3_configs/sd_v2_base_ipmv_chin8_zero_snr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/CRM_T2I_V3_configs/sd_v2_base_ipmv_chin8_zero_snr.yaml -------------------------------------------------------------------------------- /Configs/CRM_T2I_V3_configs/sd_v2_base_ipmv_zero_SNR_Hyper.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/CRM_T2I_V3_configs/sd_v2_base_ipmv_zero_SNR_Hyper.yaml -------------------------------------------------------------------------------- /Configs/CRM_configs/sd_v2_base_ipmv_chin8_zero_snr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/CRM_configs/sd_v2_base_ipmv_chin8_zero_snr.yaml -------------------------------------------------------------------------------- /Configs/CRM_configs/sd_v2_base_ipmv_zero_SNR.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/CRM_configs/sd_v2_base_ipmv_zero_SNR.yaml -------------------------------------------------------------------------------- /Configs/CRM_configs/specs_objaverse_total.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/CRM_configs/specs_objaverse_total.json -------------------------------------------------------------------------------- /Configs/CharacterGen_configs/Stage_2D_infer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/CharacterGen_configs/Stage_2D_infer.yaml -------------------------------------------------------------------------------- /Configs/CharacterGen_configs/Stage_3D_infer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/CharacterGen_configs/Stage_3D_infer.yaml -------------------------------------------------------------------------------- /Configs/Craftsman_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/Craftsman_config.yaml -------------------------------------------------------------------------------- /Configs/Era3D_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/Era3D_config.yaml -------------------------------------------------------------------------------- /Configs/Hunyuan3D_V1_svrm_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/Hunyuan3D_V1_svrm_config.yaml -------------------------------------------------------------------------------- /Configs/InstantMesh_configs/instant_mesh_base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/InstantMesh_configs/instant_mesh_base.yaml -------------------------------------------------------------------------------- /Configs/InstantMesh_configs/instant_mesh_large.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/InstantMesh_configs/instant_mesh_large.yaml -------------------------------------------------------------------------------- /Configs/InstantMesh_configs/instant_nerf_base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/InstantMesh_configs/instant_nerf_base.yaml -------------------------------------------------------------------------------- /Configs/InstantMesh_configs/instant_nerf_large.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/InstantMesh_configs/instant_nerf_large.yaml -------------------------------------------------------------------------------- /Configs/StableFast3D_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/StableFast3D_config.yaml -------------------------------------------------------------------------------- /Configs/TriplaneGaussian_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/TriplaneGaussian_config.yaml -------------------------------------------------------------------------------- /Configs/TripoSR_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/TripoSR_config.yaml -------------------------------------------------------------------------------- /Configs/Unique3D_configs/image2mvimage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/Unique3D_configs/image2mvimage.yaml -------------------------------------------------------------------------------- /Configs/Unique3D_configs/image2normal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/Unique3D_configs/image2normal.yaml -------------------------------------------------------------------------------- /Configs/Wonder3D_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/Wonder3D_config.yaml -------------------------------------------------------------------------------- /Configs/system.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Configs/system.conf -------------------------------------------------------------------------------- /DOCKER_INSTRUCTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/DOCKER_INSTRUCTIONS.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Dockerfile -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/camera_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/camera_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/configs/sd_v2_base_ipmv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/configs/sd_v2_base_ipmv.yaml -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/configs/sd_v2_base_ipmv_ch8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/configs/sd_v2_base_ipmv_ch8.yaml -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/configs/sd_v2_base_ipmv_chin8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/configs/sd_v2_base_ipmv_chin8.yaml -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/configs/sd_v2_base_ipmv_local.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/configs/sd_v2_base_ipmv_local.yaml -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/ldm/interface.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/ldm/models/autoencoder.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/models/diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/models/diffusion/ddim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/ldm/models/diffusion/ddim.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/ldm/modules/attention.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/modules/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/ldm/modules/ema.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/modules/encoders/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/ldm/modules/encoders/modules.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/ldm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/ldm/util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/imagedream/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/imagedream/model_zoo.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/libs/base_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/libs/base_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/libs/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/libs/sample.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/model/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/model/archs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/model/archs/decoders/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/model/archs/decoders/shape_texture_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/model/archs/decoders/shape_texture_net.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/model/archs/mlp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/model/archs/mlp_head.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/model/archs/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/model/archs/unet.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/model/crm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/model/crm/model.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/model/crm/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/model/crm/sampler.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/util/flexicubes_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/util/flexicubes_geometry.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/util/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/util/renderer.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM/util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM/util/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/imagedream/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/camera_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/imagedream/camera_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/interface.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/models/autoencoder.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/models/diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/modules/attention.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/modules/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/modules/ema.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/imagedream/ldm/util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/imagedream/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/imagedream/model_zoo.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/libs/base_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/libs/base_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/libs/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/libs/sample.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/model/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/model/archs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/model/archs/decoders/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/model/archs/mlp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/model/archs/mlp_head.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/model/archs/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/model/archs/unet.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/model/crm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/model/crm/model.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/model/crm/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/model/crm/sampler.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/model/t2i_adapter_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/model/t2i_adapter_v2.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/util/flexicubes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/util/flexicubes.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/util/flexicubes_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/util/flexicubes_geometry.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/util/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/util/renderer.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/util/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/util/tables.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V2/util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V2/util/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/imagedream/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/camera_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/imagedream/camera_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/interface.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/models/autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/models/autoencoder.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/models/diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/modules/attention.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/modules/diffusionmodules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/modules/distributions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/modules/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/modules/ema.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/imagedream/ldm/util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/imagedream/model_zoo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/imagedream/model_zoo.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/libs/base_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/libs/base_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/libs/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/libs/sample.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/model/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/model/archs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/model/archs/decoders/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/model/archs/mlp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/model/archs/mlp_head.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/model/archs/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/model/archs/unet.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/model/crm/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/model/crm/model.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/model/crm/sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/model/crm/sampler.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/util/flexicubes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/util/flexicubes.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/util/flexicubes_geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/util/flexicubes_geometry.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/util/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/util/renderer.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/util/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/util/tables.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CRM_T2I_V3/util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CRM_T2I_V3/util/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_2D/material/pose.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_2D/material/pose.json -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_2D/material/pose0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_2D/material/pose0.png -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_2D/material/pose1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_2D/material/pose1.png -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_2D/material/pose2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_2D/material/pose2.png -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_2D/material/pose3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_2D/material/pose3.png -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_2D/tuneavideo/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_2D/tuneavideo/models/resnet.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_2D/tuneavideo/models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_2D/tuneavideo/models/unet.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_2D/tuneavideo/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_2D/tuneavideo/util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/background/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/camera.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/exporters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/isosurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/isosurface.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/lpips.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/materials/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/mesh.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/networks.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/renderers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/tokenizers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/models/transformers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/systems/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/systems/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/systems/base.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/systems/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/systems/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/base.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/callbacks.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/config.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/misc.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/ops.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/rasterize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/rasterize.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/saving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/saving.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/sdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/sdf.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/lrm/utils/typing.py -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/material/examples/1/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/material/examples/1/1.png -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/material/examples/1/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/material/examples/1/2.png -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/material/examples/1/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/material/examples/1/3.png -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/material/examples/1/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/material/examples/1/4.png -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/material/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/material/meta.json -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/material/tets/128_tets.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/material/tets/128_tets.npz -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/material/tets/256_tets.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/material/tets/256_tets.npz -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/material/tets/32_tets.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/material/tets/32_tets.npz -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/Stage_3D/material/tets/64_tets.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/Stage_3D/material/tets/64_tets.npz -------------------------------------------------------------------------------- /Gen_3D_Modules/CharacterGen/character_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/CharacterGen/character_inference.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Era3D/mvdiffusion/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Era3D/mvdiffusion/data/dataset.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Era3D/mvdiffusion/data/dataset_nc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Era3D/mvdiffusion/data/dataset_nc.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Era3D/mvdiffusion/data/normal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Era3D/mvdiffusion/data/normal_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Era3D/mvdiffusion/data/single_image_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Era3D/mvdiffusion/data/single_image_dataset.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Era3D/mvdiffusion/models/unet_mv2d_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Era3D/mvdiffusion/models/unet_mv2d_blocks.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Era3D/mvdiffusion/models/unet_mv2d_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Era3D/mvdiffusion/models/unet_mv2d_condition.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Era3D/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Era3D/utils/misc.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/.gitignore -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/LICENSE -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/README.md -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/convert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/convert_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/custom_rasterizer/lib/custom_rasterizer_kernel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/demo.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/src/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/src/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/src/data/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/src/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/src/utils/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/src/utils/train_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/src/utils/train_util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/textureGenPipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/textureGenPipeline.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/train.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/utils/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/utils/multiview_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/utils/multiview_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/utils/pipeline_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/utils/pipeline_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/utils/torchvision_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/utils/torchvision_fix.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/utils/uvwrap_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dpaint/utils/uvwrap_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/.gitignore -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/data/dit_asl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/data/dit_asl.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/data/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/data/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/pipelines.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/rembg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/rembg.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/schedulers.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/utils/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/utils/ema.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/utils/misc.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/utils/trainings/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/utils/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/hy3dshape/utils/visualizers/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/main.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/requirements.txt -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/tools/README.md -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/tools/pipeline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/tools/pipeline.sh -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/tools/render/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/hy3dshape/tools/render/render.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/requirements.txt -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_2_1/torchvision_fix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_2_1/torchvision_fix.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/infer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/infer/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/infer/text_to_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/infer/text_to_image.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/infer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/infer/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/infer/views_to_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/infer/views_to_mesh.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/mvd/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/mvd/hunyuan3d_mvd_lite_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/mvd/hunyuan3d_mvd_lite_pipeline.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/mvd/hunyuan3d_mvd_std_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/mvd/hunyuan3d_mvd_std_pipeline.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/mvd/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/mvd/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/.DS_Store -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/.DS_Store -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/models/svrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/models/svrm.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/modules/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/modules/attention.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/modules/encoders/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/modules/encoders/dinov2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/modules/encoders/dinov2/hub/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/modules/translator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/modules/x_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/modules/x_transformer.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/utils/ops.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/utils/typing.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/vis_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/ldm/vis_util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/predictor.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/utils/camera_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/utils/camera_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/utils/img_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/utils/img_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V1/svrm/utils/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V1/svrm/utils/log_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/.gitignore -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/LICENSE -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/NOTICE -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/fix_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/fix_configs.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/rembg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/rembg.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/models/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/pipelines.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/postprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/postprocessors.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/preprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/preprocessors.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/schedulers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/schedulers.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/shapegen/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/texgen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/texgen/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/texgen/pipelines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/texgen/pipelines.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/texgen/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/texgen/utils/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/text2image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/hy3dgen/text2image.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/requirements.txt -------------------------------------------------------------------------------- /Gen_3D_Modules/Hunyuan3D_V2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Hunyuan3D_V2/setup.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/data/objaverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/data/objaverse.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/data/objaverse_zero123plus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/data/objaverse_zero123plus.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/model.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/model_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/model_mesh.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/decoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/decoder/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/decoder/transformer.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/encoder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/encoder/dino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/encoder/dino.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/encoder/dino_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/encoder/dino_wrapper.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/geometry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/geometry/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/geometry/camera/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/geometry/camera/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/geometry/render/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/geometry/render/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/geometry/rep_3d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/geometry/rep_3d/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/lrm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/lrm.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/lrm_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/lrm_mesh.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/renderer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/renderer/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/renderer/synthesizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/renderer/synthesizer.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/renderer/synthesizer_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/renderer/synthesizer_mesh.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/renderer/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/renderer/utils/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/renderer/utils/math_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/renderer/utils/math_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/renderer/utils/ray_marcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/renderer/utils/ray_marcher.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/renderer/utils/ray_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/renderer/utils/ray_sampler.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/models/renderer/utils/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/models/renderer/utils/renderer.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/utils/camera_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/utils/camera_util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/utils/infer_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/utils/infer_util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/utils/mesh_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/utils/mesh_util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/InstantMesh/utils/train_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/InstantMesh/utils/train_util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/acc_configs/gpu1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/acc_configs/gpu1.yaml -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/acc_configs/gpu4.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/acc_configs/gpu4.yaml -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/acc_configs/gpu6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/acc_configs/gpu6.yaml -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/acc_configs/gpu8.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/acc_configs/gpu8.yaml -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/core/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/core/attention.py -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/core/gs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/core/gs.py -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/core/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/core/options.py -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/core/provider_objaverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/core/provider_objaverse.py -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/core/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/core/unet.py -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/core/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/large_multiview_gaussian_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/large_multiview_gaussian_model.py -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/mvdream/mv_unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/mvdream/mv_unet.py -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/mvdream/pipeline_mvdream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/mvdream/pipeline_mvdream.py -------------------------------------------------------------------------------- /Gen_3D_Modules/LGM/nerf_marching_cubes_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/LGM/nerf_marching_cubes_converter.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/loaders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/loaders/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/loaders/custom_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/loaders/custom_adapter.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/base.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/callbacks.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/config.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/core.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/geometry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/geometry.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/logging.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/blend.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/camera.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/cv_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/cv_ops.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/mesh.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/render.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/seg.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/uv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/uv.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/warp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/mesh_utils/warp.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/misc.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/ops.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/saving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/saving.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter/utils/typing.py -------------------------------------------------------------------------------- /Gen_3D_Modules/MV_Adapter/mvadapter_node_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/MV_Adapter/mvadapter_node_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/.gitignore -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/LICENSE -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/README.md -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/configs/mp16_nt1024.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/configs/mp16_nt1024.yaml -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/configs/mp16_nt512.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/configs/mp16_nt512.yaml -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/configs/mp8_nt512.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/configs/mp8_nt512.yaml -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/datasets/README.md -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/datasets/example_configs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/datasets/example_configs.json -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/datasets/object_part_configs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/datasets/object_part_configs.json -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/datasets/preprocess/calculate_iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/datasets/preprocess/calculate_iou.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/datasets/preprocess/mesh_to_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/datasets/preprocess/mesh_to_point.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/datasets/preprocess/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/datasets/preprocess/preprocess.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/datasets/preprocess/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/datasets/preprocess/render.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/datasets/preprocess/rmbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/datasets/preprocess/rmbg.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/partcrafter_src/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/partcrafter_src/datasets/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/partcrafter_src/models/briarmbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/partcrafter_src/models/briarmbg.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/partcrafter_src/models/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/partcrafter_src/models/embeddings.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/partcrafter_src/train_partcrafter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/partcrafter_src/train_partcrafter.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/partcrafter_src/utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/partcrafter_src/utils/data_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/partcrafter_src/utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/partcrafter_src/utils/image_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/partcrafter_src/utils/metric_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/partcrafter_src/utils/metric_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/partcrafter_src/utils/render_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/partcrafter_src/utils/render_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/partcrafter_src/utils/smoothing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/partcrafter_src/utils/smoothing.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/partcrafter_src/utils/train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/partcrafter_src/utils/train_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/partcrafter_src/utils/typing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/partcrafter_src/utils/typing_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/scripts/inference_partcrafter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/scripts/inference_partcrafter.py -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/settings/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/settings/requirements.txt -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/settings/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/settings/setup.sh -------------------------------------------------------------------------------- /Gen_3D_Modules/PartCrafter/test_both_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/PartCrafter/test_both_versions.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/backbones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/backbones.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/classifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/classifiers.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/depth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/depth/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/depth/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/depth/ops.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/depthers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/depthers.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/hub/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/attention.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/block.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/dino_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/dino_head.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/drop_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/drop_path.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/layer_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/layer_scale.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/mlp.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/patch_embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/patch_embed.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/swiglu_ffn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/layers/swiglu_ffn.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/models/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/utils/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/utils/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/utils/cluster.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/utils/config.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/utils/dtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/utils/dtype.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/utils/param_groups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/utils/param_groups.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/dinov2/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/dinov2/utils/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/dinov2/hubconf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/dinov2/hubconf.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/pipeline_builders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/pipeline_builders.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/stable_trellis_model_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/stable_trellis_model_manager.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/stablex/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/stablex/controlnetvae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/stablex/controlnetvae.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/stablex/pipeline_yoso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/stablex/pipeline_yoso.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/backend_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/backend_config.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/models/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/attention/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/attention/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/attention/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/attention/modules.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/attention_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/attention_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/norm.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/sparse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/sparse/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/sparse/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/sparse/basic.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/sparse/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/sparse/linear.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/sparse/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/sparse/norm.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/sparse/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/sparse/spatial.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/spatial.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/transformer/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/transformer/blocks.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/modules/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/pipelines/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/pipelines/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/pipelines/base.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/pipelines/samplers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/pipelines/samplers/base.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/representations/__init__.py: -------------------------------------------------------------------------------- 1 | from .mesh import MeshExtractResult 2 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/utils/_rasterization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/utils/_rasterization.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/utils/general_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/utils/general_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Stable3DGen/trellis/utils/random_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Stable3DGen/trellis/utils/random_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/load/tets/160_tets.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/load/tets/160_tets.npz -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/.slangtorch_cache/texture_baker/44136fa355b3678a/latest.txt: -------------------------------------------------------------------------------- 1 | 0 -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/box_uv_unwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/box_uv_unwrap.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/models/camera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/models/camera.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/models/isosurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/models/isosurface.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/models/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/models/mesh.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/models/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/models/network.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/models/tokenizers/dinov2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/models/tokenizers/dinov2.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/models/tokenizers/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/models/tokenizers/image.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/models/tokenizers/triplane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/models/tokenizers/triplane.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/models/transformers/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/models/transformers/backbone.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/models/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/system.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/texture_baker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/texture_baker.py -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/texture_baker.slang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/texture_baker.slang -------------------------------------------------------------------------------- /Gen_3D_Modules/StableFast3D/sf3d/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/StableFast3D/sf3d/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/models/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/models/sparse_structure_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/models/sparse_structure_flow.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/models/sparse_structure_vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/models/sparse_structure_vae.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/models/structured_latent_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/models/structured_latent_flow.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/attention/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/attention/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/attention/full_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/attention/full_attn.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/attention/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/attention/modules.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/norm.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/sparse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/sparse/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/sparse/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/sparse/basic.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/sparse/conv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/sparse/conv/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/sparse/linear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/sparse/linear.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/sparse/nonlinearity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/sparse/nonlinearity.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/sparse/norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/sparse/norm.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/sparse/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/sparse/spatial.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/spatial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/spatial.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/transformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/transformer/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/transformer/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/transformer/blocks.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/transformer/modulated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/transformer/modulated.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/modules/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/pipelines/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/pipelines/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/pipelines/base.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/pipelines/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/pipelines/samplers/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/pipelines/samplers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/pipelines/samplers/base.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/pipelines/samplers/flow_euler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/pipelines/samplers/flow_euler.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/pipelines/trellis_image_to_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/pipelines/trellis_image_to_3d.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/renderers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/renderers/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/renderers/gaussian_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/renderers/gaussian_render.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/renderers/mesh_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/renderers/mesh_renderer.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/renderers/octree_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/renderers/octree_renderer.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/renderers/sh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/renderers/sh_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/representations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/representations/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/representations/mesh/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/representations/mesh/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/representations/mesh/cube2mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/representations/mesh/cube2mesh.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/utils/general_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/utils/general_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/utils/postprocessing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/utils/postprocessing_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/utils/random_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/utils/random_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TRELLIS/trellis/utils/render_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TRELLIS/trellis/utils/render_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/data.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/image_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/image_feature.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/networks.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/pointclouds/pointnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/pointclouds/pointnet.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/renderer.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/snowflake/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/snowflake/LICENSE -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/snowflake/SPD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/snowflake/SPD.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/snowflake/SPD_pp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/snowflake/SPD_pp.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/snowflake/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/snowflake/attention.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/snowflake/model_spdpp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/snowflake/model_spdpp.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/snowflake/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/snowflake/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/tokenizers/dinov2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/tokenizers/dinov2.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/tokenizers/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/tokenizers/image.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/tokenizers/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/tokenizers/point.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/tokenizers/triplane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/tokenizers/triplane.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/models/transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/models/transformers.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/utils/base.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/utils/config.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/utils/misc.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/utils/ops.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/utils/saving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/utils/saving.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TriplaneGaussian/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TriplaneGaussian/utils/typing.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/LICENSE -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/inference_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/inference_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/models/attention_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/models/attention_processor.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/models/autoencoders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/models/autoencoders/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/models/autoencoders/vae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/models/autoencoders/vae.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/models/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/models/embeddings.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/models/transformers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/models/transformers/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/models/transformers/modeling_outputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/models/transformers/modeling_outputs.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/pipelines/pipeline_triposg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/pipelines/pipeline_triposg.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/pipelines/pipeline_triposg_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/pipelines/pipeline_triposg_output.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/pipelines/pipeline_triposg_scribble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/pipelines/pipeline_triposg_scribble.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/pipelines/pipeline_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/pipelines/pipeline_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/schedulers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/schedulers/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/schedulers/scheduling_rectified_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/schedulers/scheduling_rectified_flow.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSG/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSG/utils/typing.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSR/models/isosurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSR/models/isosurface.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSR/models/nerf_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSR/models/nerf_renderer.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSR/models/network_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSR/models/network_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSR/models/tokenizers/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSR/models/tokenizers/image.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSR/models/tokenizers/triplane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSR/models/tokenizers/triplane.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSR/models/transformer/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSR/models/transformer/attention.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSR/models/transformer/transformer_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSR/models/transformer/transformer_1d.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSR/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSR/system.py -------------------------------------------------------------------------------- /Gen_3D_Modules/TripoSR/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/TripoSR/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/custum_3d_diffusion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/custum_3d_diffusion/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/custum_3d_diffusion/modules.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/custum_3d_diffusion/trainings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/custum_3d_diffusion/trainings/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/custum_3d_diffusion/trainings/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/mesh_reconstruction/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/mesh_reconstruction/func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/mesh_reconstruction/func.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/mesh_reconstruction/opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/mesh_reconstruction/opt.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/mesh_reconstruction/recon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/mesh_reconstruction/recon.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/mesh_reconstruction/refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/mesh_reconstruction/refine.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/mesh_reconstruction/remesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/mesh_reconstruction/remesh.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/mesh_reconstruction/render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/mesh_reconstruction/render.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/scripts/all_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/scripts/all_typing.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/scripts/mesh_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/scripts/mesh_init.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/scripts/normal_to_height_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/scripts/normal_to_height_map.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/scripts/project_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/scripts/project_mesh.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Unique3D/scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Unique3D/scripts/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Wonder3D/data/normal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Wonder3D/data/normal_utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Wonder3D/data/objaverse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Wonder3D/data/objaverse_dataset.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Wonder3D/data/single_image_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Wonder3D/data/single_image_dataset.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Wonder3D/models/transformer_mv2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Wonder3D/models/transformer_mv2d.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Wonder3D/models/unet_mv2d_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Wonder3D/models/unet_mv2d_blocks.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Wonder3D/models/unet_mv2d_condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Wonder3D/models/unet_mv2d_condition.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Wonder3D/pipelines/pipeline_mvdiffusion_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Wonder3D/pipelines/pipeline_mvdiffusion_image.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Wonder3D/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Wonder3D/utils/misc.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Zero123Plus/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Zero123Plus/model.py -------------------------------------------------------------------------------- /Gen_3D_Modules/Zero123Plus/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/Zero123Plus/pipeline.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/data/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ( 2 | objaverse 3 | ) -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/data/objaverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/data/objaverse.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/models/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/autoencoders/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ( 2 | michelangelo_autoencoder, 3 | ) 4 | -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/autoencoders/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/models/autoencoders/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/conditional_encoders/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ( 2 | clip_encoder, 3 | ) 4 | -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/conditional_encoders/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/models/conditional_encoders/base.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/denoisers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/models/denoisers/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/denoisers/simple_denoiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/models/denoisers/simple_denoiser.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/geometry/__init__.py: -------------------------------------------------------------------------------- 1 | from . import ( 2 | base 3 | ) 4 | -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/geometry/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/models/geometry/base.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/geometry/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/models/geometry/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/transformers/attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/models/transformers/attention.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/transformers/perceiver_1d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/models/transformers/perceiver_1d.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/models/transformers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/models/transformers/utils.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/systems/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/systems/__init__.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/systems/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/systems/base.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/systems/shape_autoencoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/systems/shape_autoencoder.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/systems/shape_diffusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/systems/shape_diffusion.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from . import base 2 | -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/utils/base.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/callbacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/utils/callbacks.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/utils/checkpoint.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/utils/config.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/utils/misc.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/utils/ops.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/saving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/utils/saving.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/utils/scheduler.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/utils/typing.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/visualizers/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/visualizers/color_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/utils/visualizers/color_util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/visualizers/html_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/utils/visualizers/html_util.py -------------------------------------------------------------------------------- /Gen_3D_Modules/craftsman/utils/visualizers/pythreejs_viewer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/Gen_3D_Modules/craftsman/utils/visualizers/pythreejs_viewer.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/LICENSE -------------------------------------------------------------------------------- /MVs_Algorithms/DiffRastMesh/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MVs_Algorithms/DiffRastMesh/diff_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/MVs_Algorithms/DiffRastMesh/diff_mesh.py -------------------------------------------------------------------------------- /MVs_Algorithms/DiffRastMesh/diff_mesh_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/MVs_Algorithms/DiffRastMesh/diff_mesh_renderer.py -------------------------------------------------------------------------------- /MVs_Algorithms/FlexiCubes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MVs_Algorithms/FlexiCubes/flexicubes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/MVs_Algorithms/FlexiCubes/flexicubes.py -------------------------------------------------------------------------------- /MVs_Algorithms/FlexiCubes/flexicubes_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/MVs_Algorithms/FlexiCubes/flexicubes_renderer.py -------------------------------------------------------------------------------- /MVs_Algorithms/FlexiCubes/flexicubes_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/MVs_Algorithms/FlexiCubes/flexicubes_trainer.py -------------------------------------------------------------------------------- /MVs_Algorithms/FlexiCubes/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/MVs_Algorithms/FlexiCubes/loss.py -------------------------------------------------------------------------------- /MVs_Algorithms/FlexiCubes/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/MVs_Algorithms/FlexiCubes/tables.py -------------------------------------------------------------------------------- /MVs_Algorithms/FlexiCubes/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/MVs_Algorithms/FlexiCubes/util.py -------------------------------------------------------------------------------- /MVs_Algorithms/GaussianSplatting/main_3DGS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/MVs_Algorithms/GaussianSplatting/main_3DGS.py -------------------------------------------------------------------------------- /MVs_Algorithms/GaussianSplatting/main_3DGS_renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/MVs_Algorithms/GaussianSplatting/main_3DGS_renderer.py -------------------------------------------------------------------------------- /MVs_Algorithms/NeRF/Instant_NGP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/MVs_Algorithms/NeRF/Instant_NGP.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/README.md -------------------------------------------------------------------------------- /_Pre_Builds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/_Pre_Builds/README.md -------------------------------------------------------------------------------- /_Pre_Builds/_Build_Scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_Pre_Builds/_Build_Scripts/auto_build_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/_Pre_Builds/_Build_Scripts/auto_build_all.py -------------------------------------------------------------------------------- /_Pre_Builds/_Build_Scripts/build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/_Pre_Builds/_Build_Scripts/build_config.yaml -------------------------------------------------------------------------------- /_Pre_Builds/_Build_Scripts/build_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/_Pre_Builds/_Build_Scripts/build_requirements.txt -------------------------------------------------------------------------------- /_Pre_Builds/_Build_Scripts/build_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/_Pre_Builds/_Build_Scripts/build_utils.py -------------------------------------------------------------------------------- /_Pre_Builds/_Build_Scripts/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/_Pre_Builds/_Build_Scripts/dependencies.txt -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/__init__.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /example_workflows/CRM/CRM MVDiffusion_to_Craftsman.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/CRM/CRM MVDiffusion_to_Craftsman.json -------------------------------------------------------------------------------- /example_workflows/CRM/CRM MVDiffusion_to_InstantMesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/CRM/CRM MVDiffusion_to_InstantMesh.json -------------------------------------------------------------------------------- /example_workflows/CRM/CRM MVDiffusion_to_Unique3D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/CRM/CRM MVDiffusion_to_Unique3D.json -------------------------------------------------------------------------------- /example_workflows/CRM_T2I_V2/CRM_T2I_V2_MVs_Only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/CRM_T2I_V2/CRM_T2I_V2_MVs_Only.json -------------------------------------------------------------------------------- /example_workflows/CRM_T2I_V2/CRM_T2I_V2_to_MV_to_Texture.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/CRM_T2I_V2/CRM_T2I_V2_to_MV_to_Texture.json -------------------------------------------------------------------------------- /example_workflows/CRM_T2I_V3/CRM_T2I_V3_MVs_Only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/CRM_T2I_V3/CRM_T2I_V3_MVs_Only.json -------------------------------------------------------------------------------- /example_workflows/CharacterGen/CharacterGen_InstantMesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/CharacterGen/CharacterGen_InstantMesh.json -------------------------------------------------------------------------------- /example_workflows/CharacterGen/CharacterGen_Vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/CharacterGen/CharacterGen_Vanilla.json -------------------------------------------------------------------------------- /example_workflows/CharacterGen/CharacterGen_to_Unique3D.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/CharacterGen/CharacterGen_to_Unique3D.json -------------------------------------------------------------------------------- /example_workflows/Era3D_to_InstantMesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Era3D_to_InstantMesh.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_2_1/Hunyuan2.1-Full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_2_1/Hunyuan2.1-Full.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_2_1/Hunyuan2.1-Shapegen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_2_1/Hunyuan2.1-Shapegen.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_2_1/Hunyuan2.1-Texgen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_2_1/Hunyuan2.1-Texgen.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_V1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_V1.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_V2/Hunyuan3D_V2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_V2/Hunyuan3D_V2.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_Fast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_Fast.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_MV.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_MV.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_MV_Fast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_MV_Fast.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_MV_Turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_MV_Turbo.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_Mini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_Mini.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_Mini_Fast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_Mini_Fast.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_Mini_Turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_Mini_Turbo.json -------------------------------------------------------------------------------- /example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_Turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Hunyuan3D_V2/Hunyuan3D_V2_Turbo.json -------------------------------------------------------------------------------- /example_workflows/MV-Adapter/MV-Adapter-Texturing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/MV-Adapter/MV-Adapter-Texturing.json -------------------------------------------------------------------------------- /example_workflows/MV-Adapter/MV-Adapter-ig2mv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/MV-Adapter/MV-Adapter-ig2mv.json -------------------------------------------------------------------------------- /example_workflows/MV-Adapter/MV-Adapter-tg2mv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/MV-Adapter/MV-Adapter-tg2mv.json -------------------------------------------------------------------------------- /example_workflows/PartCrafter/PartCrafter-Scene.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/PartCrafter/PartCrafter-Scene.json -------------------------------------------------------------------------------- /example_workflows/PartCrafter/PartCrafter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/PartCrafter/PartCrafter.json -------------------------------------------------------------------------------- /example_workflows/Render_Mesh_and_3DGS_Example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Render_Mesh_and_3DGS_Example.json -------------------------------------------------------------------------------- /example_workflows/Stable3DGen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Stable3DGen.json -------------------------------------------------------------------------------- /example_workflows/StableFast3D_to_Mesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/StableFast3D_to_Mesh.json -------------------------------------------------------------------------------- /example_workflows/Trellis_Image_to_Mesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Trellis_Image_to_Mesh.json -------------------------------------------------------------------------------- /example_workflows/TripoSG_Scribble_Model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/TripoSG_Scribble_Model.json -------------------------------------------------------------------------------- /example_workflows/TripoSG_to_Mesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/TripoSG_to_Mesh.json -------------------------------------------------------------------------------- /example_workflows/TripoSR_to_Mesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/TripoSR_to_Mesh.json -------------------------------------------------------------------------------- /example_workflows/Unique3D/0_MV_RGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Unique3D/0_MV_RGB.json -------------------------------------------------------------------------------- /example_workflows/Unique3D/1_MV_RGB_Upscale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Unique3D/1_MV_RGB_Upscale.json -------------------------------------------------------------------------------- /example_workflows/Unique3D/1_MV_RGB_Upscale_New.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Unique3D/1_MV_RGB_Upscale_New.json -------------------------------------------------------------------------------- /example_workflows/Unique3D/2_MV_Normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Unique3D/2_MV_Normal.json -------------------------------------------------------------------------------- /example_workflows/Unique3D/3_Mesh_Reconstruction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Unique3D/3_Mesh_Reconstruction.json -------------------------------------------------------------------------------- /example_workflows/Unique3D/Unique3D_All_Stages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Unique3D/Unique3D_All_Stages.json -------------------------------------------------------------------------------- /example_workflows/Unique3D/Unique3D_with_Era3D_All.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Unique3D/Unique3D_with_Era3D_All.json -------------------------------------------------------------------------------- /example_workflows/Zero123Plus_to_InstantMesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/Zero123Plus_to_InstantMesh.json -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/Cat_Coffee_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/Cat_Coffee_rgba.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/CharacterGen_Test_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/CharacterGen_Test_2.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/Cucumber_Shark_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/Cucumber_Shark_rgba.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/KungFuCat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/KungFuCat.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/Mario_Cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/Mario_Cat.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/PirateCat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/PirateCat.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/Test_ChunLi 768X512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/Test_ChunLi 768X512.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/White Tiger Girl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/White Tiger Girl_1.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/bear_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/bear_back.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/bear_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/bear_front.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/bear_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/bear_left.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/dining_scene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/dining_scene.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/ghost_rgba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/ghost_rgba.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/matermulti.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/matermulti.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/monster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/monster.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/penguin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/penguin.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/ref_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/ref_cup.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/ref_gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/ref_gun.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/robot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/robot.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/round_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/round_cat.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/squirrel_girl1_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/squirrel_girl1_grid.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/squirrel_girl_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/squirrel_girl_0.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/squirrel_girl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/squirrel_girl_1.png -------------------------------------------------------------------------------- /example_workflows/_Example_Inputs_Files/squirrel_girl_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Inputs_Files/squirrel_girl_2.png -------------------------------------------------------------------------------- /example_workflows/_Example_Outputs/Wonder3D_FatCat_MVs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/example_workflows/_Example_Outputs/Wonder3D_FatCat_MVs.jpg -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/install.py -------------------------------------------------------------------------------- /mesh_processer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mesh_processer/mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/mesh_processer/mesh.py -------------------------------------------------------------------------------- /mesh_processer/mesh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/mesh_processer/mesh_utils.py -------------------------------------------------------------------------------- /my-reqs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/my-reqs.txt -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/requirements.txt -------------------------------------------------------------------------------- /shared_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /shared_utils/camera_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/shared_utils/camera_utils.py -------------------------------------------------------------------------------- /shared_utils/common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/shared_utils/common_utils.py -------------------------------------------------------------------------------- /shared_utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/shared_utils/image_utils.py -------------------------------------------------------------------------------- /shared_utils/log_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/shared_utils/log_utils.py -------------------------------------------------------------------------------- /shared_utils/sh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/shared_utils/sh_utils.py -------------------------------------------------------------------------------- /web/html/gsVisualizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/web/html/gsVisualizer.html -------------------------------------------------------------------------------- /web/html/threeVisualizer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/web/html/threeVisualizer.html -------------------------------------------------------------------------------- /web/js/coloris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/web/js/coloris.js -------------------------------------------------------------------------------- /web/js/gsVisualizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/web/js/gsVisualizer.js -------------------------------------------------------------------------------- /web/js/sharedFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/web/js/sharedFunctions.js -------------------------------------------------------------------------------- /web/js/threeVisualizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/web/js/threeVisualizer.js -------------------------------------------------------------------------------- /web/style/coloris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/web/style/coloris.css -------------------------------------------------------------------------------- /web/style/gsStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/web/style/gsStyle.css -------------------------------------------------------------------------------- /web/style/sharedStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/web/style/sharedStyle.css -------------------------------------------------------------------------------- /web/style/threeStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/web/style/threeStyle.css -------------------------------------------------------------------------------- /web/visualization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/web/visualization.js -------------------------------------------------------------------------------- /webserver/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrForExample/ComfyUI-3D-Pack/HEAD/webserver/server.py --------------------------------------------------------------------------------