Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
29f61bfc
Commit
29f61bfc
authored
Jan 04, 2019
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1955 from paroj:ovisup
parents
d34502df
74f26045
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
CMakeLists.txt
modules/ovis/CMakeLists.txt
+4
-0
ovis.cpp
modules/ovis/src/ovis.cpp
+1
-1
No files found.
modules/ovis/CMakeLists.txt
View file @
29f61bfc
...
...
@@ -16,6 +16,10 @@ elseif(OGRE_VERSION VERSION_GREATER 1.10) # we need C++11 for OGRE 1.11
endif
()
endif
()
if
(
OGRE_VERSION VERSION_LESS 1.10.10
)
message
(
WARNING
"opencv_ovis: Ogre >= 1.10.10 recommended for interactive windows"
)
endif
()
include_directories
(
${
OGRE_INCLUDE_DIRS
}
)
link_directories
(
${
OGRE_LIBRARY_DIRS
}
)
...
...
modules/ovis/src/ovis.cpp
View file @
29f61bfc
...
...
@@ -181,7 +181,7 @@ struct Application : public OgreBites::ApplicationContext, public OgreBites::Inp
int
flags
;
Application
(
const
Ogre
::
String
&
_title
,
const
Size
&
sz
,
int
_flags
)
:
OgreBites
::
ApplicationContext
(
"ovis"
,
false
),
sceneMgr
(
NULL
),
title
(
_title
),
w
(
sz
.
width
),
:
OgreBites
::
ApplicationContext
(
"ovis"
),
sceneMgr
(
NULL
),
title
(
_title
),
w
(
sz
.
width
),
h
(
sz
.
height
),
key_pressed
(
-
1
),
flags
(
_flags
)
{
if
(
utils
::
getConfigurationParameterBool
(
"OPENCV_OVIS_VERBOSE_LOG"
,
false
))
...
...
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