-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuilding_models-piecewise.tex
52 lines (49 loc) · 2.69 KB
/
building_models-piecewise.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
\documentclass[tikz]{standalone}
\usepackage{tikz}
\usetikzlibrary{shapes.arrows, fadings}
\begin{document}
\begin{tikzpicture}
\node (generality_arrow) at (0, 0) [
draw=black,
left color=white,
single arrow,
right color=red,
single arrow,
minimum height=8cm,
shading angle=90+270,
rotate=270
] {};
\path (generality_arrow.south) + (0, -4) node[anchor=north] (generality) {\textcolor{red}{Generality}};
\path (generality_arrow) + (1, 0) node (compactness_arrow) [
draw=black,
left color=white,
single arrow,
right color=blue,
single arrow,
minimum height=8cm,
shading angle=90+90,
rotate=90
] {};
\path (compactness_arrow.north) + (0, 4) node[anchor=south] (generality) {\textcolor{blue}{Compaction}};
\path (generality_arrow) + (-10, 4) node (manhattan) {\large Manhattan world};
\path (manhattan.south west) node[anchor=north west, text width=5cm] (manhattan_cite) {\small [Vanegas et al., 2010][Li et al., 2016]};
\path (manhattan_cite.east) + (2, 0) node[anchor=west] (manhattan_image) {
\includegraphics[width=2cm]{images/3d_buildings/boxfitting_li}
};
\path (manhattan_cite.south west) + (0, -.5) node[anchor=north west] (piecewise) {Piecewise \large planar structures};
\path (piecewise.south west) node[anchor=north west, text width=5cm] (piecewise_cite) {\small [Lafarge et al., 2011][Nan et al., 2017]};
\path (piecewise_cite.east) + (2, 0) node[anchor=west] (piecewise_image) {
\includegraphics[width=2cm]{images/3d_buildings/polyfit_iccv}
};
\path (piecewise_cite.south west) + (0, -.5) node[anchor=north west, opacity=0] (grammar) {\large Grammar based};
\path (grammar.south west) node[anchor=north west, text width=5cm, opacity=0] (grammar_cite) {\small [Nan et al., 2015][Zeng et al. 2018]};
\path (grammar_cite.east) + (2, 0) node[anchor=west, opacity=0] (grammar_image) {
\includegraphics[width=2cm]{images/3d_buildings/grammar}
};
\path (grammar_cite.south west) + (0, -.5) node[anchor=north west, opacity=0] (simplification) {\large Mesh simplification};
\path (simplification.south west) node[anchor=north west, text width=5cm, opacity=0] (simplification_cite) {\small [Zhou et al., 2010][Verdié et al., 2011]};
\path (simplification_cite.east) + (2, 0) node[anchor=west, opacity=0] (simplification_image) {
\includegraphics[width=2cm]{images/3d_buildings/dual_zhou}
};
\end{tikzpicture}
\end{document}