DRAW_FIXED_GRID
DrawFixedGridStep
is a pipeline step that draws a grid on an image. This is similar to DrawGridStep
but the corner x
or y
location values are hard coded into the configuration (via points), instead of coming dynamically from the input data instance.
Configs | Descriptions |
imageName | Name of the input image key from the previous step. If set to |
points | A list of point of length 4, the corners, in order: top left, top right, bottom left, bottom right. |
gridX | The number of grid segments between (top left and top right) and (bottom left and bottom right). |
gridY | The number of grid segments between (top left and bottom left) and (top right and bottom right). |
coordArePixels | If |
borderColor | Color of the border. The color can be a hex/HTML string like |
gridColor | Color of the grid. If not set, the border color will be used. The color can be a hex/HTML string like |
borderThickness | Line thickness to use to draw the border in pixels. Default value is |
gridThickness | Line thickness to use to draw the border in pixels. If |
Last updated