OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Viz3d
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/viz/include/opencv2/viz/
viz3d.hpp
65
/** @brief The
Viz3d
class represents a 3D visualizer window. This class is implicitly shared. :
67
class CV_EXPORTS
Viz3d
78
Viz3d
(const String& window_name = String());
79
Viz3d
(const
Viz3d
&);
80
Viz3d
& operator=(const
Viz3d
&);
81
~
Viz3d
();
112
@param window_size Size of
Viz3d
window. Default value means no change.
/external/opencv3/modules/viz/src/
viz3d.cpp
48
cv::viz::
Viz3d
::
Viz3d
(const String& window_name) : impl_(0) { create(window_name); }
50
cv::viz::
Viz3d
::
Viz3d
(const
Viz3d
& other) : impl_(other.impl_)
56
cv::viz::
Viz3d
& cv::viz::
Viz3d
::operator=(const
Viz3d
& other)
68
cv::viz::
Viz3d
::~
Viz3d
() { release();
[
all
...]
Completed in 61 milliseconds