fix vtkActor to vtkLODActor, initial implementation LineWidget, showWidget

This commit is contained in:
ozantonkal
2013-07-03 20:53:03 +03:00
parent 54c7dfab83
commit c8d2b5ff44
10 changed files with 74 additions and 35 deletions

View File

@@ -245,6 +245,9 @@ public:
void setPosition (int x, int y);
void setSize (int xw, int yw);
void showWidget(const String &id, const Widget &widget);
void all_data();
private:
vtkSmartPointer<vtkRenderWindowInteractor> interactor_;
@@ -311,6 +314,9 @@ private:
/** \brief Internal list with actor pointers and name IDs for shapes. */
cv::Ptr<ShapeActorMap> shape_actor_map_;
/** \brief Internal list with actor pointers and name IDs for all widget actors */
cv::Ptr<WidgetActorMap> widget_actor_map_;
/** \brief Boolean that holds whether or not the camera parameters were manually initialized*/
bool camera_set_;