update_example

This commit is contained in:
kijai 2025-01-23 17:43:28 +02:00
parent d79855cbd9
commit aabfffb9a1
3 changed files with 1837 additions and 855 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.4 MiB

After

Width:  |  Height:  |  Size: 6.8 MiB

File diff suppressed because it is too large Load Diff

View File

@ -489,7 +489,7 @@ class Hy3DBakeFromMultiview:
raise f'no method {method}'
return texture, ori_trust_map > 1E-8
class Hy3DInpaintTexture:
class Hy3DMeshVerticeInpaintTexture:
@classmethod
def INPUT_TYPES(s):
return {
@ -715,7 +715,7 @@ NODE_CLASS_MAPPINGS = {
"Hy3DCameraConfig": Hy3DCameraConfig,
"Hy3DMeshUVWrap": Hy3DMeshUVWrap,
"Hy3DSampleMultiView": Hy3DSampleMultiView,
"Hy3DInpaintTexture": Hy3DInpaintTexture,
"Hy3DMeshVerticeInpaintTexture": Hy3DMeshVerticeInpaintTexture,
"Hy3DApplyTexture": Hy3DApplyTexture,
"CV2InpaintTexture": CV2InpaintTexture,
}
@ -733,7 +733,7 @@ NODE_DISPLAY_NAME_MAPPINGS = {
"Hy3DCameraConfig": "Hy3D Camera Config",
"Hy3DMeshUVWrap": "Hy3D Mesh UV Wrap",
"Hy3DSampleMultiView": "Hy3D Sample MultiView",
"Hy3DInpaintTexture": "Hy3D Inpaint Texture",
"Hy3DMeshVerticeInpaintTexture": "Hy3D Mesh Vertice Inpaint Texture",
"Hy3DApplyTexture": "Hy3D Apply Texture",
"CV2InpaintTexture": "CV2 Inpaint Texture",
}