From 5c6545b00d8986d5e3317612f8c9029f8b059106 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 10:33:33 +0000 Subject: [PATCH 01/32] Update tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/preprocessors.mdx | 102 ++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 tutorials/utility/preprocessors.mdx diff --git a/tutorials/utility/preprocessors.mdx b/tutorials/utility/preprocessors.mdx new file mode 100644 index 00000000..4502703f --- /dev/null +++ b/tutorials/utility/preprocessors.mdx @@ -0,0 +1,102 @@ +--- +title: "Preprocessor workflows" +description: "Learn how to use depth estimation, lineart conversion, pose detection, and normals extraction preprocessors in ComfyUI" +sidebarTitle: "Preprocessors" +--- + +## What are preprocessors? + +Preprocessors are foundational tools that extract structural information from images. They convert images into conditioning signals like depth maps, lineart, pose skeletons, and surface normals. These outputs drive better control and consistency in ControlNet, image-to-image, and video workflows. + +Using preprocessors as separate workflows enables: +- Faster iteration without full graph reruns +- Clear separation of preprocessing and generation +- Easier debugging and tuning +- More predictable image and video results + +## Depth estimation + +Depth estimation converts a flat image into a depth map representing relative distance within a scene. This structural signal is foundational for controlled generation, spatially aware edits, and relighting workflows. + +This workflow emphasizes: +- Clean, stable depth extraction +- Consistent normalization for downstream use +- Easy integration with ControlNet and image-edit pipelines + +Depth outputs can be reused across multiple passes, making it easier to iterate without re-running expensive upstream steps. + + + Run on Comfy Cloud + + +## Lineart conversion + +Lineart preprocessors distill an image down to its essential edges and contours, removing texture and color while preserving structure. + +This workflow is designed to: +- Produce clean, high-contrast lineart +- Minimize broken or noisy edges +- Provide reliable structural guidance for stylization and redraw workflows + +Lineart pairs especially well with depth and pose, offering strong structural constraints without overconstraining style. + + + Run on Comfy Cloud + + +## Pose detection + +Pose detection extracts body keypoints and skeletal structure from images, enabling precise control over human posture and movement. + +This workflow focuses on: +- Clear, readable pose outputs +- Stable keypoint detection suitable for reuse across frames +- Compatibility with pose-based ControlNet and animation pipelines + +By isolating pose extraction into a dedicated workflow, pose data becomes easier to inspect, refine, and reuse. + + + Run on Comfy Cloud + + +## Normals extraction + +Normals estimation converts a flat image into a surface normal map—a per-pixel direction field that describes how each part of a surface is oriented (typically encoded as RGB). This signal is useful for relighting, material-aware stylization, and highly structured edits. + +This workflow emphasizes: +- Clean, stable normal extraction with minimal speckling +- Consistent orientation and normalization for reliable downstream use +- ControlNet-ready outputs for relighting, refinement, and structure-preserving edits +- Reuse across passes so you can iterate without re-running earlier steps + +Normal outputs can be used to: +- Drive relight/shading changes while preserving geometry +- Add a stronger 3D-like structure to stylization and redraw pipelines +- Improve consistency across frames when paired with pose/depth for animation work + + + Run on Comfy Cloud + + +## Getting started + + + + Update ComfyUI to the latest version or use Comfy Cloud + + + Download the workflows linked above or find them in Templates on Comfy Cloud + + + Follow the pop-up dialogs to download the required models and custom nodes + + + Review inputs, adjust settings, and run the workflow + + + +## Related tutorials + +- [ControlNet](/tutorials/controlnet/controlnet) - Use preprocessor outputs with ControlNet +- [Depth ControlNet](/tutorials/controlnet/depth-controlnet) - Depth-guided image generation +- [Pose ControlNet](/tutorials/controlnet/pose-controlnet-2-pass) - Pose-guided image generation From e44fa3e1d4f2993aedbb2fdaa02de76f9b1fe8ee Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 10:33:43 +0000 Subject: [PATCH 02/32] Update tutorials/utility/frame-interpolation.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/frame-interpolation.mdx | 51 +++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 tutorials/utility/frame-interpolation.mdx diff --git a/tutorials/utility/frame-interpolation.mdx b/tutorials/utility/frame-interpolation.mdx new file mode 100644 index 00000000..a8973c23 --- /dev/null +++ b/tutorials/utility/frame-interpolation.mdx @@ -0,0 +1,51 @@ +--- +title: "Frame interpolation workflow" +description: "Learn how to use frame interpolation to smooth motion and increase frame rate in ComfyUI video workflows" +sidebarTitle: "Frame interpolation" +--- + +## What is frame interpolation? + +Frame interpolation generates intermediate frames between existing frames, resulting in smoother motion and improved temporal consistency. This technique is essential for video post-processing and can significantly improve the quality of generated videos. + +## Use cases + +Frame interpolation supports: +- **Increasing frame rate in short clips** - Convert low-FPS videos to higher frame rates +- **Smoothing motion in generated or edited video** - Reduce stuttering and stepping artifacts +- **Preparing sequences for downstream video models** - Standardize frame rate for consistent processing +- **Fixing low-FPS generations** - Many video generation workflows default to 16fps, which can introduce noticeable stutter + +## Why frame interpolation matters + +Many image and video generation workflows still default to 16fps, which can introduce noticeable stutter, stepping, and uneven motion—especially in camera moves and character animation. + +Frame interpolation is an effective way to smooth these artifacts without regenerating the source frames, making motion feel more natural while preserving the original composition and timing. + +Rather than always treating interpolation as a final post-process, it can also be used as a preprocessing step—allowing you to standardize frame rate early and feed cleaner temporal data into larger animation and video pipelines. + + + Run on Comfy Cloud + + +## Getting started + + + + Update ComfyUI to the latest version or use Comfy Cloud + + + Download the workflow linked above or find it in Templates on Comfy Cloud + + + Follow the pop-up dialogs to download the required models and custom nodes + + + Load your video frames, adjust interpolation settings, and run the workflow + + + +## Related tutorials + +- [Wan Video](/tutorials/video/wan/wan2_2) - Video generation workflows +- [LTX Video](/tutorials/video/ltxv) - Video generation with LTX models From e0a04be65c36a351477418fba948e165bf9827df Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 10:34:07 +0000 Subject: [PATCH 03/32] Update zh-CN/tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/preprocessors.mdx | 102 ++++++++++++++++++++++ 1 file changed, 102 insertions(+) create mode 100644 zh-CN/tutorials/utility/preprocessors.mdx diff --git a/zh-CN/tutorials/utility/preprocessors.mdx b/zh-CN/tutorials/utility/preprocessors.mdx new file mode 100644 index 00000000..fb809945 --- /dev/null +++ b/zh-CN/tutorials/utility/preprocessors.mdx @@ -0,0 +1,102 @@ +--- +title: "预处理器工作流" +description: "学习如何在 ComfyUI 中使用深度估计、线稿转换、姿态检测和法线提取预处理器" +sidebarTitle: "预处理器" +--- + +## 什么是预处理器? + +预处理器是从图像中提取结构信息的基础工具。它们将图像转换为条件信号,如深度图、线稿、姿态骨架和表面法线。这些输出可以在 ControlNet、图生图和视频工作流中提供更好的控制和一致性。 + +将预处理器作为独立工作流使用可以实现: +- 无需重新运行完整图表即可快速迭代 +- 预处理和生成的清晰分离 +- 更容易调试和调优 +- 更可预测的图像和视频结果 + +## 深度估计 + +深度估计将平面图像转换为表示场景中相对距离的深度图。这种结构信号是受控生成、空间感知编辑和重新打光工作流的基础。 + +此工作流强调: +- 干净、稳定的深度提取 +- 一致的归一化以供下游使用 +- 与 ControlNet 和图像编辑管道的轻松集成 + +深度输出可以在多个处理过程中重复使用,使迭代更容易,无需重新运行昂贵的上游步骤。 + + + 在 Comfy Cloud 上运行 + + +## 线稿转换 + +线稿预处理器将图像提炼为其基本边缘和轮廓,去除纹理和颜色,同时保留结构。 + +此工作流旨在: +- 生成干净、高对比度的线稿 +- 最小化断裂或噪声边缘 +- 为风格化和重绘工作流提供可靠的结构指导 + +线稿与深度和姿态配合特别好,提供强大的结构约束而不会过度约束风格。 + + + 在 Comfy Cloud 上运行 + + +## 姿态检测 + +姿态检测从图像中提取身体关键点和骨骼结构,实现对人体姿势和动作的精确控制。 + +此工作流专注于: +- 清晰、可读的姿态输出 +- 适合跨帧重用的稳定关键点检测 +- 与基于姿态的 ControlNet 和动画管道的兼容性 + +通过将姿态提取隔离到专用工作流中,姿态数据变得更容易检查、优化和重用。 + + + 在 Comfy Cloud 上运行 + + +## 法线提取 + +法线估计将平面图像转换为表面法线图——一个描述表面每个部分朝向的逐像素方向场(通常编码为 RGB)。这种信号对于重新打光、材质感知风格化和高度结构化的编辑非常有用。 + +此工作流强调: +- 干净、稳定的法线提取,最小化斑点 +- 一致的方向和归一化以供可靠的下游使用 +- ControlNet 就绪的输出,用于重新打光、优化和保持结构的编辑 +- 跨处理过程重用,无需重新运行早期步骤即可迭代 + +法线输出可用于: +- 在保持几何形状的同时驱动重新打光/着色变化 +- 为风格化和重绘管道添加更强的 3D 结构 +- 与姿态/深度配合用于动画工作时提高跨帧一致性 + + + 在 Comfy Cloud 上运行 + + +## 开始使用 + + + + 将 ComfyUI 更新到最新版本或使用 Comfy Cloud + + + 下载上面链接的工作流或在 Comfy Cloud 的模板中找到它们 + + + 按照弹出对话框下载所需的模型和自定义节点 + + + 检查输入,调整设置,然后运行工作流 + + + +## 相关教程 + +- [ControlNet](/zh-CN/tutorials/controlnet/controlnet) - 将预处理器输出与 ControlNet 配合使用 +- [深度 ControlNet](/zh-CN/tutorials/controlnet/depth-controlnet) - 深度引导的图像生成 +- [姿态 ControlNet](/zh-CN/tutorials/controlnet/pose-controlnet-2-pass) - 姿态引导的图像生成 From 3de162d79c271224798e53ae5b38551a3348c09c Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 10:34:16 +0000 Subject: [PATCH 04/32] Update zh-CN/tutorials/utility/frame-interpolation.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- .../tutorials/utility/frame-interpolation.mdx | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 zh-CN/tutorials/utility/frame-interpolation.mdx diff --git a/zh-CN/tutorials/utility/frame-interpolation.mdx b/zh-CN/tutorials/utility/frame-interpolation.mdx new file mode 100644 index 00000000..497a7673 --- /dev/null +++ b/zh-CN/tutorials/utility/frame-interpolation.mdx @@ -0,0 +1,51 @@ +--- +title: "帧插值工作流" +description: "学习如何在 ComfyUI 视频工作流中使用帧插值来平滑运动和提高帧率" +sidebarTitle: "帧插值" +--- + +## 什么是帧插值? + +帧插值在现有帧之间生成中间帧,从而实现更平滑的运动和改进的时间一致性。这种技术对于视频后处理至关重要,可以显著提高生成视频的质量。 + +## 使用场景 + +帧插值支持: +- **提高短片的帧率** - 将低帧率视频转换为更高帧率 +- **平滑生成或编辑视频中的运动** - 减少卡顿和阶梯状伪影 +- **为下游视频模型准备序列** - 标准化帧率以实现一致处理 +- **修复低帧率生成** - 许多视频生成工作流默认为 16fps,这可能会引入明显的卡顿 + +## 为什么帧插值很重要 + +许多图像和视频生成工作流仍然默认为 16fps,这可能会引入明显的卡顿、阶梯效应和不均匀的运动——尤其是在相机移动和角色动画中。 + +帧插值是一种有效的方法,可以在不重新生成源帧的情况下平滑这些伪影,使运动感觉更自然,同时保留原始构图和时序。 + +帧插值不仅可以作为最终后处理步骤,还可以用作预处理步骤——允许你尽早标准化帧率,并将更干净的时间数据输入到更大的动画和视频管道中。 + + + 在 Comfy Cloud 上运行 + + +## 开始使用 + + + + 将 ComfyUI 更新到最新版本或使用 Comfy Cloud + + + 下载上面链接的工作流或在 Comfy Cloud 的模板中找到它 + + + 按照弹出对话框下载所需的模型和自定义节点 + + + 加载你的视频帧,调整插值设置,然后运行工作流 + + + +## 相关教程 + +- [万相视频](/zh-CN/tutorials/video/wan/wan2_2) - 视频生成工作流 +- [LTX 视频](/zh-CN/tutorials/video/ltxv) - 使用 LTX 模型的视频生成 From 0f16d5a0f36ae59a7856e3958adc1b7b209501ba Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 10:34:31 +0000 Subject: [PATCH 05/32] Update docs.json Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- docs.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs.json b/docs.json index 23475b9d..3a66e323 100644 --- a/docs.json +++ b/docs.json @@ -250,6 +250,13 @@ "group": "Audio", "pages": ["tutorials/audio/ace-step/ace-step-v1"] }, + { + "group": "Utility", + "pages": [ + "tutorials/utility/preprocessors", + "tutorials/utility/frame-interpolation" + ] + }, { "group": "Partner Nodes", "pages": [ From 4a1ddacba99020d66881bb93ca38a8c56925f0c0 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Thu, 15 Jan 2026 10:34:37 +0000 Subject: [PATCH 06/32] Update docs.json Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- docs.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs.json b/docs.json index 3a66e323..87d12d08 100644 --- a/docs.json +++ b/docs.json @@ -949,6 +949,13 @@ "group": "音频", "pages": ["zh-CN/tutorials/audio/ace-step/ace-step-v1"] }, + { + "group": "Utility", + "pages": [ + "zh-CN/tutorials/utility/preprocessors", + "zh-CN/tutorials/utility/frame-interpolation" + ] + }, { "group": "合作伙伴节点", "pages": [ From 8c8914ceff4c9b08f892c43645838cb981806790 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:36:32 +0000 Subject: [PATCH 07/32] Update tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/preprocessors.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tutorials/utility/preprocessors.mdx b/tutorials/utility/preprocessors.mdx index 4502703f..cc851d0c 100644 --- a/tutorials/utility/preprocessors.mdx +++ b/tutorials/utility/preprocessors.mdx @@ -25,10 +25,14 @@ This workflow emphasizes: Depth outputs can be reused across multiple passes, making it easier to iterate without re-running expensive upstream steps. - + Run on Comfy Cloud + + Download JSON + + ## Lineart conversion Lineart preprocessors distill an image down to its essential edges and contours, removing texture and color while preserving structure. From 27a450dc95081f493d991bf2240e26036eee397b Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:36:35 +0000 Subject: [PATCH 08/32] Update tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/preprocessors.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tutorials/utility/preprocessors.mdx b/tutorials/utility/preprocessors.mdx index cc851d0c..a259c28b 100644 --- a/tutorials/utility/preprocessors.mdx +++ b/tutorials/utility/preprocessors.mdx @@ -59,10 +59,14 @@ This workflow focuses on: By isolating pose extraction into a dedicated workflow, pose data becomes easier to inspect, refine, and reuse. - + Run on Comfy Cloud + + Download JSON + + ## Normals extraction Normals estimation converts a flat image into a surface normal map—a per-pixel direction field that describes how each part of a surface is oriented (typically encoded as RGB). This signal is useful for relighting, material-aware stylization, and highly structured edits. From 5162fbf6a2ea4a8291d8591ef79a46ad05dad523 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:36:42 +0000 Subject: [PATCH 09/32] Update tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/preprocessors.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tutorials/utility/preprocessors.mdx b/tutorials/utility/preprocessors.mdx index a259c28b..1d2098a3 100644 --- a/tutorials/utility/preprocessors.mdx +++ b/tutorials/utility/preprocessors.mdx @@ -44,10 +44,14 @@ This workflow is designed to: Lineart pairs especially well with depth and pose, offering strong structural constraints without overconstraining style. - + Run on Comfy Cloud + + Download JSON + + ## Pose detection Pose detection extracts body keypoints and skeletal structure from images, enabling precise control over human posture and movement. From 32f262c94eac137ccecd0b5d02975657cd60915e Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:36:52 +0000 Subject: [PATCH 10/32] Update zh-CN/tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/preprocessors.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zh-CN/tutorials/utility/preprocessors.mdx b/zh-CN/tutorials/utility/preprocessors.mdx index fb809945..e830249a 100644 --- a/zh-CN/tutorials/utility/preprocessors.mdx +++ b/zh-CN/tutorials/utility/preprocessors.mdx @@ -25,10 +25,14 @@ sidebarTitle: "预处理器" 深度输出可以在多个处理过程中重复使用,使迭代更容易,无需重新运行昂贵的上游步骤。 - + 在 Comfy Cloud 上运行 + + 下载 JSON + + ## 线稿转换 线稿预处理器将图像提炼为其基本边缘和轮廓,去除纹理和颜色,同时保留结构。 From eb56f9253ec8eb9281abd0b0228adc5cf1686362 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:36:54 +0000 Subject: [PATCH 11/32] Update zh-CN/tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/preprocessors.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zh-CN/tutorials/utility/preprocessors.mdx b/zh-CN/tutorials/utility/preprocessors.mdx index e830249a..a4be31c5 100644 --- a/zh-CN/tutorials/utility/preprocessors.mdx +++ b/zh-CN/tutorials/utility/preprocessors.mdx @@ -44,10 +44,14 @@ sidebarTitle: "预处理器" 线稿与深度和姿态配合特别好,提供强大的结构约束而不会过度约束风格。 - + 在 Comfy Cloud 上运行 + + 下载 JSON + + ## 姿态检测 姿态检测从图像中提取身体关键点和骨骼结构,实现对人体姿势和动作的精确控制。 From d4e20830af82c24c6a4448209a688e0af86971e0 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:36:56 +0000 Subject: [PATCH 12/32] Update zh-CN/tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/preprocessors.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zh-CN/tutorials/utility/preprocessors.mdx b/zh-CN/tutorials/utility/preprocessors.mdx index a4be31c5..256198a2 100644 --- a/zh-CN/tutorials/utility/preprocessors.mdx +++ b/zh-CN/tutorials/utility/preprocessors.mdx @@ -63,10 +63,14 @@ sidebarTitle: "预处理器" 通过将姿态提取隔离到专用工作流中,姿态数据变得更容易检查、优化和重用。 - + 在 Comfy Cloud 上运行 + + 下载 JSON + + ## 法线提取 法线估计将平面图像转换为表面法线图——一个描述表面每个部分朝向的逐像素方向场(通常编码为 RGB)。这种信号对于重新打光、材质感知风格化和高度结构化的编辑非常有用。 From 26fb247d6a044225481b45260fecc1799645a9d6 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:55:38 +0000 Subject: [PATCH 13/32] Update tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/preprocessors.mdx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tutorials/utility/preprocessors.mdx b/tutorials/utility/preprocessors.mdx index 1d2098a3..5a3c3881 100644 --- a/tutorials/utility/preprocessors.mdx +++ b/tutorials/utility/preprocessors.mdx @@ -107,8 +107,4 @@ Normal outputs can be used to: -## Related tutorials -- [ControlNet](/tutorials/controlnet/controlnet) - Use preprocessor outputs with ControlNet -- [Depth ControlNet](/tutorials/controlnet/depth-controlnet) - Depth-guided image generation -- [Pose ControlNet](/tutorials/controlnet/pose-controlnet-2-pass) - Pose-guided image generation From e0f3260a87befd2082ddc720a7764f3fd8a521d7 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:55:40 +0000 Subject: [PATCH 14/32] Update zh-CN/tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/preprocessors.mdx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/zh-CN/tutorials/utility/preprocessors.mdx b/zh-CN/tutorials/utility/preprocessors.mdx index 256198a2..54e9b095 100644 --- a/zh-CN/tutorials/utility/preprocessors.mdx +++ b/zh-CN/tutorials/utility/preprocessors.mdx @@ -107,8 +107,4 @@ sidebarTitle: "预处理器" -## 相关教程 -- [ControlNet](/zh-CN/tutorials/controlnet/controlnet) - 将预处理器输出与 ControlNet 配合使用 -- [深度 ControlNet](/zh-CN/tutorials/controlnet/depth-controlnet) - 深度引导的图像生成 -- [姿态 ControlNet](/zh-CN/tutorials/controlnet/pose-controlnet-2-pass) - 姿态引导的图像生成 From c9129666c649505bf2f84fa695e218422a545425 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:58:06 +0000 Subject: [PATCH 15/32] Update tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/preprocessors.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tutorials/utility/preprocessors.mdx b/tutorials/utility/preprocessors.mdx index 5a3c3881..3de5e3e6 100644 --- a/tutorials/utility/preprocessors.mdx +++ b/tutorials/utility/preprocessors.mdx @@ -6,6 +6,10 @@ sidebarTitle: "Preprocessors" ## What are preprocessors? + +These workflows contain custom nodes. You need to install them using [ComfyUI Manager](/comfyui/custom-nodes/comfyui-manager) before running the workflows. + + Preprocessors are foundational tools that extract structural information from images. They convert images into conditioning signals like depth maps, lineart, pose skeletons, and surface normals. These outputs drive better control and consistency in ControlNet, image-to-image, and video workflows. Using preprocessors as separate workflows enables: From c03e02e9c167f8f595ed050493cd670b991b78be Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:58:08 +0000 Subject: [PATCH 16/32] Update zh-CN/tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/preprocessors.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zh-CN/tutorials/utility/preprocessors.mdx b/zh-CN/tutorials/utility/preprocessors.mdx index 54e9b095..3ab96a54 100644 --- a/zh-CN/tutorials/utility/preprocessors.mdx +++ b/zh-CN/tutorials/utility/preprocessors.mdx @@ -6,6 +6,10 @@ sidebarTitle: "预处理器" ## 什么是预处理器? + +这些工作流包含自定义节点。在运行工作流之前,你需要使用 [ComfyUI 管理器](/zh-CN/comfyui/custom-nodes/comfyui-manager) 安装这些自定义节点。 + + 预处理器是从图像中提取结构信息的基础工具。它们将图像转换为条件信号,如深度图、线稿、姿态骨架和表面法线。这些输出可以在 ControlNet、图生图和视频工作流中提供更好的控制和一致性。 将预处理器作为独立工作流使用可以实现: From 5aeaf3dd36da40d0fbed42b821acb51612f80573 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:58:09 +0000 Subject: [PATCH 17/32] Update tutorials/utility/frame-interpolation.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/frame-interpolation.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tutorials/utility/frame-interpolation.mdx b/tutorials/utility/frame-interpolation.mdx index a8973c23..7a9b9ba5 100644 --- a/tutorials/utility/frame-interpolation.mdx +++ b/tutorials/utility/frame-interpolation.mdx @@ -6,6 +6,10 @@ sidebarTitle: "Frame interpolation" ## What is frame interpolation? + +This workflow contains custom nodes. You need to install them using [ComfyUI Manager](/comfyui/custom-nodes/comfyui-manager) before running the workflow. + + Frame interpolation generates intermediate frames between existing frames, resulting in smoother motion and improved temporal consistency. This technique is essential for video post-processing and can significantly improve the quality of generated videos. ## Use cases From 455cdc1577fc783450f7c55a572d5994c2ee1566 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:58:10 +0000 Subject: [PATCH 18/32] Update zh-CN/tutorials/utility/frame-interpolation.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/frame-interpolation.mdx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zh-CN/tutorials/utility/frame-interpolation.mdx b/zh-CN/tutorials/utility/frame-interpolation.mdx index 497a7673..17a99df1 100644 --- a/zh-CN/tutorials/utility/frame-interpolation.mdx +++ b/zh-CN/tutorials/utility/frame-interpolation.mdx @@ -6,6 +6,10 @@ sidebarTitle: "帧插值" ## 什么是帧插值? + +此工作流包含自定义节点。在运行工作流之前,你需要使用 [ComfyUI 管理器](/zh-CN/comfyui/custom-nodes/comfyui-manager) 安装这些自定义节点。 + + 帧插值在现有帧之间生成中间帧,从而实现更平滑的运动和改进的时间一致性。这种技术对于视频后处理至关重要,可以显著提高生成视频的质量。 ## 使用场景 From 52cd8536b6417d25489bbe44c941a0392622b9a6 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:58:39 +0000 Subject: [PATCH 19/32] Update tutorials/utility/frame-interpolation.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/frame-interpolation.mdx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tutorials/utility/frame-interpolation.mdx b/tutorials/utility/frame-interpolation.mdx index 7a9b9ba5..58cca52e 100644 --- a/tutorials/utility/frame-interpolation.mdx +++ b/tutorials/utility/frame-interpolation.mdx @@ -28,9 +28,14 @@ Frame interpolation is an effective way to smooth these artifacts without regene Rather than always treating interpolation as a final post-process, it can also be used as a preprocessing step—allowing you to standardize frame rate early and feed cleaner temporal data into larger animation and video pipelines. - - Run on Comfy Cloud - + + + Run on Comfy Cloud + + + Download workflow file + + ## Getting started From 6150417ef39af149c3535017d91a919065520d48 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:58:40 +0000 Subject: [PATCH 20/32] Update tutorials/utility/frame-interpolation.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/frame-interpolation.mdx | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/tutorials/utility/frame-interpolation.mdx b/tutorials/utility/frame-interpolation.mdx index 58cca52e..0ccb7ad3 100644 --- a/tutorials/utility/frame-interpolation.mdx +++ b/tutorials/utility/frame-interpolation.mdx @@ -28,14 +28,9 @@ Frame interpolation is an effective way to smooth these artifacts without regene Rather than always treating interpolation as a final post-process, it can also be used as a preprocessing step—allowing you to standardize frame rate early and feed cleaner temporal data into larger animation and video pipelines. - - - Run on Comfy Cloud - - - Download workflow file - - + + Run on Comfy Cloud + ## Getting started @@ -54,7 +49,4 @@ Rather than always treating interpolation as a final post-process, it can also b -## Related tutorials -- [Wan Video](/tutorials/video/wan/wan2_2) - Video generation workflows -- [LTX Video](/tutorials/video/ltxv) - Video generation with LTX models From c23eef036e2a2476ebe1f8b1a932315a8d22c0f4 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:58:49 +0000 Subject: [PATCH 21/32] Update zh-CN/tutorials/utility/frame-interpolation.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/frame-interpolation.mdx | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/zh-CN/tutorials/utility/frame-interpolation.mdx b/zh-CN/tutorials/utility/frame-interpolation.mdx index 17a99df1..8578aa6d 100644 --- a/zh-CN/tutorials/utility/frame-interpolation.mdx +++ b/zh-CN/tutorials/utility/frame-interpolation.mdx @@ -28,9 +28,14 @@ sidebarTitle: "帧插值" 帧插值不仅可以作为最终后处理步骤,还可以用作预处理步骤——允许你尽早标准化帧率,并将更干净的时间数据输入到更大的动画和视频管道中。 - - 在 Comfy Cloud 上运行 - + + + 在 Comfy Cloud 上运行 + + + 下载工作流文件 + + ## 开始使用 From b91360be502eb8bb890cd73aecc0acee959fe400 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 13:58:56 +0000 Subject: [PATCH 22/32] Update zh-CN/tutorials/utility/frame-interpolation.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/frame-interpolation.mdx | 3 --- 1 file changed, 3 deletions(-) diff --git a/zh-CN/tutorials/utility/frame-interpolation.mdx b/zh-CN/tutorials/utility/frame-interpolation.mdx index 8578aa6d..2bb02ea6 100644 --- a/zh-CN/tutorials/utility/frame-interpolation.mdx +++ b/zh-CN/tutorials/utility/frame-interpolation.mdx @@ -54,7 +54,4 @@ sidebarTitle: "帧插值" -## 相关教程 -- [万相视频](/zh-CN/tutorials/video/wan/wan2_2) - 视频生成工作流 -- [LTX 视频](/zh-CN/tutorials/video/ltxv) - 使用 LTX 模型的视频生成 From 5a4a5e56bdd3d4b47742609e34a9855deafeb9f6 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 14:01:27 +0000 Subject: [PATCH 23/32] Update tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/preprocessors.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tutorials/utility/preprocessors.mdx b/tutorials/utility/preprocessors.mdx index 3de5e3e6..6c9a2d80 100644 --- a/tutorials/utility/preprocessors.mdx +++ b/tutorials/utility/preprocessors.mdx @@ -90,10 +90,14 @@ Normal outputs can be used to: - Add a stronger 3D-like structure to stylization and redraw pipelines - Improve consistency across frames when paired with pose/depth for animation work - + Run on Comfy Cloud + + Download JSON + + ## Getting started From b305aa3730cb47484db2d32e6a4aef93ed69e62f Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 14:01:31 +0000 Subject: [PATCH 24/32] Update zh-CN/tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/preprocessors.mdx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/zh-CN/tutorials/utility/preprocessors.mdx b/zh-CN/tutorials/utility/preprocessors.mdx index 3ab96a54..e08b5047 100644 --- a/zh-CN/tutorials/utility/preprocessors.mdx +++ b/zh-CN/tutorials/utility/preprocessors.mdx @@ -90,10 +90,14 @@ sidebarTitle: "预处理器" - 为风格化和重绘管道添加更强的 3D 结构 - 与姿态/深度配合用于动画工作时提高跨帧一致性 - + 在 Comfy Cloud 上运行 + + 下载 JSON + + ## 开始使用 From 89a786825ea38c7e05d7aa941c0d7efdefd58315 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 14:07:54 +0000 Subject: [PATCH 25/32] Update tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/preprocessors.mdx | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/tutorials/utility/preprocessors.mdx b/tutorials/utility/preprocessors.mdx index 6c9a2d80..ad605fdf 100644 --- a/tutorials/utility/preprocessors.mdx +++ b/tutorials/utility/preprocessors.mdx @@ -98,21 +98,4 @@ Normal outputs can be used to: Download JSON -## Getting started - - - - Update ComfyUI to the latest version or use Comfy Cloud - - - Download the workflows linked above or find them in Templates on Comfy Cloud - - - Follow the pop-up dialogs to download the required models and custom nodes - - - Review inputs, adjust settings, and run the workflow - - - From 21449c3784f637f09a6021d6f8c357cc3595da17 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 14:07:56 +0000 Subject: [PATCH 26/32] Update zh-CN/tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/preprocessors.mdx | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/zh-CN/tutorials/utility/preprocessors.mdx b/zh-CN/tutorials/utility/preprocessors.mdx index e08b5047..b29bae41 100644 --- a/zh-CN/tutorials/utility/preprocessors.mdx +++ b/zh-CN/tutorials/utility/preprocessors.mdx @@ -98,21 +98,4 @@ sidebarTitle: "预处理器" 下载 JSON -## 开始使用 - - - - 将 ComfyUI 更新到最新版本或使用 Comfy Cloud - - - 下载上面链接的工作流或在 Comfy Cloud 的模板中找到它们 - - - 按照弹出对话框下载所需的模型和自定义节点 - - - 检查输入,调整设置,然后运行工作流 - - - From 38230439b8793b0749f9df68c4b414cd81613fb3 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 14:07:57 +0000 Subject: [PATCH 27/32] Update tutorials/utility/frame-interpolation.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/frame-interpolation.mdx | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/tutorials/utility/frame-interpolation.mdx b/tutorials/utility/frame-interpolation.mdx index 0ccb7ad3..178e455d 100644 --- a/tutorials/utility/frame-interpolation.mdx +++ b/tutorials/utility/frame-interpolation.mdx @@ -32,21 +32,4 @@ Rather than always treating interpolation as a final post-process, it can also b Run on Comfy Cloud -## Getting started - - - - Update ComfyUI to the latest version or use Comfy Cloud - - - Download the workflow linked above or find it in Templates on Comfy Cloud - - - Follow the pop-up dialogs to download the required models and custom nodes - - - Load your video frames, adjust interpolation settings, and run the workflow - - - From ff926e1511ed3707fa0dbb9d3d412a3e474680e8 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 14:07:59 +0000 Subject: [PATCH 28/32] Update zh-CN/tutorials/utility/frame-interpolation.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/frame-interpolation.mdx | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/zh-CN/tutorials/utility/frame-interpolation.mdx b/zh-CN/tutorials/utility/frame-interpolation.mdx index 2bb02ea6..cdcb88d7 100644 --- a/zh-CN/tutorials/utility/frame-interpolation.mdx +++ b/zh-CN/tutorials/utility/frame-interpolation.mdx @@ -37,21 +37,4 @@ sidebarTitle: "帧插值" -## 开始使用 - - - - 将 ComfyUI 更新到最新版本或使用 Comfy Cloud - - - 下载上面链接的工作流或在 Comfy Cloud 的模板中找到它 - - - 按照弹出对话框下载所需的模型和自定义节点 - - - 加载你的视频帧,调整插值设置,然后运行工作流 - - - From 781d3221e8fad7ffd5b31372dea6d3ce4e11b098 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 14:08:54 +0000 Subject: [PATCH 29/32] Update tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/preprocessors.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/utility/preprocessors.mdx b/tutorials/utility/preprocessors.mdx index ad605fdf..686fa9b2 100644 --- a/tutorials/utility/preprocessors.mdx +++ b/tutorials/utility/preprocessors.mdx @@ -1,5 +1,5 @@ --- -title: "Preprocessor workflows" +title: "ComfyUI preprocessor workflows" description: "Learn how to use depth estimation, lineart conversion, pose detection, and normals extraction preprocessors in ComfyUI" sidebarTitle: "Preprocessors" --- From ef57d1a3b6bce28f8bcd092205f8a7da7ce4b43c Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 14:08:55 +0000 Subject: [PATCH 30/32] Update tutorials/utility/frame-interpolation.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- tutorials/utility/frame-interpolation.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/utility/frame-interpolation.mdx b/tutorials/utility/frame-interpolation.mdx index 178e455d..68bcc478 100644 --- a/tutorials/utility/frame-interpolation.mdx +++ b/tutorials/utility/frame-interpolation.mdx @@ -1,5 +1,5 @@ --- -title: "Frame interpolation workflow" +title: "ComfyUI frame interpolation workflow" description: "Learn how to use frame interpolation to smooth motion and increase frame rate in ComfyUI video workflows" sidebarTitle: "Frame interpolation" --- From 1fa1b31a1c95abfd0b6771ae87b63b51ef0eaf6b Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 14:08:57 +0000 Subject: [PATCH 31/32] Update zh-CN/tutorials/utility/preprocessors.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/preprocessors.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zh-CN/tutorials/utility/preprocessors.mdx b/zh-CN/tutorials/utility/preprocessors.mdx index b29bae41..8bd279f4 100644 --- a/zh-CN/tutorials/utility/preprocessors.mdx +++ b/zh-CN/tutorials/utility/preprocessors.mdx @@ -1,5 +1,5 @@ --- -title: "预处理器工作流" +title: "ComfyUI 预处理器工作流" description: "学习如何在 ComfyUI 中使用深度估计、线稿转换、姿态检测和法线提取预处理器" sidebarTitle: "预处理器" --- From 985448b0714d21155a61ca7303cfc1aa4cd079c5 Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Sun, 8 Feb 2026 14:08:58 +0000 Subject: [PATCH 32/32] Update zh-CN/tutorials/utility/frame-interpolation.mdx Co-Authored-By: mintlify[bot] <109931778+mintlify[bot]@users.noreply.github.com> --- zh-CN/tutorials/utility/frame-interpolation.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zh-CN/tutorials/utility/frame-interpolation.mdx b/zh-CN/tutorials/utility/frame-interpolation.mdx index cdcb88d7..8eac9b7a 100644 --- a/zh-CN/tutorials/utility/frame-interpolation.mdx +++ b/zh-CN/tutorials/utility/frame-interpolation.mdx @@ -1,5 +1,5 @@ --- -title: "帧插值工作流" +title: "ComfyUI 帧插值工作流" description: "学习如何在 ComfyUI 视频工作流中使用帧插值来平滑运动和提高帧率" sidebarTitle: "帧插值" ---