Skip to content

Latest commit

History

History
155 lines (103 loc) 路 5.82 KB

File metadata and controls

155 lines (103 loc) 路 5.82 KB
id title
bounded-box
Bounded Box

Bounded box

A bounded box is an infinitely customizable image annotation component that can be used to select and tag areas of an image. It supports selection using specific points (landmarking) or draw rectangular areas (bounding boxes).

Bounded Box

Properties

Bounded Box

Image URL

The bounding box requires an image to be displayed. Enter the URL or image data to show it on the component.

Default value

Provide the data that will load the default bounded boxes over the image when the app is loaded. The data is expected to be an array of objects format.

Property Values
type Sets the type of the bounded box. The value can be RECTANGLE or POINT.
width Sets the width of the bounded box in pixels. The value should be a number. If the type value is POINT, set it to 0.
height Sets the height of the bounded box in pixels. The value should be a number. If the type value is POINT, set it to 0.
x Sets the x-coordinate position of the bounded box in the image. It expects a numerical value representing the horizontal position.
y Sets the y-coordinate position of the bounded box in the image. It expects a numerical value representing the vertical position.
text Sets the text value of the bounded box. It should be one of the labels provided in the List of labels property.

Example of default values:

[
    {
        type: 'RECTANGLE',
        width: 40,
        height: 24,
        x: 41,
        y: 12,
        text: 'Tree'
    },
    {
        type: 'POINT',
        width: 0,
        height: 0,
        x: 10.28,
        y: 81.14,
        text: 'Car'
    }
]

Selector

The bounded box support selection using:

  • Rectangle
  • Point

You can also click on the Fx to set the value programmatically.

List of labels

This property will include the list of label that will be displayed in the dropdown while selection in the bounded-box. This property requires the label in array format.

Events

To add an event to a bounded-box, click on the component handle to open its properties on the right. Go to the Events accordion and click on Add handler.

Button group events

On change

On change event is triggered when the label from the dropdown in the selector is changed in the bounded box. Just like any other event on ToolJet, you can set multiple handlers for on-change event.

:::info Check Action Reference docs to get the detailed information about all the Actions. :::

General

Tooltip

A Tooltip is often used to specify extra information about something when the user hovers the mouse pointer over the widget.

Under the General accordion, you can set the value in the string format. Hovering over the component will display the string as the tooltip.

Button group Tooltip

Layout

Button group layout
Layout description Expected value
Show on desktop Toggle on or off to display desktop view. You can programmatically determine the value by clicking on Fx to set the value {{true}} or {{false}}
Show on mobile Toggle on or off to display mobile view. You can programmatically determine the value by clicking on Fx to set the value {{true}} or {{false}}

Styles

Bounded box properties
Style Description
Visibility Toggle on or off to control the visibility of the component. You can programmatically change its value by clicking on the Fx button next to it. If {{false}} the component will not be visible when the app is loaded. By default, it's set to {{true}}.
Disable Toggle on to disable the widget. You can programmatically change its value by clicking on the Fx button next to it, if set to {{true}}, the component will be disabled and becomes non-functional. By default, its value is set to {{false}}.

:::info Any property having Fx button next to its field can be programmatically configured. :::

Exposed variables

variable Description
annotations This variable is an array of objects, where each object represents an annotation added to an image. The object contains the following keys: type, x, y, width, height, text, and id
annotations.type There are two types of annotations: Rectangle and Point
annotations.x coordinates on x axis
annotations.y coordinates on y axis
annotations.width width of annotation
annotations.height height of annotation
annotations.text label selected for the annotation
annotations.id unique id of the annotation (system generated)

The values can be accessed dynamically using {{components.boundedbox1.annotations[0].text}} or {{components.boundedbox1.annotations[1].width}}

Component specific actions (CSA)

There are currently no CSA (Component-Specific Actions) implemented to regulate or control the bounding box component.