find_box_3dT_find_box_3dFindBox3dFindBox3dfind_box_3d (Operator)

Name

find_box_3dT_find_box_3dFindBox3dFindBox3dfind_box_3d — Find boxes in 3D data.

Signature

find_box_3d( : : ObjectModel3DScene, SideLen1, SideLen2, SideLen3, MinScore, GenParam : GrippingPose, Score, ObjectModel3DBox, BoxInformation)

Herror T_find_box_3d(const Htuple ObjectModel3DScene, const Htuple SideLen1, const Htuple SideLen2, const Htuple SideLen3, const Htuple MinScore, const Htuple GenParam, Htuple* GrippingPose, Htuple* Score, Htuple* ObjectModel3DBox, Htuple* BoxInformation)

void FindBox3d(const HTuple& ObjectModel3DScene, const HTuple& SideLen1, const HTuple& SideLen2, const HTuple& SideLen3, const HTuple& MinScore, const HTuple& GenParam, HTuple* GrippingPose, HTuple* Score, HTuple* ObjectModel3DBox, HTuple* BoxInformation)

HPoseArray HObjectModel3D::FindBox3d(const HTuple& SideLen1, const HTuple& SideLen2, const HTuple& SideLen3, const HTuple& MinScore, const HDict& GenParam, HTuple* Score, HObjectModel3DArray* ObjectModel3DBox, HDict* BoxInformation) const

HPose HObjectModel3D::FindBox3d(const HTuple& SideLen1, const HTuple& SideLen2, const HTuple& SideLen3, double MinScore, const HDict& GenParam, HTuple* Score, HObjectModel3DArray* ObjectModel3DBox, HDict* BoxInformation) const

static HPoseArray HSurfaceModel::FindBox3d(const HObjectModel3D& ObjectModel3DScene, const HTuple& SideLen1, const HTuple& SideLen2, const HTuple& SideLen3, const HTuple& MinScore, const HDict& GenParam, HTuple* Score, HObjectModel3DArray* ObjectModel3DBox, HDict* BoxInformation)

static HPose HSurfaceModel::FindBox3d(const HObjectModel3D& ObjectModel3DScene, const HTuple& SideLen1, const HTuple& SideLen2, const HTuple& SideLen3, double MinScore, const HDict& GenParam, HTuple* Score, HObjectModel3DArray* ObjectModel3DBox, HDict* BoxInformation)

static void HOperatorSet.FindBox3d(HTuple objectModel3DScene, HTuple sideLen1, HTuple sideLen2, HTuple sideLen3, HTuple minScore, HTuple genParam, out HTuple grippingPose, out HTuple score, out HTuple objectModel3DBox, out HTuple boxInformation)

HPose[] HObjectModel3D.FindBox3d(HTuple sideLen1, HTuple sideLen2, HTuple sideLen3, HTuple minScore, HDict genParam, out HTuple score, out HObjectModel3D[] objectModel3DBox, out HDict boxInformation)

HPose HObjectModel3D.FindBox3d(HTuple sideLen1, HTuple sideLen2, HTuple sideLen3, double minScore, HDict genParam, out HTuple score, out HObjectModel3D[] objectModel3DBox, out HDict boxInformation)

static HPose[] HSurfaceModel.FindBox3d(HObjectModel3D objectModel3DScene, HTuple sideLen1, HTuple sideLen2, HTuple sideLen3, HTuple minScore, HDict genParam, out HTuple score, out HObjectModel3D[] objectModel3DBox, out HDict boxInformation)

static HPose HSurfaceModel.FindBox3d(HObjectModel3D objectModel3DScene, HTuple sideLen1, HTuple sideLen2, HTuple sideLen3, double minScore, HDict genParam, out HTuple score, out HObjectModel3D[] objectModel3DBox, out HDict boxInformation)

