Image Preprocessing¶
Class: ImagePreprocessingBlockV1
Source: inference.core.workflows.core_steps.classical_cv.image_preprocessing.v1.ImagePreprocessingBlockV1
Apply a resize, flip, or rotation step to an image.
Width and height are required for resizing. Degrees are required for rotating. Flip type is required for flipping.
Type identifier¶
Use the following identifier in step "type" field: roboflow_core/image_preprocessing@v1to add the block as
as step in your workflow.
Properties¶
| Name | Type | Description | Refs |
|---|---|---|---|
name |
str |
Enter a unique identifier for this step.. | ❌ |
task_type |
str |
Preprocessing task to be applied to the image.. | ❌ |
width |
int |
Width of the image to be resized to.. | ✅ |
height |
int |
Height of the image to be resized to.. | ✅ |
rotation_degrees |
int |
Positive value to rotate clockwise, negative value to rotate counterclockwise. | ✅ |
flip_type |
str |
Type of flip to be applied to the image.. | ✅ |
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 Image Preprocessing in version v1.
- inputs:
VLM as Detector,Google Vision OCR,Classification Label Visualization,Circle Visualization,SIFT Comparison,Image Contours,Relative Static Crop,Image Preprocessing,LMM For Classification,VLM as Classifier,Ellipse Visualization,Stitch Images,Triangle Visualization,Stability AI Inpainting,QR Code Generator,Image Slicer,Background Color Visualization,Model Monitoring Inference Aggregator,Template Matching,OCR Model,Distance Measurement,Dot Visualization,Florence-2 Model,SIFT,Morphological Transformation,EasyOCR,Reference Path Visualization,Halo Visualization,SIFT Comparison,Polygon Visualization,Image Slicer,Florence-2 Model,Slack Notification,Clip Comparison,Image Convert Grayscale,Instance Segmentation Model,OpenAI,Color Visualization,Line Counter,Keypoint Detection Model,Google Gemini,Label Visualization,Email Notification,Llama 3.2 Vision,Trace Visualization,Line Counter,Email Notification,Corner Visualization,Mask Visualization,CogVLM,Stability AI Outpainting,OpenAI,Roboflow Custom Metadata,Stitch OCR Detections,Blur Visualization,CSV Formatter,Crop Visualization,OpenAI,Grid Visualization,Perspective Correction,Twilio SMS Notification,Absolute Static Crop,Single-Label Classification Model,Contrast Equalization,Roboflow Dataset Upload,Roboflow Dataset Upload,Polygon Zone Visualization,Stability AI Image Generation,Webhook Sink,Depth Estimation,Bounding Box Visualization,Camera Focus,Line Counter Visualization,Multi-Label Classification Model,Icon Visualization,Image Blur,Pixelate Visualization,Image Threshold,Anthropic Claude,LMM,Google Gemini,Pixel Color Count,Dynamic Crop,Model Comparison Visualization,Camera Calibration,Local File Sink,Keypoint Visualization,Object Detection Model - outputs:
VLM as Detector,Google Vision OCR,SAM 3,Classification Label Visualization,Detections Stabilizer,Circle Visualization,Image Contours,Relative Static Crop,Image Preprocessing,LMM For Classification,VLM as Classifier,Ellipse Visualization,Stitch Images,Triangle Visualization,Stability AI Inpainting,Image Slicer,VLM as Classifier,Background Color Visualization,Segment Anything 2 Model,Template Matching,Moondream2,OCR Model,Dot Visualization,Florence-2 Model,SIFT,Morphological Transformation,EasyOCR,Gaze Detection,Halo Visualization,Reference Path Visualization,SIFT Comparison,Buffer,Polygon Visualization,Image Slicer,Florence-2 Model,Clip Comparison,Perception Encoder Embedding Model,Instance Segmentation Model,OpenAI,Byte Tracker,Color Visualization,Image Convert Grayscale,Object Detection Model,Keypoint Detection Model,Google Gemini,Label Visualization,Email Notification,Llama 3.2 Vision,Trace Visualization,QR Code Detection,YOLO-World Model,Corner Visualization,Mask Visualization,Time in Zone,CogVLM,Stability AI Outpainting,OpenAI,Detections Stitch,Barcode Detection,Blur Visualization,Dominant Color,Crop Visualization,VLM as Detector,Single-Label Classification Model,OpenAI,Perspective Correction,Clip Comparison,Single-Label Classification Model,Absolute Static Crop,Seg Preview,Contrast Equalization,Roboflow Dataset Upload,Roboflow Dataset Upload,Polygon Zone Visualization,CLIP Embedding Model,Stability AI Image Generation,Depth Estimation,Bounding Box Visualization,Camera Focus,Line Counter Visualization,Instance Segmentation Model,Multi-Label Classification Model,Icon Visualization,Image Blur,Pixelate Visualization,Image Threshold,Keypoint Detection Model,Anthropic Claude,LMM,Google Gemini,Multi-Label Classification Model,Pixel Color Count,SmolVLM2,Dynamic Crop,Qwen2.5-VL,Model Comparison Visualization,Camera Calibration,Keypoint Visualization,Object Detection Model
Input and Output Bindings¶
The available connections depend on its binding kinds. Check what binding kinds
Image Preprocessing in version v1 has.
Bindings
-
input
image(image): The input image for this step..width(integer): Width of the image to be resized to..height(integer): Height of the image to be resized to..rotation_degrees(integer): Positive value to rotate clockwise, negative value to rotate counterclockwise.flip_type(string): Type of flip to be applied to the image..
-
output
image(image): Image in workflows.
Example JSON definition of step Image Preprocessing in version v1
{
"name": "<your_step_name_here>",
"type": "roboflow_core/image_preprocessing@v1",
"image": "$inputs.image",
"task_type": "<block_does_not_provide_example>",
"width": 640,
"height": 640,
"rotation_degrees": 90,
"flip_type": "vertical"
}