http://www.emgu.com
Show a widget in the window
Namespace:
Emgu.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
Syntaxpublic void ShowWidget(
string id,
IWidget widget,
Affine3d pose = null
)
Public Sub ShowWidget (
id As String,
widget As IWidget,
Optional pose As Affine3d = Nothing
)
public:
void ShowWidget(
String^ id,
IWidget^ widget,
Affine3d^ pose = nullptr
)
member ShowWidget :
id : string *
widget : IWidget *
?pose : Affine3d
(* Defaults:
let _pose = defaultArg pose null
*)
-> unit
Parameters
- id
- Type: SystemString
A unique id for the widget. - widget
- Type: Emgu.CVIWidget
The widget to be displayed in the window. - pose (Optional)
- Type: Emgu.CVAffine3d
Pose of the widget.
See Also