Skip to content

Impact Pack

Comprehensive custom node suite for advanced features.

Installation

ComfyUI/custom_nodes/
  ComfyUI-Impact-Pack/

Install via ComfyUI Manager or:

bash
git clone https://github.com/ltdrdata/ComfyUI-Impact-Pack.git

Core Nodes

DetectFaces

Detect faces in images.

Inputs

InputTypeDescription
imageimageInput image
face_detectiondetectionDetection model

Outputs

OutputTypeDescription
faceimageCropped face
bboxbboxBounding box
maskmaskFace mask

Parameters

ParameterDescription
detection_modelModel to use
confidenceDetection threshold
max_facesMaximum faces to detect

FaceDetailer

Enhance faces using specialized model.

Workflow

[Full Image] → [DetectFaces] → [FaceDetailer] → [Composite]

                             Enhanced faces

Parameters

ParameterDescription
guide_sizeDetection size
seedRandom seed
stepsSampling steps
cfgCFG scale
denoiseDenoise strength

Detailer

General image enhancement node.

Usage

  1. Detect region of interest
  2. Enhance with specified model
  3. Composite back to original

Settings

ParameterDefaultDescription
guide_size512Processing resolution
max_corrections6Max enhancement passes
core_padding32Edge buffer

BoundingBox Nodes

Crop bbox

Crop image using bounding box.

Expand bbox

Expand bounding box with padding.

Clamp bbox

Ensure box stays within image bounds.

Mask Nodes

Mask Detailer

Enhance masked areas.

Mask Composition

  • Union
  • Intersection
  • Subtract

Feather Mask

Smooth mask edges.

Workflow Examples

Face Enhancement

LoadImage → DetectFaces → FaceDetailer → Composite
                ↓              ↓
           BoundingBox     Enhanced

Object Remove

LoadImage → Segment → Mask → Inpaint → Composite

Tips

  1. Detection quality: Use appropriate detection model
  2. Denoise balance: Lower for subtle, higher for major changes
  3. Padding: Use enough to avoid edge artifacts

Next Steps