v0.63.5
roboflow/inferencev0.63.5Jan 9, 2026by grzegorz-roboflow
AI Summary
This release introduces new workflow blocks for tracking object lifecycles and displaying text on images.
Key Highlights
- Added Event Detection Log Block for tracking object lifecycles
- Added Text Display Visualization Block for showcasing results
- Added new RF-DETR-Seg sizes
- Fixed workflow input selectors for motion detection parameters
New Features
- Event Detection Log Block
- Text Display Visualization Block
Full Release Notes
# 💪 Added
* feature: Event Detection Log Block by @jeku46 in https://github.com/roboflow/inference/pull/1894
We have new analytics block in workflows - `Event Detection Log Block`
This block takes input from the bytetracker (or any other tracker) and stores a log of events. The events store the time an object (unique tracker id) was first seen, last seen, its tracker id, and class, like shown below:
```json
{
"1": {
"tracker_id": 1,
"class_name": "dog",
"first_seen_frame": 1,
"last_seen_frame": 107,
"frame_count": 102,
"first_seen_relative": 0.0,
"last_seen_relative": 3.533333333333333,
"first_seen_timestamp": 1765744769.0,
"last_seen_timestamp": 1765744772.5333333
}
}
Pending events (2):
{
"5": {
"tracker_id": 5,
"class_name": "dog",
"first_seen_frame": 87,
"last_seen_frame": 87,
"frame_count": 1,
"first_seen_relative": 2.8666666666666667,
"last_seen_relative": 2.8666666666666667,
"first_seen_timestamp": 1765744771.8666666,
"last_seen_timestamp": 1765744771.8666666
},
"6": {
"tracker_id": 6,
"class_name": "dog",
"first_seen_frame": 93,
"last_seen_frame": 105,
"frame_count": 6,
"first_seen_relative": 3.066666666666667,
"last_seen_relative": 3.466666666666667,
"first_seen_timestamp": 1765744772.0666666,
"last_seen_timestamp": 1765744772.4666667
}
}
```
With this block our users can now easily track lifecycle of detected and tracked objects!
<div align="center">
<img src="https://github.com/user-attachments/assets/fa50f34e-cd17-48ce-82bf-13f75fb62ba5" />
</div>
* feature: Add Text Display Visualization Block by @rafel-roboflow in https://github.com/roboflow/inference/pull/1895
We have new visualization block in workflows - `Text Display Visualization Block`, users can now add parametrized text element on annotated image, showing live results of other blocks and making it much easier to showcase real value brought by workflow!
<div align="center">
<img src="https://github.com/user-attachments/assets/ceeb0d57-1b01-4fb4-890c-070b982b13f9" />
</div>
# 🚧 Maintenance
* Add new RF-DETR-Seg sizes by @probicheaux in https://github.com/roboflow/inference/pull/1897
* fix: allow workflow input selectors for motion detection parameters by @sberan in https://github.com/roboflow/inference/pull/1898
# 📖 Documentation improvements
* Enhance documentation for visualizations workflow blocks by @patricknihranz in https://github.com/roboflow/inference/pull/1880
* Docs transformations by @patricknihranz in https://github.com/roboflow/inference/pull/1882
* Docs sinks by @patricknihranz in https://github.com/roboflow/inference/pull/1883
* Enhance documentation for analytics workflow blocks by @patricknihranz in https://github.com/roboflow/inference/pull/1884
* Docs cache by @patricknihranz in https://github.com/roboflow/inference/pull/1885
* Docs classical cv by @patricknihranz in https://github.com/roboflow/inference/pull/1886
* Enhance documentation for flow_control workflow blocks by @patricknihranz in https://github.com/roboflow/inference/pull/1887
* Docs formatters by @patricknihranz in https://github.com/roboflow/inference/pull/1888
* Docs fusion by @patricknihranz in https://github.com/roboflow/inference/pull/1889
* Docs math by @patricknihranz in https://github.com/roboflow/inference/pull/1890
* Docs sampling by @patricknihranz in https://github.com/roboflow/inference/pull/1891
* Enhance documentation for secrets_providers workflow blocks by @patricknihranz in https://github.com/roboflow/inference/pull/1892
# 🏅 New Contributors
* @jeku46 made their first contribution in https://github.com/roboflow/inference/pull/1894
* @rafel-roboflow made their first contribution in https://github.com/roboflow/inference/pull/1895
* @patricknihranz made their first contribution in https://github.com/roboflow/inference/pull/1880
**Full Changelog**: https://github.com/roboflow/inference/compare/v0.63.4...v0.63.5