This commit is contained in:
Jeffreytsai1004 2025-02-16 22:44:41 +08:00
parent b1788fc4e7
commit aecd119dfd
2 changed files with 28 additions and 18 deletions

View File

@ -45,18 +45,23 @@ Required resource structure:
``` ```
resource/ resource/
├── NeuralHaircut/ ├── NeuralHaircut/
│ ├── diffusion_prior/ │ ├── pretrained_models/
│ │ └── model.pt # Diffusion prior model │ │ ├── diffusion_prior/
│ │ │ └── dif_ckpt.pt # Diffusion prior model
│ │ └── strand_prior/
│ │ └── strand_ckpt.pt # Strand prior model
│ └── PIXIE/ │ └── PIXIE/
│ └── pixie_data/
│ └── pixie_data/ # PIXIE model data │ └── pixie_data/ # PIXIE model data
├── Matte-Anything/ ├── Matte-Anything/
│ ├── model.pth # Matte-Anything model
│ ├── sam_vit_h_4b8939.pth # SAM model │ ├── sam_vit_h_4b8939.pth # SAM model
│ ├── groundingdino_swint_ogc.pth # GroundingDINO model │ └── groundingdino_swint_ogc.pth # GroundingDINO model
│ └── model.pth # Matte-Anything model
├── openpose/ ├── openpose/
│ └── models/ │ └── models/
│ ├── pose/ # OpenPose pose models │ └── pose/
│ └── face/ # OpenPose face models │ └── coco/
│ └── pose_iter_584000.caffemodel # OpenPose pose model
└── hyperIQA/ └── hyperIQA/
└── pretrained/ └── pretrained/
└── hyperIQA.pth # Image quality assessment model └── hyperIQA.pth # Image quality assessment model

View File

@ -45,21 +45,26 @@
``` ```
resource/ resource/
├── NeuralHaircut/ ├── NeuralHaircut/
│ ├── diffusion_prior/ │ ├── pretrained_models/
│ │ └── model.pt # 扩散先验模型 │ │ ├── diffusion_prior/
│ │ │ └── dif_ckpt.pt ## 扩散先验模型
│ │ └── strand_prior/
│ │ └── strand_ckpt.pt ## 股线先验模型
│ └── PIXIE/ │ └── PIXIE/
│ └── pixie_data/ # PIXIE模型数据 │ └── pixie_data/
│ └── pixie_data/ ## PIXIE模型数据
├── Matte-Anything/ ├── Matte-Anything/
│ ├── sam_vit_h_4b8939.pth # SAM模型 │ ├── model.pth ## Matte-Anything模型
│ ├── groundingdino_swint_ogc.pth # GroundingDINO模型 │ ├── sam_vit_h_4b8939.pth ## SAM模型
│ └── model.pth # Matte-Anything模型 │ └── groundingdino_swint_ogc.pth ## GroundingDINO模型
├── openpose/ ├── openpose/
│ └── models/ │ └── models/
│ ├── pose/ # OpenPose姿态模型 │ └── pose/
│ └── face/ # OpenPose人脸模型 │ └── coco/
│ └── pose_iter_584000.caffemodel ## OpenPose姿态模型
└── hyperIQA/ └── hyperIQA/
└── pretrained/ └── pretrained/
└── hyperIQA.pth # 图像质量评估模型 └── hyperIQA.pth ## 图像质量评估模型
``` ```
## 环境配置 ## 环境配置