Name
bottom_hatbottom_hatBottomHatbottom_hatBottomHatBottomHat — Ermitteln von Lücken zwischen Regionen.
bottom_hatbottom_hatBottomHatbottom_hatBottomHatBottomHat berechnet die Bottom-Hat-Operation, indem
zunächst eine Closing-Operation mit StructElementStructElementStructElementStructElementStructElementstructElement (siehe
closingclosingClosingclosingClosingClosing) durchgeführt wird. Von diesem
Zwischenergebnis wird die Originalregion abgezogen. Im Gegensatz
zu closingclosingClosingclosingClosingClosing, das aus Einzelregionen bei entsprechender
Voraussetzung mehrere Regionen zu einer größeren
zusammenschließt, bestimmt bottom_hatbottom_hatBottomHatbottom_hatBottomHatBottomHat die Region,
welche für diesen Zusammenschluss notwendig ist.
Die Position von StructElementStructElementStructElementStructElementStructElementstructElement ist ohne Bedeutung, da die
Closing-Operation translationsinvariant bzgl.
StructElementStructElementStructElementStructElementStructElementstructElement ist.
Das struktuirierende Element (StructElementStructElementStructElementStructElementStructElementstructElement) kann mit
Operatoren wie gen_circlegen_circleGenCirclegen_circleGenCircleGenCircle, gen_rectangle1gen_rectangle1GenRectangle1gen_rectangle1GenRectangle1GenRectangle1,
gen_rectangle2gen_rectangle2GenRectangle2gen_rectangle2GenRectangle2GenRectangle2, gen_ellipsegen_ellipseGenEllipsegen_ellipseGenEllipseGenEllipse,
draw_regiondraw_regionDrawRegiondraw_regionDrawRegionDrawRegion, gen_region_polygongen_region_polygonGenRegionPolygongen_region_polygonGenRegionPolygonGenRegionPolygon,
gen_region_pointsgen_region_pointsGenRegionPointsgen_region_pointsGenRegionPointsGenRegionPoints, etc. erzeugt werden.
- Multithreading-Typ: reentrant (läuft parallel zu nicht-exklusiven Operatoren).
- Multithreading-Bereich: global (kann von jedem Thread aufgerufen werden).
- Automatisch parallelisiert auf Tupelebene.
Regionen, die verarbeitet werden sollen.
Strukturierendes Element (lageinvariant).
Ergebnis des Bottom-Hat-Operators.
read_image (Image, 'brake_disk/brake_disk_bike_01')
threshold (Image, Regions, 128, 255)
gen_circle (Circle, 40, 40, 20)
bottom_hat (Regions, Circle, RegionBottomHat)
threshold(Image,&Regions,128.0,255.0);
gen_circle(&Circle,128.0,128.0,16.0);
bottom_hat(Regions,Circle,&RegionBottomHat);
set_color(WindowHandle,"red");
disp_region(Regions,WindowHandle);
set_color(WindowHandle,"green");
disp_region(RegionBottomHat,WindowHandle);
read_image (Image, 'brake_disk/brake_disk_bike_01')
threshold (Image, Regions, 128, 255)
gen_circle (Circle, 40, 40, 20)
bottom_hat (Regions, Circle, RegionBottomHat)
#include "HalconCpp.h"
main()
{
HByteImage Monkey("monkey");
HWindow w;
HRegion regs = (Monkey >= 128);
HRegion circ = HRegion::GenCircle (128, 128, 3);
HRegion rbht = regs.BottomHat (circ);
Monkey.Display (w); w.Click ();
w.SetColor ("red"); regs.Display (w); w.Click ();
w.SetColor ("green"); rbht.Display (w); w.Click ();
return(0);
}
read_image (Image, 'brake_disk/brake_disk_bike_01')
threshold (Image, Regions, 128, 255)
gen_circle (Circle, 40, 40, 20)
bottom_hat (Regions, Circle, RegionBottomHat)
read_image (Image, 'brake_disk/brake_disk_bike_01')
threshold (Image, Regions, 128, 255)
gen_circle (Circle, 40, 40, 20)
bottom_hat (Regions, Circle, RegionBottomHat)
Bei korrekter Parametrisierung liefert die Funktion
bottom_hatbottom_hatBottomHatbottom_hatBottomHatBottomHat den Wert 2 (H_MSG_TRUE). Das Funktionsverhalten für
die beiden Fälle leere und keine Eingaberegion lässt sich wie
folgt kontrollieren:
-
keine Region:
set_system('no_object_result',<RegionResult>)
-
leere Region:
set_system('empty_region_result',<RegionResult>)
Andernfalls wird eine Fehlerbehandlung durchgeführt.
thresholdthresholdThresholdthresholdThresholdThreshold,
regiongrowingregiongrowingRegiongrowingregiongrowingRegiongrowingRegiongrowing,
connectionconnectionConnectionconnectionConnectionConnection,
union1union1Union1union1Union1Union1,
watershedswatershedsWatershedswatershedsWatershedsWatersheds,
class_ndim_normclass_ndim_normClassNdimNormclass_ndim_normClassNdimNormClassNdimNorm,
gen_circlegen_circleGenCirclegen_circleGenCircleGenCircle,
gen_ellipsegen_ellipseGenEllipsegen_ellipseGenEllipseGenEllipse,
gen_rectangle1gen_rectangle1GenRectangle1gen_rectangle1GenRectangle1GenRectangle1,
gen_rectangle2gen_rectangle2GenRectangle2gen_rectangle2GenRectangle2GenRectangle2,
draw_regiondraw_regionDrawRegiondraw_regionDrawRegionDrawRegion,
gen_region_pointsgen_region_pointsGenRegionPointsgen_region_pointsGenRegionPointsGenRegionPoints,
gen_region_polygon_filledgen_region_polygon_filledGenRegionPolygonFilledgen_region_polygon_filledGenRegionPolygonFilledGenRegionPolygonFilled
reduce_domainreduce_domainReduceDomainreduce_domainReduceDomainReduceDomain,
select_shapeselect_shapeSelectShapeselect_shapeSelectShapeSelectShape,
area_centerarea_centerAreaCenterarea_centerAreaCenterAreaCenter,
connectionconnectionConnectionconnectionConnectionConnection
closingclosingClosingclosingClosingClosing,
differencedifferenceDifferencedifferenceDifferenceDifference
top_hattop_hatTopHattop_hatTopHatTopHat,
gray_bothatgray_bothatGrayBothatgray_bothatGrayBothatGrayBothat,
openingopeningOpeningopeningOpeningOpening
Foundation