HALCON Reference Manual 10.0.2
Name
partition_linesT_partition_linespartition_linesPartitionLinesPartitionLines — Partition lines according to various criteria.
partition_lines( : : RowBeginIn, ColBeginIn, RowEndIn, ColEndIn, Feature, Operation, Min, Max : RowBeginOut, ColBeginOut, RowEndOut, ColEndOut, FailRowBOut, FailColBOut, FailRowEOut, FailColEOut)
Herror T_partition_lines(const Htuple RowBeginIn, const Htuple ColBeginIn, const Htuple RowEndIn, const Htuple ColEndIn, const Htuple Feature, const Htuple Operation, const Htuple Min, const Htuple Max, Htuple* RowBeginOut, Htuple* ColBeginOut, Htuple* RowEndOut, Htuple* ColEndOut, Htuple* FailRowBOut, Htuple* FailColBOut, Htuple* FailRowEOut, Htuple* FailColEOut)
Herror partition_lines(const HTuple& RowBeginIn, const HTuple& ColBeginIn, const HTuple& RowEndIn, const HTuple& ColEndIn, const HTuple& Feature, const HTuple& Operation, const HTuple& Min, const HTuple& Max, HTuple* RowBeginOut, HTuple* ColBeginOut, HTuple* RowEndOut, HTuple* ColEndOut, HTuple* FailRowBOut, HTuple* FailColBOut, HTuple* FailRowEOut, HTuple* FailColEOut)
void HOperatorSetX.PartitionLines(
[in] VARIANT RowBeginIn, [in] VARIANT ColBeginIn, [in] VARIANT RowEndIn, [in] VARIANT ColEndIn, [in] VARIANT Feature, [in] VARIANT Operation, [in] VARIANT Min, [in] VARIANT Max, [out] VARIANT* RowBeginOut, [out] VARIANT* ColBeginOut, [out] VARIANT* RowEndOut, [out] VARIANT* ColEndOut, [out] VARIANT* FailRowBOut, [out] VARIANT* FailColBOut, [out] VARIANT* FailRowEOut, [out] VARIANT* FailColEOut)
VARIANT HMiscX.PartitionLines(
[in] VARIANT RowBeginIn, [in] VARIANT ColBeginIn, [in] VARIANT RowEndIn, [in] VARIANT ColEndIn, [in] VARIANT Feature, [in] BSTR Operation, [in] VARIANT Min, [in] VARIANT Max, [out] VARIANT* ColBeginOut, [out] VARIANT* RowEndOut, [out] VARIANT* ColEndOut, [out] VARIANT* FailRowBOut, [out] VARIANT* FailColBOut, [out] VARIANT* FailRowEOut, [out] VARIANT* FailColEOut)
static void HOperatorSet.PartitionLines(HTuple rowBeginIn, HTuple colBeginIn, HTuple rowEndIn, HTuple colEndIn, HTuple feature, HTuple operation, HTuple min, HTuple max, out HTuple rowBeginOut, out HTuple colBeginOut, out HTuple rowEndOut, out HTuple colEndOut, out HTuple failRowBOut, out HTuple failColBOut, out HTuple failRowEOut, out HTuple failColEOut)
static void HMisc.PartitionLines(HTuple rowBeginIn, HTuple colBeginIn, HTuple rowEndIn, HTuple colEndIn, HTuple feature, string operation, HTuple min, HTuple max, out HTuple rowBeginOut, out HTuple colBeginOut, out HTuple rowEndOut, out HTuple colEndOut, out HTuple failRowBOut, out HTuple failColBOut, out HTuple failRowEOut, out HTuple failColEOut)
static void HMisc.PartitionLines(HTuple rowBeginIn, HTuple colBeginIn, HTuple rowEndIn, HTuple colEndIn, string feature, string operation, string min, string max, out HTuple rowBeginOut, out HTuple colBeginOut, out HTuple rowEndOut, out HTuple colEndOut, out HTuple failRowBOut, out HTuple failColBOut, out HTuple failRowEOut, out HTuple failColEOut)
The operator partition_linespartition_linespartition_linesPartitionLinesPartitionLines divides lines into two sets
according to various criteria. For each input line the indicated
features (FeatureFeatureFeatureFeaturefeature) are calculated. If each
(OperationOperationOperationOperationoperation = 'and') or at least one
(OperationOperationOperationOperationoperation = 'or') of the calculated features is within
the given limits (MinMinMinMinmin,MaxMaxMaxMaxmax) the line is
transferred into the first set (parameters RowBeginOutRowBeginOutRowBeginOutRowBeginOutrowBeginOut to
ColEndOutColEndOutColEndOutColEndOutcolEndOut), otherwise into the second set (parameters
FailRowBOutFailRowBOutFailRowBOutFailRowBOutfailRowBOut to FailColEOutFailColEOutFailColEOutFailColEOutfailColEOut).
Condition: Min_i <= Feature_i(Line) <= Max_i
Possible values for FeatureFeatureFeatureFeaturefeature:
-
'length'
(Euclidean) length of the line
-
'row'
Line index of the center
-
'column'
Column index of the center
-
'phi'
Orientation of the line (-pi/2 < phi <= pi/2)
If only one feature is used the value of OperationOperationOperationOperationoperation is
meaningless. Several features are processed according to the
sequence in which they are passed.
- Multithreading type: reentrant (runs in parallel with non-exclusive operators).
- Multithreading scope: global (may be called from any thread).
- Processed without parallelization.
Row coordinates of the starting points of the
input lines.
Column coordinates of the starting points of the
input lines.
Row coordinates of the ending points of the
input lines.
Column coordinates of the ending points of the
input lines.
Features to be used for selection.
List of values: 'length'"length""length""length""length", 'row'"row""row""row""row", 'column'"column""column""column""column", 'phi'"phi""phi""phi""phi"
Desired combination of the features.
List of values: 'and'"and""and""and""and", 'or'"or""or""or""or"
MinMinMinMinmin (input_control) string(-array) → HTupleHTupleVARIANTHtuple (string / integer / real) (string / int / long / double) (char* / Hlong / double) (BSTR / Hlong / double) (char* / Hlong / double)
Lower limits of the features or 'min'.
Default value:
'min'
"min"
"min"
"min"
"min"
MaxMaxMaxMaxmax (input_control) string(-array) → HTupleHTupleVARIANTHtuple (string / integer / real) (string / int / long / double) (char* / Hlong / double) (BSTR / Hlong / double) (char* / Hlong / double)
Upper limits of the features or 'max'.
Default value:
'max'
"max"
"max"
"max"
"max"
Row coordinates of the starting points of the
lines fulfilling the conditions.
Column coordinates of the starting points of the
lines fulfilling the conditions.
Row coordinates of the ending points of the
lines fulfilling the conditions.
Column coordinates of the ending points of the
lines fulfilling the conditions.
Row coordinates of the starting points of the
lines not fulfilling the conditions.
Column coordinates of the starting points of the
lines not fulfilling the conditions.
Row coordinates of the ending points of the
lines not fulfilling the conditions.
Column coordinates of the ending points of the
lines not fulfilling the conditions.
The operator partition_linespartition_linespartition_linesPartitionLinesPartitionLines returns the value 2 (H_MSG_TRUE) if the
parameter values are correct. Otherwise an exception is raised.
sobel_ampsobel_ampsobel_ampSobelAmpSobelAmp,
edges_imageedges_imageedges_imageEdgesImageEdgesImage,
thresholdthresholdthresholdThresholdThreshold,
hysteresis_thresholdhysteresis_thresholdhysteresis_thresholdHysteresisThresholdHysteresisThreshold,
split_skeleton_regionsplit_skeleton_regionsplit_skeleton_regionSplitSkeletonRegionSplitSkeletonRegion,
split_skeleton_linessplit_skeleton_linessplit_skeleton_linesSplitSkeletonLinesSplitSkeletonLines
set_line_widthset_line_widthset_line_widthSetLineWidthSetLineWidth,
disp_linedisp_linedisp_lineDispLineDispLine
line_orientationline_orientationline_orientationLineOrientationLineOrientation,
line_positionline_positionline_positionLinePositionLinePosition,
select_linesselect_linesselect_linesSelectLinesSelectLines,
select_lines_longestselect_lines_longestselect_lines_longestSelectLinesLongestSelectLinesLongest
select_linesselect_linesselect_linesSelectLinesSelectLines,
select_lines_longestselect_lines_longestselect_lines_longestSelectLinesLongestSelectLinesLongest,
detect_edge_segmentsdetect_edge_segmentsdetect_edge_segmentsDetectEdgeSegmentsDetectEdgeSegments,
select_shapeselect_shapeselect_shapeSelectShapeSelectShape
Foundation
| HALCON Reference Manual 10.0.2 |
Copyright © 1996-2011 MVTec Software GmbH |