Edge Detect
Extracts edges from an image using the Canny algorithm. Useful for creating line art, masks, or AI conditioning.
Edge Detect applies the Canny edge detection algorithm to find edges in an image. It outputs a binary image where white pixels mark detected edges. The two thresholds control sensitivity: the low threshold catches weak edges, the high threshold catches strong edges.
This node is commonly used to create line art from photographs, generate masks for compositing, or prepare reference images for AI image editing.
Parameters
Section titled “Parameters”Filter
Lower Canny threshold; below this rejected as non-edges
Upper Canny threshold; above this accepted as edges
Sobel kernel size; larger=broader, smoother edges
Use L2 norm for more accurate gradient magnitude
Gaussian blur before detection to reduce noise
Pre-blur kernel size (must be odd)
Swap edges and background
Color
Edge pixel color
Background pixel color
Blur Kernel only visible when Pre-Blur is enabled.
Usage Tips
Section titled “Usage Tips”- Enable Pre-Blur to reduce noise before detection, producing cleaner edges with fewer false positives.
- Lower thresholds detect more edges (including noise); higher thresholds detect only strong edges.
- Use custom edge and background colors to create colored line art.
- Wire Edge Detect output into AI Image Edit as a reference for structure-guided generation.