PDL-OpenCV
view release on metacpan or search on metacpan
GENERATED/PDL/OpenCV/Highgui.pm view on Meta::CPAN
#line 1248 "Highgui.pm"
#line 274 "../genpp.pl"
=head2 displayOverlay
=for ref
Displays a text on a window image as an overlay for a specified duration.
=for example
displayOverlay($winname,$text); # with defaults
displayOverlay($winname,$text,$delayms);
The function displayOverlay displays useful information/tips on top of the window for a certain
amount of time *delayms*. The function does not modify the image, displayed in the window, that is,
after the specified delay the original content of the window is restored.
GENERATED/PDL/OpenCV/Highgui.pm view on Meta::CPAN
=item winname
Name of the window.
=item text
Overlay text to write on a window image.
=item delayms
The period (in milliseconds), during which the overlay text is displayed. If this
function is called before the previous overlay text timed out, the timer is restarted and the text
is updated. If this value is zero, the text never disappears.
=back
=cut
#line 1291 "Highgui.pm"
Highgui/funclist.pl view on Meta::CPAN
@param text Text to write on an image.
@param org Point(x,y) where the text should start on an image.
@param nameFont Name of the font. The name should match the name of a system font (such as
*Times*). If the font is not found, a default one is used.
@param pointSize Size of the font. If not specified, equal zero or negative, the point size of the
font is set to a system-dependent default value. Generally, this is 12 points.
@param color Color of the font in BGRA where A = 255 is fully transparent.
@param weight Font weight. Available operation flags are : cv::QtFontWeights You can also specify a positive integer for better control.
@param style Font style. Available operation flags are : cv::QtFontStyles
@param spacing Spacing between characters. It can be negative or positive.',0,'void',['Mat','img','',['/C','/Ref']],['String','text','',['/C','/Ref']],['Point','org','',[]],['String','nameFont','',['/C','/Ref']],['int','pointSize','-1',[]],['Scalar',...
['','displayOverlay','@brief Displays a text on a window image as an overlay for a specified duration.
The function displayOverlay displays useful information/tips on top of the window for a certain
amount of time *delayms*. The function does not modify the image, displayed in the window, that is,
after the specified delay the original content of the window is restored.
@param winname Name of the window.
@param text Overlay text to write on a window image.
@param delayms The period (in milliseconds), during which the overlay text is displayed. If this
function is called before the previous overlay text timed out, the timer is restarted and the text
is updated. If this value is zero, the text never disappears.',0,'void',['String','winname','',['/C','/Ref']],['String','text','',['/C','/Ref']],['int','delayms','0',[]]],
['','displayStatusBar','@brief Displays a text on the window statusbar during the specified period of time.
The function displayStatusBar displays useful information/tips on top of the window for a certain
amount of time *delayms* . This information is displayed on the window statusbar (the window must be
created with the CV_GUI_EXPANDED flags).
@param winname Name of the window.
@param text Text to write on the window statusbar.
@param delayms Duration (in milliseconds) to display the text. If this function is called before
( run in 1.186 second using v1.01-cache-2.11-cpan-49f99fa48dc )