-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraphical_abstract.tex
More file actions
43 lines (29 loc) · 2.23 KB
/
graphical_abstract.tex
File metadata and controls
43 lines (29 loc) · 2.23 KB
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
\documentclass[tikz]{standalone}
\usepackage[T1]{fontenc}
\usepackage[english]{babel}
\usepackage{xcolor}
\definecolor{wheat}{RGB}{245,222,179}
\usepackage{standalone}
\usepackage{pgfplots}
\usepackage{tikz}
\usepackage{amsmath}
\begin{document}
\begin{tikzpicture}
\node (residual) at (0,0) {\fbox{\includegraphics[height=1cm, angle=270]{images/graph_abstract/residual}}};
\path (residual.south) + (0,-.2) node (residual_legend) {\footnotesize (c) Height based};
\path (residual.west) + (-2, 0) node (facet_graph) {\includestandalone[mode=buildnew, height=1cm]{building_graph}};
\path (facet_graph |- residual_legend) node (facet_graph_legend) {\footnotesize (b) Geometric};
\path (residual.north) + (0, 2) node (model) {\includestandalone[mode=buildnew, height=1cm]{building_model}};
\path (model.south) + (0,-.2) node (model_legend) {\footnotesize (a) Input model};
\path (residual.east) + (2, 0) node (ortho_projection) {\fbox{\includegraphics[height=1cm, angle=270]{images/graph_abstract/orthoprojection}}};
\path (ortho_projection |- residual_legend) node (ortho_projection_legend) {\footnotesize (d) Image based};
\draw[rounded corners] (facet_graph.north west) rectangle (ortho_projection_legend.east |- facet_graph_legend.south west);
\path (facet_graph.north west) node[anchor=south west] (features) {\footnotesize Features};
\path (residual.south) + (0, -2) node (errors) {\includestandalone[mode=buildnew, height=1cm]{building_errors}};
\path (errors.south) + (0,-.2) node (errors_legend) {\footnotesize (e) Error detection};
\path (errors.15) + (.35, 0) node[align=left] (errors_list) {\scriptsize {\color{red}$\blacksquare$ \texttt{FIB}}};
\path (errors_list.south) node[align=left] (errors_list) {\scriptsize {\color{blue}$\blacksquare$ \texttt{FOS}}};
\path[draw, ->, line width=1pt, rounded corners=10pt, IGNGreen] (model_legend.south) -- (residual |- facet_graph.north);
\path[draw, ->, line width=1pt, rounded corners=10pt, IGNGreen] (residual |- facet_graph_legend.south) -- (errors.north) node [midway, left, IGNGreen] {\scriptsize Supervized classifier (\underline{RF}, SVM \dots)};
\end{tikzpicture}
\end{document}