Skip to content

Commit 0374bd9

Browse files
committed
Initial commit
0 parents  commit 0374bd9

File tree

4 files changed

+1003
-0
lines changed

4 files changed

+1003
-0
lines changed

CMakeLists.txt

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
project(ETH3DTwoViewEvaluation)
2+
cmake_minimum_required(VERSION 2.8)
3+
4+
set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake)
5+
6+
# External dependency: boost filesystem
7+
find_package(Boost COMPONENTS filesystem system REQUIRED)
8+
include_directories(${Boost_INCLUDE_DIRS})
9+
link_directories(${Boost_LIBRARY_DIRS})
10+
11+
# External dependency: libPNG.
12+
find_package(PNG REQUIRED)
13+
include_directories(${PNG_INCLUDE_DIR})
14+
15+
# Settings.
16+
if(NOT CMAKE_BUILD_TYPE)
17+
message(STATUS "Build type not specified, using RelWithDebInfo")
18+
set(CMAKE_BUILD_TYPE RelWithDebInfo)
19+
endif()
20+
21+
if(NOT "${CMAKE_CXX_COMPILER_ID}" STREQUAL "MSVC")
22+
add_definitions("-O2 -msse2 -msse3 -std=c++11")
23+
endif()
24+
25+
include_directories(
26+
./src
27+
)
28+
29+
# Evaluation executable.
30+
add_executable(ETH3DTwoViewEvaluation
31+
src/main.cc
32+
)
33+
target_link_libraries(ETH3DTwoViewEvaluation
34+
${PNG_LIBRARY}
35+
${Boost_LIBRARIES}
36+
)

LICENSE.txt

