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
306a11a7
Commit
306a11a7
authored
May 17, 2011
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed a few warnings from VS2010 express
parent
013b7fdc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
CMakeLists.txt
CMakeLists.txt
+5
-2
descriptor_extractor_matcher.cpp
samples/cpp/descriptor_extractor_matcher.cpp
+1
-2
No files found.
CMakeLists.txt
View file @
306a11a7
...
...
@@ -1274,11 +1274,14 @@ endif()
#-----------------------------------
if
(
${
CMAKE_VERSION
}
VERSION_GREATER
"2.8.0"
)
set_property
(
GLOBAL PROPERTY USE_FOLDERS ON
)
set_property
(
GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER
"CMakeTargets"
)
set
(
ENABLE_SOLUTION_FOLDERS OFF CACHE BOOL
"Solution folder in Visual Studio or in other IDEs"
)
endif
()
if
(
ENABLE_SOLUTION_FOLDERS
)
set_property
(
GLOBAL PROPERTY USE_FOLDERS ON
)
set_property
(
GLOBAL PROPERTY PREDEFINED_TARGETS_FOLDER
"CMakeTargets"
)
endif
()
#-----------------------------------
# Subdirectories:
#-----------------------------------
...
...
samples/cpp/descriptor_extractor_matcher.cpp
View file @
306a11a7
...
...
@@ -267,7 +267,7 @@ int main(int argc, char** argv)
if
(
c
==
'\x1b'
)
// esc
{
cout
<<
"Exiting ..."
<<
endl
;
return
0
;
break
;
}
else
if
(
isWarpPerspective
)
{
...
...
@@ -276,6 +276,5 @@ int main(int argc, char** argv)
ransacReprojThreshold
,
rng
);
}
}
waitKey
(
0
);
return
0
;
}
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