def find_box_3d(object_model_3dscene: HHandle, side_len_1: Sequence[float], side_len_2: Sequence[float], side_len_3: Sequence[float], min_score: Union[float, int], gen_param: HHandle) -> Tuple[Sequence[Union[float, int]], Sequence[float], Sequence[HHandle], HHandle]

Description

find_box_3dfind_box_3dFindBox3dFindBox3dFindBox3dfind_box_3d finds boxes in the 3D object model ObjectModel3DSceneObjectModel3DSceneObjectModel3DSceneObjectModel3DSceneobjectModel3DSceneobject_model_3dscene and returns the pose of a gripping point GrippingPoseGrippingPoseGrippingPoseGrippingPosegrippingPosegripping_pose, a 3D object model ObjectModel3DBoxObjectModel3DBoxObjectModel3DBoxObjectModel3DBoxobjectModel3DBoxobject_model_3dbox a score value ScoreScoreScoreScorescorescore and a dictionary BoxInformationBoxInformationBoxInformationBoxInformationboxInformationbox_information, containing further information about the found boxes, for each found box.

The side lengths of the boxes are passed in SideLen1SideLen1SideLen1SideLen1sideLen1side_len_1, SideLen2SideLen2SideLen2SideLen2sideLen2side_len_2, and SideLen3SideLen3SideLen3SideLen3sideLen3side_len_3. Each length consists of a tuple of two values, indicating the minimum and maximum length of that side. If only a single face of the box is expected to be visible, or no restriction should be applied to the remaining box length, SideLen3SideLen3SideLen3SideLen3sideLen3side_len_3 can be set to -1.

The parameter MinScoreMinScoreMinScoreMinScoreminScoremin_score sets the minimum score for boxes to be returned. Boxes with a score smaller than this value will not be returned.

ObjectModel3DSceneObjectModel3DSceneObjectModel3DSceneObjectModel3DSceneobjectModel3DSceneobject_model_3dscene must contain a XYZ-mapping, like it is, e.g., the case, when creating it with xyz_to_object_model_3dxyz_to_object_model_3dXyzToObjectModel3dXyzToObjectModel3dXyzToObjectModel3dxyz_to_object_model_3d.

Typical Workflow

A typical workflow for detecting 3D boxes in 3D data looks as follows:

  1. Obtain the 3D data either as XYZ-images, or directly as a 3D object model with XYZ-mapping.

  2. Remove as much background and clutter that is not part of any box from the scene as possible, in order to increase robustness and speed. Therefore, e.g., use thresholdthresholdThresholdThresholdThresholdthreshold and reduce_domainreduce_domainReduceDomainReduceDomainReduceDomainreduce_domain on the XYZ-images before calling xyz_to_object_model_3dxyz_to_object_model_3dXyzToObjectModel3dXyzToObjectModel3dXyzToObjectModel3dxyz_to_object_model_3d. Further options are described in the section “Troubleshooting” below.

  3. If the 3D data exists in the form of XYZ-images, convert them to a 3D object model using xyz_to_object_model_3dxyz_to_object_model_3dXyzToObjectModel3dXyzToObjectModel3dXyzToObjectModel3dxyz_to_object_model_3d.

  4. Obtain the approximate box edge lengths that should be found. Note that changing those lengths later on might make it necessary to also change other parameters, such as MinScoreMinScoreMinScoreMinScoreminScoremin_score.

  5. Call find_box_3dfind_box_3dFindBox3dFindBox3dFindBox3dfind_box_3d, passing the 3D object model with the scene and the approximate box edge lengths.

  6. Use the procedure visualize_object_model_3d to visualize the results, if necessary.

Understanding the Results

The boxes are returned in several ways.

First, the pose of a gripping point is returned in GrippingPoseGrippingPoseGrippingPoseGrippingPosegrippingPosegripping_pose. The used side of the box and the z-axis of the gripping pose are set according to the XYZ-mapping. If only a single side of the box is visible, the center of the gripping pose is in the center of that side, and its z-axis is oriented away from the viewing point of the XYZ-mapping. If multiple sides of the box are visible, the gripping pose lies in the center of the side that is most parallel to the viewing point of the XYZ-mapping. The z-axis is again oriented away from the viewing point of the XYZ-mapping. The x-axis of the gripping pose is set to the box axis that is roughly the most aligned with the column direction of the XYZ-mapping. The y-axis is computed based on the x- and z-axis.