+184
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
This program is released under the BSD license:
2+
3+
Copyright 2017 Silvano Galliani, Thomas Schöps
4+
5+
Redistribution and use in source and binary forms, with or without
6+
modification, are permitted provided that the following conditions are met:
7+
8+
1. Redistributions of source code must retain the above copyright notice,
9+
this list of conditions and the following disclaimer.
10+
11+
2. Redistributions in binary form must reproduce the above copyright notice,
12+
this list of conditions and the following disclaimer in the documentation
13+
and/or other materials provided with the distribution.
14+
15+
3. Neither the name of the copyright holder nor the names of its contributors
16+
may be used to endorse or promote products derived from this software
17+
without specific prior written permission.
18+
19+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22+
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
23+
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24+
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25+
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26+
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28+
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29+
POSSIBILITY OF SUCH DAMAGE.
30+
31+
32+
This program uses the Boost.Filesystem and Boost System libraries, which are
33+
licensed under the Boost Software License:
34+
35+
Boost Software License - Version 1.0 - August 17th, 2003
36+
37+
Permission is hereby granted, free of charge, to any person or organization
38+
obtaining a copy of the software and accompanying documentation covered by
39+
this license (the "Software") to use, reproduce, display, distribute,
40+
execute, and transmit the Software, and to prepare derivative works of the
41+
Software, and to permit third-parties to whom the Software is furnished to
42+
do so, all subject to the following:
43+
44+
The copyright notices in the Software and this entire statement, including
45+
the above license grant, this restriction and the following disclaimer,
46+
must be included in all copies of the Software, in whole or in part, and
47+
all derivative works of the Software, unless such copies or derivative
48+
works are solely in the form of machine-executable object code generated by
49+
a source language processor.
50+
51+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
52+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
53+
FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
54+
SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
55+
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
56+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
57+
DEALINGS IN THE SOFTWARE.
58+
59+
60+
This program uses the libpng library, which is licensed under the libpng
61+
license:
62+
63+
* If you modify libpng you may insert additional notices immediately following
64+
* this sentence.
65+
*
66+
* This code is released under the libpng license.
67+
*
68+
* libpng versions 1.0.7, July 1, 2000 through 1.6.30rc02, June 25, 2017 are
69+
* Copyright (c) 2000-2002, 2004, 2006-2017 Glenn Randers-Pehrson, are
70+
* derived from libpng-1.0.6, and are distributed according to the same
71+
* disclaimer and license as libpng-1.0.6 with the following individuals
72+
* added to the list of Contributing Authors:
73+
*
74+
* Simon-Pierre Cadieux
75+
* Eric S. Raymond
76+
* Mans Rullgard
77+
* Cosmin Truta
78+
* Gilles Vollant
79+
* James Yu
80+
* Mandar Sahastrabuddhe
81+
* Google Inc.
82+
* Vadim Barkov
83+
*
84+
* and with the following additions to the disclaimer:
85+
*
86+
* There is no warranty against interference with your enjoyment of the
87+
* library or against infringement. There is no warranty that our
88+
* efforts or the library will fulfill any of your particular purposes
89+
* or needs. This library is provided with all faults, and the entire
90+
* risk of satisfactory quality, performance, accuracy, and effort is with
91+
* the user.
92+
*
93+
* Some files in the "contrib" directory and some configure-generated
94+
* files that are distributed with libpng have other copyright owners and
95+
* are released under other open source licenses.
96+
*
97+
* libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are
98+
* Copyright (c) 1998-2000 Glenn Randers-Pehrson, are derived from
99+
* libpng-0.96, and are distributed according to the same disclaimer and
100+
* license as libpng-0.96, with the following individuals added to the list
101+
* of Contributing Authors:
102+
*
103+
* Tom Lane
104+
* Glenn Randers-Pehrson
105+
* Willem van Schaik
106+
*
107+
* libpng versions 0.89, June 1996, through 0.96, May 1997, are
108+
* Copyright (c) 1996-1997 Andreas Dilger, are derived from libpng-0.88,
109+
* and are distributed according to the same disclaimer and license as
110+
* libpng-0.88, with the following individuals added to the list of
111+
* Contributing Authors:
112+
*
113+
* John Bowler
114+
* Kevin Bracey
115+
* Sam Bushell
116+
* Magnus Holmgren
117+
* Greg Roelofs
118+
* Tom Tanner
119+
*
120+
* Some files in the "scripts" directory have other copyright owners
121+
* but are released under this license.
122+
*
123+
* libpng versions 0.5, May 1995, through 0.88, January 1996, are
124+
* Copyright (c) 1995-1996 Guy Eric Schalnat, Group 42, Inc.
125+
*
126+
* For the purposes of this copyright and license, "Contributing Authors"
127+
* is defined as the following set of individuals:
128+
*
129+
* Andreas Dilger
130+
* Dave Martindale
131+
* Guy Eric Schalnat
132+
* Paul Schmidt
133+
* Tim Wegner
134+
*
135+
* The PNG Reference Library is supplied "AS IS". The Contributing Authors
136+
* and Group 42, Inc. disclaim all warranties, expressed or implied,
137+
* including, without limitation, the warranties of merchantability and of
138+
* fitness for any purpose. The Contributing Authors and Group 42, Inc.
139+
* assume no liability for direct, indirect, incidental, special, exemplary,
140+
* or consequential damages, which may result from the use of the PNG
141+
* Reference Library, even if advised of the possibility of such damage.
142+
*
143+
* Permission is hereby granted to use, copy, modify, and distribute this
144+
* source code, or portions hereof, for any purpose, without fee, subject
145+
* to the following restrictions:
146+
*
147+
* 1. The origin of this source code must not be misrepresented.
148+
*
149+
* 2. Altered versions must be plainly marked as such and must not
150+
* be misrepresented as being the original source.
151+
*
152+
* 3. This Copyright notice may not be removed or altered from any
153+
* source or altered source distribution.
154+
*
155+
* The Contributing Authors and Group 42, Inc. specifically permit, without
156+
* fee, and encourage the use of this source code as a component to
157+
* supporting the PNG file format in commercial products. If you use this
158+
* source code in a product, acknowledgment is not required but would be
159+
* appreciated.
160+
161+
162+
This program uses the libpng library, which uses the zlib library, which is
163+
licensed under the zlib license:
164+
165+
Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
166+
167+
This software is provided 'as-is', without any express or implied
168+
warranty. In no event will the authors be held liable for any damages
169+
arising from the use of this software.
170+
171+
Permission is granted to anyone to use this software for any purpose,
172+
including commercial applications, and to alter it and redistribute it
173+
freely, subject to the following restrictions:
174+
175+
1. The origin of this software must not be misrepresented; you must not
176+
claim that you wrote the original software. If you use this software
177+
in a product, an acknowledgment in the product documentation would be
178+
appreciated but is not required.
179+
2. Altered source versions must be plainly marked as such, and must not be
180+
misrepresented as being the original software.
181+
3. This notice may not be removed or altered from any source distribution.
182+
183+
Jean-loup Gailly Mark Adler
184+

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# ETH3D Two-View Evaluation Program #
2+
3+
This tool is used for evaluating two-view reconstruction methods in the [ETH3D benchmark](https://www.eth3d.net/).
4+
5+
Usage:
6+
7+
```
8+
ETH3DTwoViewEvaluation \
9+
reconstruction.pfm \
10+
ground-truth.pfm \
11+
nocc-mask.png \
12+
[optional: visualization_directory \
13+
(create_training_visualizations ? true : false)]
14+
```

0 commit comments

Comments
 (0)