Skip to content

Line Counter Visualization

Version v1

The LineCounterZoneVisualization block draws line in an image with a specified color and opacity. Please note: line zone will be drawn on top of image passed to this block, this block should be placed before other visualization blocks in the workflow.

Type identifier

Use the following identifier in step "type" field: roboflow_core/line_counter_visualization@v1to add the block as as step in your workflow.

Properties

Name Type Description Refs
name str The unique name of this step..
copy_image bool Duplicate the image contents (vs overwriting the image in place). Deselect for chained visualizations that should stack on previous ones where the intermediate state is not needed..
zone List[Any] Line in the format [[x1, y1], [x2, y2]] consisting of exactly two points..
color str Color of the zone..
thickness int Thickness of the lines in pixels..
text_thickness int Thickness of the text in pixels..
text_scale float Scale of the text..
count_in int Reference to the number of objects that crossed into the line zone..
count_out int Reference to the number of objects that crossed out of the line zone..
opacity float Transparency of the Mask overlay..

The Refs column marks possibility to parametrise the property with dynamic values available in workflow runtime. See Bindings for more info.

Available Connections

Check what blocks you can connect to Line Counter Visualization in version v1.

The available connections depend on its binding kinds. Check what binding kinds Line Counter Visualization in version v1 has.

Bindings
  • input

    • image (image): The input image for this step..
    • copy_image (boolean): Duplicate the image contents (vs overwriting the image in place). Deselect for chained visualizations that should stack on previous ones where the intermediate state is not needed..
    • zone (list_of_values): Line in the format [[x1, y1], [x2, y2]] consisting of exactly two points..
    • color (string): Color of the zone..
    • thickness (integer): Thickness of the lines in pixels..
    • text_thickness (integer): Thickness of the text in pixels..
    • text_scale (float): Scale of the text..
    • count_in (integer): Reference to the number of objects that crossed into the line zone..
    • count_out (integer): Reference to the number of objects that crossed out of the line zone..
    • opacity (float_zero_to_one): Transparency of the Mask overlay..
  • output

    • image (image): Image in workflows.
Example JSON definition of step Line Counter Visualization in version v1
{
    "name": "<your_step_name_here>",
    "type": "roboflow_core/line_counter_visualization@v1",
    "image": "$inputs.image",
    "copy_image": true,
    "zone": [
        [
            0,
            50
        ],
        [
            500,
            50
        ]
    ],
    "color": "WHITE",
    "thickness": 2,
    "text_thickness": 1,
    "text_scale": 1.0,
    "count_in": "$steps.line_counter.count_in",
    "count_out": "$steps.line_counter.count_out",
    "opacity": 0.3
}