The box is also returned in triangulated form in ObjectModel3DBoxObjectModel3DBoxObjectModel3DBoxObjectModel3DBoxobjectModel3DBoxobject_model_3dbox. This allows a quick visualization of the results.

For each found box, a score between 0 and 1 is returned in ScoreScoreScoreScorescorescore. The score indicates how well the box and its edges are visible, and how well the found box matches the specified dimensions.

Finally, additional information about the results is returned in the dictionary BoxInformationBoxInformationBoxInformationBoxInformationboxInformationbox_information. get_dict_paramget_dict_paramGetDictParamGetDictParamGetDictParamget_dict_param and get_dict_tupleget_dict_tupleGetDictTupleGetDictTupleGetDictTupleget_dict_tuple can be used to obtain further information about the results. Also, the HDevelop handle inspect window can be used to inspect the returned dictionary.

The dictionary BoxInformationBoxInformationBoxInformationBoxInformationboxInformationbox_information contains the following keys:

results:

This key references a dictionary containing the found boxes. They are sorted according to their score in descending order with ascending integer keys starting at 0.

Each box result is a dictionary with the following keys:

box_pose:

This is the box's pose in the coordinate system of the scene. This pose is used for visualizing the found box.

box_length_x, box_length_y, box_length_z:

The side lengths of the found box corresponding to box_pose. box_length_x and box_length_y will always contain a positive number. If only a single side of the box is visible, box_length_z will be set to 0.

gripping_pose:

The same pose as returned in GrippingPoseGrippingPoseGrippingPoseGrippingPosegrippingPosegripping_pose.

gripping_length_x, gripping_length_y, gripping_length_z:

The side lengths of the found box corresponding to GrippingPoseGrippingPoseGrippingPoseGrippingPosegrippingPosegripping_pose. gripping_length_x and gripping_length_y will always contain a positive number. If only a single side of the box is visible, gripping_length_z will be set to 0.

score:

The same score as returned in ScoreScoreScoreScorescorescore.

one_side_only:

Boolean indicating whether only one side of the box is visible ('true'"true""true""true""true""true") or not ('false'"false""false""false""false""false").

gen_param:

This is a dictionary with the parameters passed to find_box_3dfind_box_3dFindBox3dFindBox3dFindBox3dfind_box_3d. SideLen1SideLen1SideLen1SideLen1sideLen1side_len_1, SideLen2SideLen2SideLen2SideLen2sideLen2side_len_2, and SideLen3SideLen3SideLen3SideLen3sideLen3side_len_3 are pooled in a tuple with key lengths. The key min_score references MinScoreMinScoreMinScoreMinScoreminScoremin_score. The other keys are denoted analogously to the generic parameters of the dictionary GenParamGenParamGenParamGenParamgenParamgen_param.

sampled_edges:

This is the 3D object model with sampled edges. It contains the viewing direction of the edge points as normal vectors.

sampled_edges_direction:

