Morphological Transformation¶
Class: MorphologicalTransformationBlockV1
Apply morphological transformations to images using configurable operations (erosion, dilation, opening, closing, gradient, top hat, black hat) to modify object shapes, remove noise, fill holes, detect edges, and extract features from binary or grayscale images for image processing, noise removal, and feature extraction workflows.
How This Block Works¶
This block applies morphological transformations to images using structuring elements (kernels) to modify object shapes and extract features. The block:
- Receives an input image to transform (color images are automatically converted to grayscale)
- Converts the image to grayscale if it's in color format (morphological operations work on single-channel images)
- Creates a square structuring element (kernel) of specified kernel_size:
- Creates a square matrix of ones with dimensions (kernel_size, kernel_size)
- The kernel defines the neighborhood used for morphological operations
- Larger kernels affect larger regions, smaller kernels affect smaller regions
- Applies the selected morphological operation:
For Erosion: - Shrinks objects by removing pixels from object boundaries - Replaces each pixel with the minimum value in its kernel neighborhood - Thins objects and removes small protrusions - Useful for separating touching objects and removing small noise
For Dilation: - Expands objects by adding pixels to object boundaries - Replaces each pixel with the maximum value in its kernel neighborhood - Thickens objects and fills small holes - Useful for connecting nearby objects and filling gaps
For Opening (Erosion followed by Dilation): - First erodes then dilates the image - Removes small noise and separates touching objects - Preserves larger objects while eliminating small details - Useful for noise removal and object separation
For Closing (Dilation followed by Erosion): - First dilates then erodes the image - Fills small holes and connects nearby objects - Preserves object shape while closing gaps - Useful for filling holes and connecting fragmented objects
For Gradient (Dilation minus Erosion): - Computes the difference between dilated and eroded images - Highlights object boundaries and edges - Creates an outline effect showing object perimeters - Useful for edge detection and boundary extraction
For Top Hat (Input minus Opening): - Computes the difference between original image and its opening - Highlights small bright details that were removed by opening - Emphasizes bright features smaller than the kernel - Useful for detecting small bright objects or details
For Black Hat (Closing minus Input): - Computes the difference between closing and original image - Highlights small dark details that were filled by closing - Emphasizes dark features smaller than the kernel - Useful for detecting small dark objects or holes
- Preserves the image structure and metadata
- Returns the morphologically transformed image
Morphological operations use structuring elements (kernels) to probe and modify image structures. The kernel_size controls the scale of the transformation - larger kernels affect larger regions and have more pronounced effects. Basic operations (erosion, dilation) modify object sizes, composite operations (opening, closing) combine effects for noise removal and gap filling, and derived operations (gradient, top hat, black hat) extract specific features. The operations work best on binary or high-contrast grayscale images where object boundaries are clearly defined.
Common Use Cases¶
- Noise Removal: Remove small noise and artifacts from binary or grayscale images (e.g., remove salt-and-pepper noise, eliminate small artifacts, clean up thresholded images), enabling noise removal workflows
- Object Separation: Separate touching or overlapping objects in images (e.g., separate touching objects, split connected regions, isolate individual objects), enabling object separation workflows
- Hole Filling: Fill small holes and gaps in objects (e.g., fill holes in objects, close gaps in shapes, complete fragmented objects), enabling hole filling workflows
- Edge Detection: Detect object boundaries and edges using morphological gradient (e.g., find object edges, extract boundaries, detect object outlines), enabling morphological edge detection workflows
- Feature Extraction: Extract specific features like small bright or dark objects (e.g., detect small bright details with top hat, find small dark objects with black hat, extract specific morphological features), enabling feature extraction workflows
- Image Preprocessing: Prepare binary or grayscale images for further processing (e.g., clean up thresholded images, prepare images for contour detection, preprocess images for analysis), enabling morphological preprocessing workflows
Connecting to Other Blocks¶
This block receives an image and produces a morphologically transformed image:
- After image thresholding blocks to clean up thresholded binary images (e.g., remove noise from thresholded images, fill holes in binary images, separate objects in thresholded images), enabling thresholding-to-morphology workflows
- After preprocessing blocks to apply morphological operations after other preprocessing (e.g., apply morphology after filtering, clean up after thresholding, process after enhancement), enabling multi-stage preprocessing workflows
- Before contour detection blocks to prepare images for contour detection (e.g., clean up images before contour detection, fill holes before finding contours, separate objects before contour analysis), enabling morphology-to-contour workflows
- Before analysis blocks that process binary or grayscale images (e.g., analyze cleaned images, process separated objects, work with morphologically processed images), enabling morphological analysis workflows
- Before visualization blocks to display morphologically transformed images (e.g., visualize cleaned images, display processed results, show transformation effects), enabling morphological visualization workflows
- In image processing pipelines where morphological operations are part of a larger processing chain (e.g., clean images in pipelines, apply morphology in multi-stage workflows, process images in transformation chains), enabling morphological processing pipeline workflows
Requirements¶
This block works on single-channel (grayscale) images. Color images are automatically converted to grayscale before processing. Morphological operations work best on binary or high-contrast grayscale images where object boundaries are clearly defined. For optimal results, use thresholded binary images or high-contrast grayscale images as input.
Type identifier¶
Use the following identifier in step "type" field: roboflow_core/morphological_transformation@v1to add the block as
as step in your workflow.
Properties¶
| Name | Type | Description | Refs |
|---|---|---|---|
name |
str |
Enter a unique identifier for this step.. | โ |
kernel_size |
int |
Size of the square structuring element (kernel) used for morphological operations. Must be a positive integer. The kernel is a square matrix of ones with dimensions (kernel_size, kernel_size). Larger values create larger kernels that affect larger regions and produce more pronounced effects. Smaller values create smaller kernels that affect smaller regions with subtler effects. Typical values range from 3-15: smaller values (3-5) for fine operations and small objects, medium values (5-9) for general use, larger values (11-15) for coarse operations and large objects. Default is 5, which provides a good balance. Adjust based on object sizes and desired transformation scale.. | โ |
operation |
str |
Type of morphological operation to apply: 'Erosion' shrinks objects by removing boundary pixels (separates objects, removes noise), 'Dilation' expands objects by adding boundary pixels (connects objects, fills holes), 'Opening' (erosion then dilation) removes noise and separates objects, 'Closing' (default, dilation then erosion) fills holes and connects objects, 'Gradient' (dilation minus erosion) finds object boundaries/edges, 'Top Hat' (input minus opening) detects small bright details, or 'Black Hat' (closing minus input) detects small dark details. Default is 'Closing' which is commonly used for hole filling. Choose based on goals: erosion/dilation for size modification, opening/closing for noise removal and gap filling, gradient for edge detection, top hat/black hat for feature extraction.. | โ |
The Refs column marks possibility to parametrise the property with dynamic values available
in workflow runtime. See Bindings for more info.
Available Connections¶
Compatible Blocks
Check what blocks you can connect to Morphological Transformation in version v1.
- inputs:
Google Gemini,Google Vision OCR,Mask Visualization,Google Gemini,Image Convert Grayscale,Florence-2 Model,VLM As Detector,EasyOCR,Single-Label Classification Model,Image Blur,GLM-OCR,Depth Estimation,Multi-Label Classification Model,Crop Visualization,Florence-2 Model,Model Monitoring Inference Aggregator,Corner Visualization,Anthropic Claude,Keypoint Visualization,Google Gemini,Clip Comparison,VLM As Classifier,Triangle Visualization,OpenAI,Stability AI Inpainting,Stitch Images,Keypoint Detection Model,Llama 3.2 Vision,Perspective Correction,Stability AI Image Generation,Local File Sink,Reference Path Visualization,Halo Visualization,Trace Visualization,Grid Visualization,Polygon Visualization,Polygon Zone Visualization,Stitch OCR Detections,CSV Formatter,CogVLM,Stitch OCR Detections,Template Matching,Halo Visualization,SIFT Comparison,Label Visualization,Image Slicer,Dynamic Crop,Distance Measurement,Anthropic Claude,Image Threshold,Line Counter Visualization,OpenAI,Email Notification,Slack Notification,Line Counter,Webhook Sink,Stability AI Outpainting,Instance Segmentation Model,Heatmap Visualization,Ellipse Visualization,Pixel Color Count,LMM For Classification,Camera Focus,Icon Visualization,SIFT,OpenAI,Roboflow Dataset Upload,Background Color Visualization,SIFT Comparison,Text Display,LMM,Qwen3.5-VL,Image Contours,Blur Visualization,Contrast Equalization,QR Code Generator,Dot Visualization,Background Subtraction,Detection Event Log,Color Visualization,Roboflow Dataset Upload,Roboflow Custom Metadata,Twilio SMS Notification,Absolute Static Crop,Relative Static Crop,Bounding Box Visualization,OpenAI,S3 Sink,OCR Model,Polygon Visualization,Twilio SMS/MMS Notification,Camera Calibration,Model Comparison Visualization,Camera Focus,Image Slicer,Circle Visualization,Line Counter,Email Notification,Classification Label Visualization,Image Preprocessing,Object Detection Model,Anthropic Claude,Morphological Transformation,Pixelate Visualization - outputs:
Google Gemini,Google Vision OCR,Mask Visualization,Google Gemini,Image Convert Grayscale,Florence-2 Model,VLM As Detector,EasyOCR,Single-Label Classification Model,Image Blur,GLM-OCR,Depth Estimation,Clip Comparison,VLM As Detector,Dominant Color,Semantic Segmentation Model,Multi-Label Classification Model,Crop Visualization,SmolVLM2,Florence-2 Model,Detections Stabilizer,Corner Visualization,Multi-Label Classification Model,Anthropic Claude,OC-SORT Tracker,Keypoint Visualization,Google Gemini,Seg Preview,VLM As Classifier,Clip Comparison,SORT Tracker,VLM As Classifier,Triangle Visualization,OpenAI,Stability AI Inpainting,Keypoint Detection Model,Stitch Images,Llama 3.2 Vision,Perspective Correction,Stability AI Image Generation,YOLO-World Model,Reference Path Visualization,Halo Visualization,Trace Visualization,Buffer,QR Code Detection,Polygon Visualization,Polygon Zone Visualization,CogVLM,Motion Detection,Detections Stitch,Time in Zone,Object Detection Model,Template Matching,CLIP Embedding Model,SAM 3,Halo Visualization,SIFT Comparison,Label Visualization,Dynamic Crop,Image Slicer,Qwen3-VL,Perception Encoder Embedding Model,Anthropic Claude,Image Threshold,Instance Segmentation Model,Line Counter Visualization,OpenAI,SAM 3,Moondream2,Stability AI Outpainting,Instance Segmentation Model,Heatmap Visualization,Ellipse Visualization,Pixel Color Count,LMM For Classification,Camera Focus,Icon Visualization,Roboflow Dataset Upload,OpenAI,Qwen2.5-VL,SIFT,Background Color Visualization,Text Display,Keypoint Detection Model,Gaze Detection,Qwen3.5-VL,LMM,Image Contours,Contrast Equalization,Blur Visualization,Barcode Detection,Dot Visualization,Background Subtraction,Roboflow Dataset Upload,Color Visualization,Bounding Box Visualization,Relative Static Crop,Absolute Static Crop,OpenAI,Byte Tracker,OCR Model,Twilio SMS/MMS Notification,Polygon Visualization,ByteTrack Tracker,SAM 3,Camera Calibration,Segment Anything 2 Model,Model Comparison Visualization,Camera Focus,Email Notification,Circle Visualization,Single-Label Classification Model,Image Slicer,Object Detection Model,Classification Label Visualization,Image Preprocessing,Anthropic Claude,Morphological Transformation,Pixelate Visualization
Input and Output Bindings¶
The available connections depend on its binding kinds. Check what binding kinds
Morphological Transformation in version v1 has.
Bindings
-
input
image(image): Input image to apply morphological transformation to. Color images are automatically converted to grayscale before processing (morphological operations work on single-channel images). Works best on binary or high-contrast grayscale images where object boundaries are clearly defined. Thresholded binary images produce optimal results. The morphologically transformed image will have modified object shapes, removed noise, filled holes, or extracted features depending on the selected operation. Original image metadata is preserved in the output..kernel_size(integer): Size of the square structuring element (kernel) used for morphological operations. Must be a positive integer. The kernel is a square matrix of ones with dimensions (kernel_size, kernel_size). Larger values create larger kernels that affect larger regions and produce more pronounced effects. Smaller values create smaller kernels that affect smaller regions with subtler effects. Typical values range from 3-15: smaller values (3-5) for fine operations and small objects, medium values (5-9) for general use, larger values (11-15) for coarse operations and large objects. Default is 5, which provides a good balance. Adjust based on object sizes and desired transformation scale..operation(string): Type of morphological operation to apply: 'Erosion' shrinks objects by removing boundary pixels (separates objects, removes noise), 'Dilation' expands objects by adding boundary pixels (connects objects, fills holes), 'Opening' (erosion then dilation) removes noise and separates objects, 'Closing' (default, dilation then erosion) fills holes and connects objects, 'Gradient' (dilation minus erosion) finds object boundaries/edges, 'Top Hat' (input minus opening) detects small bright details, or 'Black Hat' (closing minus input) detects small dark details. Default is 'Closing' which is commonly used for hole filling. Choose based on goals: erosion/dilation for size modification, opening/closing for noise removal and gap filling, gradient for edge detection, top hat/black hat for feature extraction..
-
output
image(image): Image in workflows.
Example JSON definition of step Morphological Transformation in version v1
{
"name": "<your_step_name_here>",
"type": "roboflow_core/morphological_transformation@v1",
"image": "$inputs.image",
"kernel_size": "5",
"operation": "Closing"
}