├── .gitignore ├── README.md ├── __init__.py ├── blender ├── apply_mesh_transform_as_shape_key.py ├── avatar_main_output.py ├── b_enum.py ├── b_vector3d.py ├── b_vector4d.py ├── blender_node.py ├── context_transform_pivot_point.py ├── create_shape_flow.py ├── export_blendshapes.py ├── export_gltf.py ├── image_alpha_mask_merge.py ├── image_width_height.py ├── input_types.txt ├── load_image_with_alpha.py ├── mesh_utils.py ├── ops_add_shape_keys.py ├── ops_assign_texture.py ├── ops_assign_vertex_group.py ├── ops_create_mesh_layer.py ├── ops_create_mesh_layer_advanced.py ├── ops_create_vertex_group.py ├── ops_get_first_obj.py ├── ops_group.py ├── ops_join.py ├── ops_match_texture_aspect_ratio.py ├── ops_mesh.py ├── ops_mesh_from_texture.py ├── ops_modify_shape_key.py ├── ops_modify_uv.py ├── ops_plane_texture_unwrap.py ├── ops_set_shape_key_value.py ├── ops_to_group.py ├── render_image.py └── save_image_exclude.py ├── generate_blender_types.py ├── global_bpy.py ├── js ├── Alert.js ├── AppHeader.js ├── AvatarPreview.js ├── CombinePointsDialog.js ├── Container.js ├── GetShareLink.js ├── LayerEditor.js ├── Loading.js ├── ShapeFlowEditor.js ├── SideBar.js ├── api.js ├── app.js ├── dialog.js ├── index.js ├── onnx.js ├── onnx_helper.js ├── state.js ├── styles.css ├── tw-styles.css ├── van-1.1.3.min.d.ts └── van.js ├── package.json ├── pnpm-lock.yaml ├── requirements.txt ├── routes.py ├── sam ├── combine_points.py ├── extract_boundary_points.py ├── image_bridge.py ├── load_image_from_request.py ├── load_value_from_request.py └── sam_multilayer.py └── tailwind.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/__init__.py -------------------------------------------------------------------------------- /blender/apply_mesh_transform_as_shape_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/apply_mesh_transform_as_shape_key.py -------------------------------------------------------------------------------- /blender/avatar_main_output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/avatar_main_output.py -------------------------------------------------------------------------------- /blender/b_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/b_enum.py -------------------------------------------------------------------------------- /blender/b_vector3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/b_vector3d.py -------------------------------------------------------------------------------- /blender/b_vector4d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/b_vector4d.py -------------------------------------------------------------------------------- /blender/blender_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/blender_node.py -------------------------------------------------------------------------------- /blender/context_transform_pivot_point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/context_transform_pivot_point.py -------------------------------------------------------------------------------- /blender/create_shape_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/create_shape_flow.py -------------------------------------------------------------------------------- /blender/export_blendshapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/export_blendshapes.py -------------------------------------------------------------------------------- /blender/export_gltf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/export_gltf.py -------------------------------------------------------------------------------- /blender/image_alpha_mask_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/image_alpha_mask_merge.py -------------------------------------------------------------------------------- /blender/image_width_height.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/image_width_height.py -------------------------------------------------------------------------------- /blender/input_types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/input_types.txt -------------------------------------------------------------------------------- /blender/load_image_with_alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/load_image_with_alpha.py -------------------------------------------------------------------------------- /blender/mesh_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/mesh_utils.py -------------------------------------------------------------------------------- /blender/ops_add_shape_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_add_shape_keys.py -------------------------------------------------------------------------------- /blender/ops_assign_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_assign_texture.py -------------------------------------------------------------------------------- /blender/ops_assign_vertex_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_assign_vertex_group.py -------------------------------------------------------------------------------- /blender/ops_create_mesh_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_create_mesh_layer.py -------------------------------------------------------------------------------- /blender/ops_create_mesh_layer_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_create_mesh_layer_advanced.py -------------------------------------------------------------------------------- /blender/ops_create_vertex_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_create_vertex_group.py -------------------------------------------------------------------------------- /blender/ops_get_first_obj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_get_first_obj.py -------------------------------------------------------------------------------- /blender/ops_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_group.py -------------------------------------------------------------------------------- /blender/ops_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_join.py -------------------------------------------------------------------------------- /blender/ops_match_texture_aspect_ratio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_match_texture_aspect_ratio.py -------------------------------------------------------------------------------- /blender/ops_mesh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_mesh.py -------------------------------------------------------------------------------- /blender/ops_mesh_from_texture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_mesh_from_texture.py -------------------------------------------------------------------------------- /blender/ops_modify_shape_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_modify_shape_key.py -------------------------------------------------------------------------------- /blender/ops_modify_uv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_modify_uv.py -------------------------------------------------------------------------------- /blender/ops_plane_texture_unwrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_plane_texture_unwrap.py -------------------------------------------------------------------------------- /blender/ops_set_shape_key_value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_set_shape_key_value.py -------------------------------------------------------------------------------- /blender/ops_to_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/ops_to_group.py -------------------------------------------------------------------------------- /blender/render_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/render_image.py -------------------------------------------------------------------------------- /blender/save_image_exclude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/blender/save_image_exclude.py -------------------------------------------------------------------------------- /generate_blender_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/generate_blender_types.py -------------------------------------------------------------------------------- /global_bpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/global_bpy.py -------------------------------------------------------------------------------- /js/Alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/Alert.js -------------------------------------------------------------------------------- /js/AppHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/AppHeader.js -------------------------------------------------------------------------------- /js/AvatarPreview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/AvatarPreview.js -------------------------------------------------------------------------------- /js/CombinePointsDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/CombinePointsDialog.js -------------------------------------------------------------------------------- /js/Container.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/Container.js -------------------------------------------------------------------------------- /js/GetShareLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/GetShareLink.js -------------------------------------------------------------------------------- /js/LayerEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/LayerEditor.js -------------------------------------------------------------------------------- /js/Loading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/Loading.js -------------------------------------------------------------------------------- /js/ShapeFlowEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/ShapeFlowEditor.js -------------------------------------------------------------------------------- /js/SideBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/SideBar.js -------------------------------------------------------------------------------- /js/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/api.js -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/app.js -------------------------------------------------------------------------------- /js/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/dialog.js -------------------------------------------------------------------------------- /js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/index.js -------------------------------------------------------------------------------- /js/onnx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/onnx.js -------------------------------------------------------------------------------- /js/onnx_helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/onnx_helper.js -------------------------------------------------------------------------------- /js/state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/state.js -------------------------------------------------------------------------------- /js/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/styles.css -------------------------------------------------------------------------------- /js/tw-styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/tw-styles.css -------------------------------------------------------------------------------- /js/van-1.1.3.min.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/van-1.1.3.min.d.ts -------------------------------------------------------------------------------- /js/van.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/js/van.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/requirements.txt -------------------------------------------------------------------------------- /routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/routes.py -------------------------------------------------------------------------------- /sam/combine_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/sam/combine_points.py -------------------------------------------------------------------------------- /sam/extract_boundary_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/sam/extract_boundary_points.py -------------------------------------------------------------------------------- /sam/image_bridge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/sam/image_bridge.py -------------------------------------------------------------------------------- /sam/load_image_from_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/sam/load_image_from_request.py -------------------------------------------------------------------------------- /sam/load_value_from_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/sam/load_value_from_request.py -------------------------------------------------------------------------------- /sam/sam_multilayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/sam/sam_multilayer.py -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avatechai/avatar-graph-comfyui/HEAD/tailwind.config.js --------------------------------------------------------------------------------