set_comprise
— Define the image matrix output clipping.
set_comprise
is obsolete and is only provided for
reasons of backward compatibility.
set_comprise( : : WindowHandle, Mode : )
set_comprise
defines the image matrix output
clipping. If Mode
is set to 'object', only gray values
belonging to the output object are displayed. If set to 'image', the
whole image matrix is displayed. Default is 'object'.
If Mode
was set to 'image', undefined gray values may be
displayed. Depending on the context they are black or can have
random content. See the examples.
WindowHandle
(input_control) window →
(handle)
Window handle.
Mode
(input_control) string →
(string)
Clipping mode for gray value output.
Default value: 'object'
List of values: 'image' , 'object'
read_image(Image,'fabrik') gen_circle (Circle, 200, 200, 100.5) reduce_domain (Image, Circle, ImageReduced) set_system('init_new_image','false') sobel_amp(ImageReduced,SobelReduced,'sum_abs',3) dev_display (SobelReduced) get_comprise(WindowHandle,Mode) set_comprise(WindowHandle,'image') stop () dev_display (SobelReduced)
set_comprise
returns TRUE if Mode
is correct and the window is valid. Otherwise an exception is
raised.
get_comprise
,
disp_image
,
disp_color
Foundation