dual_rank dual_rank DualRank DualRank dual_rank (Operator)
Name
dual_rank dual_rank DualRank DualRank dual_rank
— Opening, Median and Closing with circle or rectangle mask.
Signature
Herror dual_rank (const Hobject Image , Hobject* ImageRank , const char* MaskType , const Hlong Radius , const Hlong ModePercent , const char* Margin )
Herror T_dual_rank (const Hobject Image , Hobject* ImageRank , const Htuple MaskType , const Htuple Radius , const Htuple ModePercent , const Htuple Margin )
void DualRank (const HObject& Image , HObject* ImageRank , const HTuple& MaskType , const HTuple& Radius , const HTuple& ModePercent , const HTuple& Margin )
HImage HImage ::DualRank (const HString& MaskType , Hlong Radius , Hlong ModePercent , const HTuple& Margin ) const
HImage HImage ::DualRank (const HString& MaskType , Hlong Radius , Hlong ModePercent , const HString& Margin ) const
HImage HImage ::DualRank (const char* MaskType , Hlong Radius , Hlong ModePercent , const char* Margin ) const
HImage HImage ::DualRank (const wchar_t* MaskType , Hlong Radius , Hlong ModePercent , const wchar_t* Margin ) const
(Windows only)
static void HOperatorSet .DualRank (HObject image , out HObject imageRank , HTuple maskType , HTuple radius , HTuple modePercent , HTuple margin )
HImage HImage .DualRank (string maskType , int radius , int modePercent , HTuple margin )
HImage HImage .DualRank (string maskType , int radius , int modePercent , string margin )
Description
The operator dual_rank dual_rank DualRank DualRank DualRank dual_rank
carries out a non-linear
transformation of the gray values of all input images
(Image Image Image Image image image
). Circles or squares can be used as structuring
elements. The operator dual_rank dual_rank DualRank DualRank DualRank dual_rank
effects two
consecutive calls of rank_image rank_image RankImage RankImage RankImage rank_image
. At the first call the
range gray value is calculated with the indicated range
(ModePercent ModePercent ModePercent ModePercent modePercent mode_percent
). The result of this calculation is the
input of a further call of rank_image rank_image RankImage RankImage RankImage rank_image
, this time using the
range value 100-ModePercent ModePercent ModePercent ModePercent modePercent mode_percent
.
When filtering different parameters for border treatment
(Margin Margin Margin Margin margin margin
) can be chosen:
gray value Pixels outside of the image edges
are assumed to be constant (with the
indicated gray value).
'continued' Continuation of edge pixels.
'cyclic' Cyclic continuation of image edges.
'mirrored' Reflection of pixels at the image edges.
A range filtering is calculated according to the following scheme:
The indicated mask is put over the image to be filtered in such a
way that the center of the mask touches all pixels once. For each
of these pixels all neighboring pixels covered by the mask are
sorted in an ascending sequence corresponding to their gray values.
Each sorted sequence of gray values contains the same number of gray
values like the mask has image points. The n-th highest element, (=
ModePercent ModePercent ModePercent ModePercent modePercent mode_percent
, rank values between 0...100 in
percent) is selected and set as result gray value in the
corresponding result image.
If ModePercent ModePercent ModePercent ModePercent modePercent mode_percent
is 0, then the operator equals to the
gray value opening (gray_opening gray_opening GrayOpening GrayOpening GrayOpening gray_opening
). If
ModePercent ModePercent ModePercent ModePercent modePercent mode_percent
is 50, the operator results in the median
filter, which is applied twice (median_image median_image MedianImage MedianImage MedianImage median_image
). The
ModePercent ModePercent ModePercent ModePercent modePercent mode_percent
100 in dual_rank dual_rank DualRank DualRank DualRank dual_rank
means that it
calculates the gray value closing (gray_closing gray_closing GrayClosing GrayClosing GrayClosing gray_closing
).
Choosing parameter values inside this range results in a smooth
transformation of these operators.
For an explanation of the concept of smoothing filters see the introduction
of chapter Filters / Smoothing .
Attention
Note that filter operators may return unexpected results if
an image with a reduced domain is used as input. Please refer to the
chapter Filters .
Execution Information
Multithreading type: reentrant (runs in parallel with non-exclusive operators).
Multithreading scope: global (may be called from any thread).
Automatically parallelized on tuple level.
Automatically parallelized on channel level.
Automatically parallelized on domain level.
Parameters
Image Image Image Image image image
(input_object) (multichannel-)image(-array) →
object HImage HObject HImage Hobject (byte / int2 / uint2 / int4 / real)
Image to be filtered.
ImageRank ImageRank ImageRank ImageRank imageRank image_rank
(output_object) multichannel-image(-array) →
object HImage HObject HImage Hobject * (byte / int2 / uint2 / int4 / real)
Filtered Image.
MaskType MaskType MaskType MaskType maskType mask_type
(input_control) string →
HTuple str HTuple Htuple (string) (string ) (HString ) (char* )
Shape of the mask.
Default value:
'circle'
"circle"
"circle"
"circle"
"circle"
"circle"
List of values: 'circle' "circle" "circle" "circle" "circle" "circle" , 'square' "square" "square" "square" "square" "square"
Radius Radius Radius Radius radius radius
(input_control) integer →
HTuple int HTuple Htuple (integer) (int / long) (Hlong ) (Hlong )
Radius of the filter mask.
Default value: 1
Suggested values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 11, 15, 19, 25, 31, 39, 47, 59
Typical range of values: 1
≤
Radius
Radius
Radius
Radius
radius
radius
≤
101
Minimum increment: 1
Recommended increment: 2
ModePercent ModePercent ModePercent ModePercent modePercent mode_percent
(input_control) integer →
HTuple int HTuple Htuple (integer) (int / long) (Hlong ) (Hlong )
Filter Mode: 0 corresponds to a gray value
opening , 50 corresponds to a median and 100 to
a gray values closing.
Default value: 10
Suggested values: 0, 2, 5, 10, 15, 20, 40, 50, 60, 80, 85, 90, 95, 98, 100
Typical range of values: 0
≤
ModePercent
ModePercent
ModePercent
ModePercent
modePercent
mode_percent
≤
100
Minimum increment: 1
Recommended increment: 2
Margin Margin Margin Margin margin margin
(input_control) string →
HTuple Union[int, float, str] HTuple Htuple (string / integer / real) (string / int / long / double) (HString / Hlong / double) (char* / Hlong / double)
Border treatment.
Default value:
'mirrored'
"mirrored"
"mirrored"
"mirrored"
"mirrored"
"mirrored"
Suggested values: 'mirrored' "mirrored" "mirrored" "mirrored" "mirrored" "mirrored" , 'cyclic' "cyclic" "cyclic" "cyclic" "cyclic" "cyclic" , 'continued' "continued" "continued" "continued" "continued" "continued" , 0, 30, 60, 90, 120, 150, 180, 210, 240, 255
Example (HDevelop)
read_image(Image,'fabrik')
dual_rank(Image,ImageOpening,'circle',10,10,'mirrored')
dev_display(ImageOpening)
Example (C)
read_image(&Image,"fabrik");
dual_rank(Image,&ImageOpening,"circle",10,10,"mirrored");
disp_image(ImageOpening,WindowHandle);
Example (HDevelop)
read_image(Image,'fabrik')
dual_rank(Image,ImageOpening,'circle',10,10,'mirrored')
dev_display(ImageOpening)
Example (HDevelop)
read_image(Image,'fabrik')
dual_rank(Image,ImageOpening,'circle',10,10,'mirrored')
dev_display(ImageOpening)
Example (HDevelop)
read_image(Image,'fabrik')
dual_rank(Image,ImageOpening,'circle',10,10,'mirrored')
dev_display(ImageOpening)
Complexity
For each pixel:
with F =
area of the structuring element.
Result
If the parameter values are correct the operator
dual_rank dual_rank DualRank DualRank DualRank dual_rank
returns the value 2 (H_MSG_TRUE ). The behavior in case
of empty input (no input images available) is set via the operator
set_system('no_object_result',<Result>) set_system("no_object_result",<Result>) SetSystem("no_object_result",<Result>) SetSystem("no_object_result",<Result>) SetSystem("no_object_result",<Result>) set_system("no_object_result",<Result>)
.
If necessary an exception is raised.
Possible Predecessors
read_image read_image ReadImage ReadImage ReadImage read_image
Possible Successors
threshold threshold Threshold Threshold Threshold threshold
,
dyn_threshold dyn_threshold DynThreshold DynThreshold DynThreshold dyn_threshold
,
sub_image sub_image SubImage SubImage SubImage sub_image
,
regiongrowing regiongrowing Regiongrowing Regiongrowing Regiongrowing regiongrowing
Alternatives
rank_image rank_image RankImage RankImage RankImage rank_image
,
gray_closing gray_closing GrayClosing GrayClosing GrayClosing gray_closing
,
gray_opening gray_opening GrayOpening GrayOpening GrayOpening gray_opening
,
median_image median_image MedianImage MedianImage MedianImage median_image
See also
gen_circle gen_circle GenCircle GenCircle GenCircle gen_circle
,
gen_rectangle1 gen_rectangle1 GenRectangle1 GenRectangle1 GenRectangle1 gen_rectangle1
,
gray_erosion_rect gray_erosion_rect GrayErosionRect GrayErosionRect GrayErosionRect gray_erosion_rect
,
gray_dilation_rect gray_dilation_rect GrayDilationRect GrayDilationRect GrayDilationRect gray_dilation_rect
,
sigma_image sigma_image SigmaImage SigmaImage SigmaImage sigma_image
References
W. Eckstein, O. Munkelt
“Extracting Objects from Digital Terrain Model”
Remote Sensing and Reconstruction for Threedimensional Objects and Scenes,
SPIE Symposium on Optical Science, Engeneering, and Instrumentation,
July 1995, San Diego
Module
Foundation