Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
9d4fe698
Commit
9d4fe698
authored
Sep 01, 2013
by
Ozan Tonkal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove setWindowName method to avoid complications
parent
21be9796
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
9 deletions
+0
-9
viz3d.hpp
modules/viz/include/opencv2/viz/viz3d.hpp
+0
-1
viz3d.cpp
modules/viz/src/viz3d.cpp
+0
-1
viz3d_impl.cpp
modules/viz/src/viz3d_impl.cpp
+0
-6
viz3d_impl.hpp
modules/viz/src/viz3d_impl.hpp
+0
-1
No files found.
modules/viz/include/opencv2/viz/viz3d.hpp
View file @
9d4fe698
...
...
@@ -50,7 +50,6 @@ namespace cv
void
saveScreenshot
(
const
String
&
file
);
void
setWindowPosition
(
int
x
,
int
y
);
void
setFullScreen
(
bool
mode
);
void
setWindowName
(
const
String
&
name
);
void
setBackgroundColor
(
const
Color
&
color
=
Color
::
black
());
void
spin
();
...
...
modules/viz/src/viz3d.cpp
View file @
9d4fe698
...
...
@@ -79,7 +79,6 @@ cv::String cv::viz::Viz3d::getWindowName() const { return impl_->getWindowName()
void
cv
::
viz
::
Viz3d
::
saveScreenshot
(
const
String
&
file
)
{
impl_
->
saveScreenshot
(
file
);
}
void
cv
::
viz
::
Viz3d
::
setWindowPosition
(
int
x
,
int
y
)
{
impl_
->
setWindowPosition
(
x
,
y
);
}
void
cv
::
viz
::
Viz3d
::
setFullScreen
(
bool
mode
)
{
impl_
->
setFullScreen
(
mode
);
}
void
cv
::
viz
::
Viz3d
::
setWindowName
(
const
String
&
name
)
{
impl_
->
setWindowName
(
name
);
}
void
cv
::
viz
::
Viz3d
::
setBackgroundColor
(
const
Color
&
color
)
{
impl_
->
setBackgroundColor
(
color
);
}
void
cv
::
viz
::
Viz3d
::
setRenderingProperty
(
int
property
,
double
value
,
const
String
&
id
)
{
getWidget
(
id
).
setRenderingProperty
(
property
,
value
);
}
...
...
modules/viz/src/viz3d_impl.cpp
View file @
9d4fe698
...
...
@@ -542,12 +542,6 @@ void cv::viz::Viz3d::VizImpl::setFullScreen (bool mode)
}
//////////////////////////////////////////////////////////////////////////////////////////////
void
cv
::
viz
::
Viz3d
::
VizImpl
::
setWindowName
(
const
std
::
string
&
name
)
{
if
(
window_
)
window_
->
SetWindowName
(
name
.
c_str
());
}
cv
::
String
cv
::
viz
::
Viz3d
::
VizImpl
::
getWindowName
()
const
{
return
(
window_
?
window_
->
GetWindowName
()
:
""
);
...
...
modules/viz/src/viz3d_impl.hpp
View file @
9d4fe698
...
...
@@ -69,7 +69,6 @@ public:
Size
getWindowSize
()
const
;
void
setWindowSize
(
int
xw
,
int
yw
);
void
setFullScreen
(
bool
mode
);
void
setWindowName
(
const
String
&
name
);
String
getWindowName
()
const
;
void
setBackgroundColor
(
const
Color
&
color
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment