Exemplo n.º 1
0
 /// <summary>
 /// Sets pose of a widget in the window.
 /// </summary>
 /// <param name="id">The id of the widget whose pose will be set.</param>
 /// <param name="pose">The new pose of the widget.</param>
 public void SetWidgetPose(String id, Affine3d pose)
 {
     using (CvString cvsId = new CvString(id))
         CvInvoke.cveViz3dSetWidgetPose(_ptr, cvsId, pose);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Show a widget in the window
 /// </summary>
 /// <param name="id">A unique id for the widget.</param>
 /// <param name="widget">The widget to be displayed in the window.</param>
 /// <param name="pose">Pose of the widget.</param>
 public void ShowWidget(String id, IWidget widget, Affine3d pose = null)
 {
     using (CvString cvsId = new CvString(id))
         CvInvoke.cveViz3dShowWidget(_ptr, cvsId, widget.GetWidget, pose);
 }
Exemplo n.º 3
0
 public DebuggerProxy(Affine3d v)
 {
     _v = v;
 }
Exemplo n.º 4
0
 /// <summary>
 /// Sets pose of a widget in the window.
 /// </summary>
 /// <param name="id">The id of the widget whose pose will be set.</param>
 /// <param name="pose">The new pose of the widget.</param>
 public void SetWidgetPose(String id, Affine3d pose)
 {
    using (CvString cvsId = new CvString(id))
       CvInvoke.cveViz3dSetWidgetPose(_ptr, cvsId, pose);
 }
Exemplo n.º 5
0
 /// <summary>
 /// Show a widget in the window
 /// </summary>
 /// <param name="id">A unique id for the widget.</param>
 /// <param name="widget">The widget to be displayed in the window.</param>
 /// <param name="pose">Pose of the widget.</param>
 public void ShowWidget(String id, IWidget widget, Affine3d pose = null)
 {
    using (CvString cvsId = new CvString(id))
       CvInvoke.cveViz3dShowWidget(_ptr, cvsId, widget.GetWidget, pose);
 }
Exemplo n.º 6
0
 public DebuggerProxy(Affine3d v)
 {
    _v = v;
 }