http://www.emgu.com
Show a widget in the window
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
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