disp_image
— Displays gray value images.
disp_image(Image : : WindowHandle : )
disp_image
displays the gray values of an image in the
output window. The gray value pixels of the definition domain
(set_comprise(::WindowHandle,'object':)
) or of the whole image
(set_comprise(::WindowHandle,'image':)
) are used. Restriction to the
definition domain is the default.
For the display of gray value images the number of gray values is usually
reduced. This is due to the fact that colors have to be reserved for the
display of graphics (e.g., set_color
) and the window manager.
Also depending on the number of bit planes on the used output device often
less than 256 colors (eight bit planes) are available. The number of
”colors” actually reserved for the display of gray values can be queried
by get_system
. Before opening the first window this value can be
modified by set_system
. For instance for 8 bit planes 200 real
gray values are the default.
The reduction of the number of gray values does not pose problems as long
as only gray value information is displayed, humans cannot distinguish
256 different shades of gray. If certain gray values are used for the
representation of region information (which is not the style commonly used
in HALCON), confusions might be the result, since different
numerical values are displayed on the screen with the same gray
value. The operator label_to_region
should be used on
these images in order to transform the label data into HALCON objects.
If images of type int2
, int4
, int8
, real
or complex
are displayed, the smallest and largest gray value is
computed. For images of the type complex
this computation is based
on the corresponding power spectrum.
Afterwards the pixel data is rescaled according to the
number of available gray values (depending on the output device, e.g., 200).
It is possible that some pixels have a very different value than
the other pixels. This might lead to the display of an (almost)
completely white or black image.
In order to decide if the current image is a binary image
min_max_gray
can be used. If necessary the image can be
transformed or converted by scale_image
and
convert_image_type
before it is displayed.
If a wrong output mode was set by set_paint
, the error will be
reported when disp_image
is used.
Image
(input_object) singlechannelimage →
object (byte / direction / cyclic / int1 / int2 / uint2 / int4 / int8 / real / complex / vector_field)
Gray value image to display.
WindowHandle
(input_control) window →
(handle)
Window handle.
* Output of a gray image: read_image(Image,'monkey') disp_image(Image,WindowHandle)
If the used image contains valid values and a correct
output mode is set, disp_image
returns 2 (
H_MSG_TRUE)
. Otherwise an
exception is raised.
open_window
,
set_rgb
,
set_lut
,
set_hsi
,
scale_image
,
convert_image_type
,
min_max_gray
open_window
,
reset_obj_db
,
set_paint
,
set_lut
,
paint_gray
,
scale_image
,
convert_image_type
,
dump_window
Foundation