OC-SORT Tracker¶
Class: OCSORTBlockV1
Source: inference.core.workflows.core_steps.trackers.ocsort.v1.OCSORTBlockV1
Track objects across video frames using the OC-SORT algorithm from the roboflow/trackers package.
OC-SORT extends SORT with two key mechanisms:
- Observation-Centric Re-Update (OCR): When a track reappears after occlusion, OC-SORT retroactively corrects the Kalman filter using the real observations before and after the gap, reducing accumulated drift.
- Observation-Centric Momentum (OCM): A direction-consistency cost is blended with IoU during association, penalising matches where the candidate detection lies in a direction inconsistent with the track's recent motion.
This makes OC-SORT significantly more robust than SORT in scenes with heavy occlusion, erratic motion, and uniform appearance.
When to use OC-SORT: - Crowded scenes with frequent and prolonged occlusions (e.g. pedestrians, warehouse workers). - Non-linear or erratic motion patterns (e.g. dancing, sports with abrupt direction changes). - When identity consistency over long sequences is more important than raw speed.
When to consider alternatives: - For general-purpose tracking with mixed-confidence detections, try ByteTrack. - For maximum simplicity and speed with a strong detector, try SORT.
Outputs three detection sets: - tracked_detections: All confirmed tracked detections with assigned track IDs. - new_instances: Detections whose track ID appears for the first time. - already_seen_instances: Detections whose track ID has been seen in a prior frame.
The block maintains separate tracker state and instance cache per video_identifier,
enabling multi-stream tracking within a single workflow.
Type identifier¶
Use the following identifier in step "type" field: roboflow_core/trackers_ocsort@v1to add the block as
as step in your workflow.
Properties¶
| Name | Type | Description | Refs |
|---|---|---|---|
name |
str |
Enter a unique identifier for this step.. | ❌ |
minimum_iou_threshold |
float |
Minimum IoU required to associate a detection with an existing track. Default: 0.3.. | ✅ |
minimum_consecutive_frames |
int |
Number of consecutive frames a track must be matched before it is emitted as a confirmed track (tracker_id != -1). Default: 3.. | ✅ |
lost_track_buffer |
int |
Number of frames to keep a track alive after it loses its matched detection. Higher values improve occlusion recovery. Default: 30.. | ✅ |
high_conf_det_threshold |
float |
Confidence threshold for high-confidence detections used in association. Default: 0.6.. | ✅ |
direction_consistency_weight |
float |
Weight for the direction consistency term in the OC-SORT association cost. Higher values prioritise alignment between historical motion direction and the direction to the candidate detection. Default: 0.2.. | ✅ |
delta_t |
int |
Number of past frames used by OC-SORT to estimate per-track velocity for direction consistency momentum. Default: 3.. | ✅ |
instances_cache_size |
int |
Maximum number of track IDs retained in the instance cache for new/already-seen categorisation. Uses FIFO eviction. Default: 16384.. | ❌ |
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 OC-SORT Tracker in version v1.
- inputs:
Depth Estimation,Pixelate Visualization,Object Detection Model,Velocity,Label Visualization,Reference Path Visualization,Google Vision OCR,VLM As Detector,Keypoint Detection Model,Crop Visualization,Detections Classes Replacement,Halo Visualization,Detections Consensus,SAM 3,Corner Visualization,Clip Comparison,Detection Event Log,Segment Anything 2 Model,Stability AI Inpainting,Detections Stitch,Byte Tracker,OC-SORT Tracker,Template Matching,SIFT Comparison,ByteTrack Tracker,Absolute Static Crop,Object Detection Model,Halo Visualization,Instance Segmentation Model,Polygon Visualization,Keypoint Visualization,SIFT,Identify Outliers,Time in Zone,SAM 3,Trace Visualization,Image Slicer,Camera Focus,Circle Visualization,Icon Visualization,Background Subtraction,Byte Tracker,VLM As Detector,Stability AI Outpainting,Triangle Visualization,QR Code Generator,Ellipse Visualization,Instance Segmentation Model,Stitch Images,Moondream2,EasyOCR,Text Display,Color Visualization,Pixel Color Count,Time in Zone,OCR Model,Path Deviation,Image Threshold,Detections List Roll-Up,Line Counter,Time in Zone,SIFT Comparison,Mask Visualization,Seg Preview,Camera Calibration,YOLO-World Model,Grid Visualization,Morphological Transformation,Model Comparison Visualization,Path Deviation,Image Preprocessing,SORT Tracker,Detections Transformation,Dynamic Zone,Mask Area Measurement,Image Contours,Detections Combine,Image Blur,Overlap Filter,Perspective Correction,Identify Changes,Bounding Box Visualization,Heatmap Visualization,Detections Merge,Gaze Detection,Distance Measurement,Byte Tracker,Polygon Zone Visualization,Contrast Equalization,Detections Filter,Line Counter,PTZ Tracking (ONVIF),Dynamic Crop,Line Counter Visualization,Background Color Visualization,Camera Focus,Keypoint Detection Model,SAM 3,Motion Detection,Image Convert Grayscale,Polygon Visualization,Classification Label Visualization,Detections Stabilizer,Image Slicer,Bounding Rectangle,Stability AI Image Generation,Detection Offset,Relative Static Crop,Blur Visualization,Dot Visualization - outputs:
Florence-2 Model,Pixelate Visualization,Velocity,Label Visualization,Crop Visualization,Detections Classes Replacement,Detections Consensus,Roboflow Dataset Upload,Corner Visualization,Segment Anything 2 Model,Detection Event Log,Detections Stitch,OC-SORT Tracker,Byte Tracker,ByteTrack Tracker,Time in Zone,Trace Visualization,Circle Visualization,Byte Tracker,Icon Visualization,Triangle Visualization,Ellipse Visualization,Color Visualization,Time in Zone,Model Monitoring Inference Aggregator,Path Deviation,Detections List Roll-Up,Line Counter,Time in Zone,Path Deviation,Model Comparison Visualization,SORT Tracker,Detections Transformation,Roboflow Custom Metadata,Mask Area Measurement,Detections Combine,Overlap Filter,Perspective Correction,Bounding Box Visualization,Detections Merge,Heatmap Visualization,Distance Measurement,Byte Tracker,Detections Filter,Stitch OCR Detections,Line Counter,PTZ Tracking (ONVIF),Dynamic Crop,Background Color Visualization,Camera Focus,Florence-2 Model,Detections Stabilizer,Detection Offset,Size Measurement,Blur Visualization,Roboflow Dataset Upload,Stitch OCR Detections,Dot Visualization
Input and Output Bindings¶
The available connections depend on its binding kinds. Check what binding kinds
OC-SORT Tracker in version v1 has.
Bindings
-
input
image(image): Input image with embedded video metadata (fps and video_identifier). Used to initialise and retrieve per-video tracker state..detections(Union[instance_segmentation_prediction,object_detection_prediction,keypoint_detection_prediction]): Detection predictions for the current frame to track..minimum_iou_threshold(float_zero_to_one): Minimum IoU required to associate a detection with an existing track. Default: 0.3..minimum_consecutive_frames(integer): Number of consecutive frames a track must be matched before it is emitted as a confirmed track (tracker_id != -1). Default: 3..lost_track_buffer(integer): Number of frames to keep a track alive after it loses its matched detection. Higher values improve occlusion recovery. Default: 30..high_conf_det_threshold(float_zero_to_one): Confidence threshold for high-confidence detections used in association. Default: 0.6..direction_consistency_weight(float_zero_to_one): Weight for the direction consistency term in the OC-SORT association cost. Higher values prioritise alignment between historical motion direction and the direction to the candidate detection. Default: 0.2..delta_t(integer): Number of past frames used by OC-SORT to estimate per-track velocity for direction consistency momentum. Default: 3..
-
output
tracked_detections(object_detection_prediction): Prediction with detected bounding boxes in form of sv.Detections(...) object.new_instances(object_detection_prediction): Prediction with detected bounding boxes in form of sv.Detections(...) object.already_seen_instances(object_detection_prediction): Prediction with detected bounding boxes in form of sv.Detections(...) object.
Example JSON definition of step OC-SORT Tracker in version v1
{
"name": "<your_step_name_here>",
"type": "roboflow_core/trackers_ocsort@v1",
"image": "<block_does_not_provide_example>",
"detections": "$steps.object_detection_model.predictions",
"minimum_iou_threshold": 0.3,
"minimum_consecutive_frames": 3,
"lost_track_buffer": 30,
"high_conf_det_threshold": 0.6,
"direction_consistency_weight": 0.2,
"delta_t": 3,
"instances_cache_size": "<block_does_not_provide_example>"
}