create_drawing_object_xldT_create_drawing_object_xldCreateDrawingObjectXldCreateDrawingObjectXldcreate_drawing_object_xld (Operator)
Name
create_drawing_object_xldT_create_drawing_object_xldCreateDrawingObjectXldCreateDrawingObjectXldcreate_drawing_object_xld
— Create a XLD contour which can be modified interactively.
Signature
Herror T_create_drawing_object_xld(const Htuple Row, const Htuple Column, Htuple* DrawID)
def create_drawing_object_xld(row: Sequence[Union[float, int]], column: Sequence[Union[float, int]]) -> HHandle
Description
create_drawing_object_xldcreate_drawing_object_xldCreateDrawingObjectXldCreateDrawingObjectXldcreate_drawing_object_xld
creates an XLD contour which can be modified
interactively in a HALCON window by the user. The contour is defined by the
coordinates RowRowRowrowrow
and ColumnColumnColumncolumncolumn
of its points.
These parameters can be queried any time with get_drawing_object_paramsget_drawing_object_paramsGetDrawingObjectParamsGetDrawingObjectParamsget_drawing_object_params
,
as well as its corresponding HALCON object with get_drawing_object_iconicget_drawing_object_iconicGetDrawingObjectIconicGetDrawingObjectIconicget_drawing_object_iconic
.
In addition to those parameters, every drawing object has a number of
parameters which determine the appearance of the object in the HALCON window.
See set_drawing_object_paramsset_drawing_object_paramsSetDrawingObjectParamsSetDrawingObjectParamsset_drawing_object_params
for details on the number and meaning
of those parameters.
In order to enable the interactive modification with the drawing object, the
object must be attached to an existing window. See
attach_drawing_object_to_windowattach_drawing_object_to_windowAttachDrawingObjectToWindowAttachDrawingObjectToWindowattach_drawing_object_to_window
for further details.
Once attached, the contour is editable by the user through interaction
with the window.
Further points can be added by left clicking on the window.
When clicking the contour segment between two consecutive points,
a new point is added between those points.
Each contour point can be moved by dragging its point handle.
A single contour point can be deleted by dragging it over one of the
neighboring contour points directly connected to it.
The contour can be closed by moving the last point onto the first
contour point. The contour can be moved as a whole by dragging it by the
handle in the center.
In addition, it is possible to assign a new contour to a drawing object with
set_drawing_object_xldset_drawing_object_xldSetDrawingObjectXldSetDrawingObjectXldset_drawing_object_xld
.
In contrast to the operator draw_xlddraw_xldDrawXldDrawXlddraw_xld
, this interaction does not block
the calling thread.
Execution Information
- Multithreading type: reentrant (runs in parallel with non-exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Processed without parallelization.
This operator returns a handle. Note that the state of an instance of this handle type may be changed by specific operators even though the handle is used as an input parameter by those operators.
Parameters
RowRowRowrowrow
(input_control) coordinates.y-array →
HTupleSequence[Union[float, int]]HTupleHtuple (real / integer) (double / int / long) (double / Hlong) (double / Hlong)
Row coordinates of the polygon.
Default:
[100,200,200,100]
Suggested values:
0, 10, 20, 50, 100, 200, 500
ColumnColumnColumncolumncolumn
(input_control) coordinates.x-array →
HTupleSequence[Union[float, int]]HTupleHtuple (real / integer) (double / int / long) (double / Hlong) (double / Hlong)
Column coordinates of the polygon.
Default:
[100,100,200,200]
Suggested values:
0, 10, 20, 50, 100, 200, 500
DrawIDDrawIDDrawIDdrawIDdraw_id
(output_control) drawing_object →
HDrawingObject, HTupleHHandleHTupleHtuple (handle) (IntPtr) (HHandle) (handle)
Handle of the drawing object.
Result
If the parameter values are correct the operator
create_drawing_object_xldcreate_drawing_object_xldCreateDrawingObjectXldCreateDrawingObjectXldcreate_drawing_object_xld
returns the value 2 (
H_MSG_TRUE)
.
Otherwise an exception is raised.
Possible Predecessors
open_windowopen_windowOpenWindowOpenWindowopen_window
Possible Successors
attach_drawing_object_to_windowattach_drawing_object_to_windowAttachDrawingObjectToWindowAttachDrawingObjectToWindowattach_drawing_object_to_window
,
get_drawing_object_paramsget_drawing_object_paramsGetDrawingObjectParamsGetDrawingObjectParamsget_drawing_object_params
,
get_drawing_object_iconicget_drawing_object_iconicGetDrawingObjectIconicGetDrawingObjectIconicget_drawing_object_iconic
,
set_drawing_object_xldset_drawing_object_xldSetDrawingObjectXldSetDrawingObjectXldset_drawing_object_xld
Alternatives
draw_xlddraw_xldDrawXldDrawXlddraw_xld
,
draw_xld_moddraw_xld_modDrawXldModDrawXldModdraw_xld_mod
,
draw_regiondraw_regionDrawRegionDrawRegiondraw_region
See also
create_drawing_object_rectangle1create_drawing_object_rectangle1CreateDrawingObjectRectangle1CreateDrawingObjectRectangle1create_drawing_object_rectangle1
,
create_drawing_object_rectangle2create_drawing_object_rectangle2CreateDrawingObjectRectangle2CreateDrawingObjectRectangle2create_drawing_object_rectangle2
,
create_drawing_object_ellipsecreate_drawing_object_ellipseCreateDrawingObjectEllipseCreateDrawingObjectEllipsecreate_drawing_object_ellipse
,
create_drawing_object_circle_sectorcreate_drawing_object_circle_sectorCreateDrawingObjectCircleSectorCreateDrawingObjectCircleSectorcreate_drawing_object_circle_sector
,
create_drawing_object_ellipse_sectorcreate_drawing_object_ellipse_sectorCreateDrawingObjectEllipseSectorCreateDrawingObjectEllipseSectorcreate_drawing_object_ellipse_sector
,
create_drawing_object_linecreate_drawing_object_lineCreateDrawingObjectLineCreateDrawingObjectLinecreate_drawing_object_line
,
create_drawing_object_circlecreate_drawing_object_circleCreateDrawingObjectCircleCreateDrawingObjectCirclecreate_drawing_object_circle
Module
Foundation