Lines Matching refs:viz

48 cv::viz::Viz3d::Viz3d(const String& window_name) : impl_(0) { create(window_name); }  in Viz3d()
50 cv::viz::Viz3d::Viz3d(const Viz3d& other) : impl_(other.impl_) in Viz3d()
56 cv::viz::Viz3d& cv::viz::Viz3d::operator=(const Viz3d& other) in operator =()
68 cv::viz::Viz3d::~Viz3d() { release(); } in ~Viz3d()
70 void cv::viz::Viz3d::create(const String &window_name) in create()
87 void cv::viz::Viz3d::release() in release()
101 void cv::viz::Viz3d::spin() { impl_->spin(); } in spin()
102 void cv::viz::Viz3d::spinOnce(int time, bool force_redraw) { impl_->spinOnce(time, force_redraw); } in spinOnce()
103 bool cv::viz::Viz3d::wasStopped() const { return impl_->wasStopped(); } in wasStopped()
104 void cv::viz::Viz3d::close() { impl_->close(); } in close()
106 void cv::viz::Viz3d::registerKeyboardCallback(KeyboardCallback callback, void* cookie) in registerKeyboardCallback()
109 void cv::viz::Viz3d::registerMouseCallback(MouseCallback callback, void* cookie) in registerMouseCallback()
112 void cv::viz::Viz3d::showWidget(const String &id, const Widget &widget, const Affine3d &pose) { imp… in showWidget()
113 void cv::viz::Viz3d::removeWidget(const String &id) { impl_->removeWidget(id); } in removeWidget()
114 cv::viz::Widget cv::viz::Viz3d::getWidget(const String &id) const { return impl_->getWidget(id); } in getWidget()
115 void cv::viz::Viz3d::removeAllWidgets() { impl_->removeAllWidgets(); } in removeAllWidgets()
117 void cv::viz::Viz3d::showImage(InputArray image, const Size& window_size) { impl_->showImage(image,… in showImage()
119 void cv::viz::Viz3d::setWidgetPose(const String &id, const Affine3d &pose) { impl_->setWidgetPose(i… in setWidgetPose()
120 void cv::viz::Viz3d::updateWidgetPose(const String &id, const Affine3d &pose) { impl_->updateWidget… in updateWidgetPose()
121 cv::Affine3d cv::viz::Viz3d::getWidgetPose(const String &id) const { return impl_->getWidgetPose(id… in getWidgetPose()
123 void cv::viz::Viz3d::setCamera(const Camera &camera) { impl_->setCamera(camera); } in setCamera()
124 cv::viz::Camera cv::viz::Viz3d::getCamera() const { return impl_->getCamera(); } in getCamera()
125 void cv::viz::Viz3d::setViewerPose(const Affine3d &pose) { impl_->setViewerPose(pose); } in setViewerPose()
126 cv::Affine3d cv::viz::Viz3d::getViewerPose() { return impl_->getViewerPose(); } in getViewerPose()
128 void cv::viz::Viz3d::resetCameraViewpoint(const String &id) { impl_->resetCameraViewpoint(id); } in resetCameraViewpoint()
129 void cv::viz::Viz3d::resetCamera() { impl_->resetCamera(); } in resetCamera()
131 void cv::viz::Viz3d::convertToWindowCoordinates(const Point3d &pt, Point3d &window_coord) { impl_->… in convertToWindowCoordinates()
132 void cv::viz::Viz3d::converTo3DRay(const Point3d &window_coord, Point3d &origin, Vec3d &direction) … in converTo3DRay()
134 cv::Size cv::viz::Viz3d::getWindowSize() const { return impl_->getWindowSize(); } in getWindowSize()
135 void cv::viz::Viz3d::setWindowSize(const Size &window_size) { impl_->setWindowSize(window_size); } in setWindowSize()
136 cv::String cv::viz::Viz3d::getWindowName() const { return impl_->getWindowName(); } in getWindowName()
137 void cv::viz::Viz3d::saveScreenshot(const String &file) { impl_->saveScreenshot(file); } in saveScreenshot()
138 void cv::viz::Viz3d::setWindowPosition(const Point& window_position) { impl_->setWindowPosition(win… in setWindowPosition()
139 void cv::viz::Viz3d::setFullScreen(bool mode) { impl_->setFullScreen(mode); } in setFullScreen()
140 void cv::viz::Viz3d::setBackgroundColor(const Color& color, const Color& color2) { impl_->setBackgr… in setBackgroundColor()
142 void cv::viz::Viz3d::setBackgroundTexture(InputArray image) { impl_->setBackgroundTexture(image); } in setBackgroundTexture()
143 void cv::viz::Viz3d::setBackgroundMeshLab() {impl_->setBackgroundMeshLab(); } in setBackgroundMeshLab()
145 void cv::viz::Viz3d::setRenderingProperty(const String &id, int property, double value) { getWidget… in setRenderingProperty()
146 double cv::viz::Viz3d::getRenderingProperty(const String &id, int property) { return getWidget(id).… in getRenderingProperty()
148 void cv::viz::Viz3d::setRepresentation(int representation) { impl_->setRepresentation(representatio… in setRepresentation()
150 void cv::viz::Viz3d::setGlobalWarnings(bool enabled) { vtkObject::SetGlobalWarningDisplay(enabled ?… in setGlobalWarnings()