This is the 3D object model with sampled edges (same as for key sampled_edges. It contains the edge directions of the edge points as normal vectors.

sampled_scene:

This is the sampled scene in which the boxes are looked for. It can be used for visualization or debugging the sampling distance.

sampled_reference_points:

This is a 3D object model with all points from the 3D scene that were used as reference points in the matching process. For each reference point, the optimum pose of the box is computed under the assumption that the reference point lies on the surface of the box.

Generic Parameters

Additional parameters can be passed as key/tuple pairs in the dictionary GenParamGenParamGenParamGenParamgenParamgen_param in order to improve the matching process. The following parameter names serve as keys to their corresponding tuples (see create_dictcreate_dictCreateDictCreateDictCreateDictcreate_dict and set_dict_tupleset_dict_tupleSetDictTupleSetDictTupleSetDictTupleset_dict_tuple).

3d_edges:

Allows to manually set the 3D scene edges. The parameter must be a 3D object model handle. The edges are usually a result of the operator edges_object_model_3dedges_object_model_3dEdgesObjectModel3dEdgesObjectModel3dEdgesObjectModel3dedges_object_model_3d but can further be filtered in order to remove outliers. If this parameter is not given, find_box_3dfind_box_3dFindBox3dFindBox3dFindBox3dfind_box_3d will internally extract the 3D edges similar to the operator edges_object_model_3dedges_object_model_3dEdgesObjectModel3dEdgesObjectModel3dEdgesObjectModel3dedges_object_model_3d.

3d_edge_min_amplitude:

Sets the minimum amplitude of a discontinuity in order for it to be classified as an edge. Note that if edges were passed manually with the generic parameter 3d_edges, this parameter is ignored. Otherwise, it behaves similar to the parameter MinAmplitudeMinAmplitudeMinAmplitudeMinAmplitudeminAmplitudemin_amplitude of the operator edges_object_model_3dedges_object_model_3dEdgesObjectModel3dEdgesObjectModel3dEdgesObjectModel3dedges_object_model_3d.

Assertion: 3d_edge_min_amplitude >= 0

Default value: 10% of the smallest box diagonal.

max_gap:

If no edges are passed with 3d_edges, the operator will extract 3D edges internally. The parameter can be used to control the edge extraction.

max_gap has the same meaning as in edges_object_model_3dedges_object_model_3dEdgesObjectModel3dEdgesObjectModel3dEdgesObjectModel3dedges_object_model_3d.

remove_outer_edges:

Removes the outermost edges when set to 'true'"true""true""true""true""true". This is for example helpful for bin picking applications in order to remove the bin.

Default value: 'false'"false""false""false""false""false"

Possible values: 'false'"false""false""false""false""false", 'true'"true""true""true""true""true"

max_num_boxes:

Limits the number of returned boxes. By default, find_box_3dfind_box_3dFindBox3dFindBox3dFindBox3dfind_box_3d will return all detected boxes with a score larger than MinScoreMinScoreMinScoreMinScoreminScoremin_score. This parameter can be used to limit the number of boxes respectively.

Default value: 0 (return all boxes)

box_type:

Sets the type of boxes to search for. For 'full_box_visible'"full_box_visible""full_box_visible""full_box_visible""full_box_visible""full_box_visible" only boxes with more than one side visible are returned. If 'single_side_visible'"single_side_visible""single_side_visible""single_side_visible""single_side_visible""single_side_visible" is set, boxes with only one visible side are searched for. If further box sides are visible nonetheless, they are ignored. For 'all'"all""all""all""all""all" both types are returned.

Default value: 'all'"all""all""all""all""all"

Possible values: 'all'"all""all""all""all""all", 'single_side_visible'"single_side_visible""single_side_visible""single_side_visible""single_side_visible""single_side_visible", 'full_box_visible'"full_box_visible""full_box_visible""full_box_visible""full_box_visible""full_box_visible"

Troubleshooting

Visualizing extracted edges and sampled scene:

To debug the box detector, some of the internally used data can be visualized by obtaining it from the returned dictionary BoxInformationBoxInformationBoxInformationBoxInformationboxInformationbox_information, using get_dict_tupleget_dict_tupleGetDictTupleGetDictTupleGetDictTupleget_dict_tuple.

The sampled 3D scene can be extracted with the key sampled_scene. Finding smaller boxes requires a denser sampling and subsequently slows down the box detection.

The sampled 3D edges can be extracted with the key sampled_edges and sampled_edges_directions. Both 3D object models contain the same points, however, sampled_edges contains the viewing direction of the edge points as normal vectors, while sampled_edges_directions contains the edge directions of the edge points as normal vectors. Note that the edge directions should be perpendicular to the edges, pointing outwards of the boxes.

Improve performance:

If find_box_3dfind_box_3dFindBox3dFindBox3dFindBox3dfind_box_3d is taking too long, the following steps might help to increase its performance.

Execution Information

This operator supports cancelling timeouts and interrupts.

Parameters

ObjectModel3DSceneObjectModel3DSceneObjectModel3DSceneObjectModel3DSceneobjectModel3DSceneobject_model_3dscene (input_control)  object_model_3d HObjectModel3D, HTupleHHandleHTupleHtuple (handle) (IntPtr) (HHandle) (handle)

Handle of 3D object model where to search the box.

SideLen1SideLen1SideLen1SideLen1sideLen1side_len_1 (input_control)  real-array HTupleSequence[float]HTupleHtuple (real) (double) (double) (double)

Length of the first box side.

SideLen2SideLen2SideLen2SideLen2sideLen2side_len_2 (input_control)  real-array HTupleSequence[float]HTupleHtuple (real) (double) (double) (double)

Length of the second box side.

SideLen3SideLen3SideLen3SideLen3sideLen3side_len_3 (input_control)  real-array HTupleSequence[float]HTupleHtuple (real) (double) (double) (double)

Length of the third box side.

Default value: -1

MinScoreMinScoreMinScoreMinScoreminScoremin_score (input_control)  real HTupleUnion[float, int]HTupleHtuple (real / integer) (double / int / long) (double / Hlong) (double / Hlong)

Minimum score of the returned boxes.

Default value: 0.6

Restriction: 0 <= MinScore <= 1

GenParamGenParamGenParamGenParamgenParamgen_param (input_control)  dict HDict, HTupleHHandleHTupleHtuple (handle) (IntPtr) (HHandle) (handle)

Dictionary for generic parameters.

Default value: []

GrippingPoseGrippingPoseGrippingPoseGrippingPosegrippingPosegripping_pose (output_control)  pose(-array) HPose, HTupleSequence[Union[float, int]]HTupleHtuple (real / integer) (double / int / long) (double / Hlong) (double / Hlong)

Gripping poses of the detected boxes.

ScoreScoreScoreScorescorescore (output_control)  real-array HTupleSequence[float]HTupleHtuple (real) (double) (double) (double)

Scores of the detected boxes.

ObjectModel3DBoxObjectModel3DBoxObjectModel3DBoxObjectModel3DBoxobjectModel3DBoxobject_model_3dbox (output_control)  object_model_3d-array HObjectModel3D, HTupleSequence[HHandle]HTupleHtuple (handle) (IntPtr) (HHandle) (handle)

Detected boxes as triangulated 3D object models.

BoxInformationBoxInformationBoxInformationBoxInformationboxInformationbox_information (output_control)  dict HDict, HTupleHHandleHTupleHtuple (handle) (IntPtr) (HHandle) (handle)

Additional debug information as dictionary.

Result

If all parameters are valid and no error occurs, find_box_3dfind_box_3dFindBox3dFindBox3dFindBox3dfind_box_3d returns TRUE. If necessary, an exception is raised.

Possible Predecessors

read_object_model_3dread_object_model_3dReadObjectModel3dReadObjectModel3dReadObjectModel3dread_object_model_3d, xyz_to_object_model_3dxyz_to_object_model_3dXyzToObjectModel3dXyzToObjectModel3dXyzToObjectModel3dxyz_to_object_model_3d

Possible Successors

gen_box_object_model_3dgen_box_object_model_3dGenBoxObjectModel3dGenBoxObjectModel3dGenBoxObjectModel3dgen_box_object_model_3d, get_dict_tupleget_dict_tupleGetDictTupleGetDictTupleGetDictTupleget_dict_tuple

Alternatives

find_surface_modelfind_surface_modelFindSurfaceModelFindSurfaceModelFindSurfaceModelfind_surface_model

Module

3D Metrology