I currently try to visualize the groups and subgroups of a biometric system. I want to get rid of old and boring arrows and want to use something like a Zoom or Detail-View effect (see image; Dark Blue -> Light Blue; Colours can be replaced) but I lack of any skill in Tikz/PGF to visualize such an effect. I've managed to get some boxes, but well, I would rather not put this in my thesis.
Any tipps or resources I could study?
By Request: My Current Blocks
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{tikzpicture}[remember picture,
application/.style={fill=black!10,rounded corners,inner sep=20pt},
biometric/.style={rounded corners,draw=blue!50,fill=blue!20,thick,inner sep=3pt},
detail/.style={fill=blue!10,draw=blue,rounded corners,inner sep=15pt},
subdetail/.style={draw=red!75,fill=red!20,rounded corners,inner sep=5pt},
empty subdetail/.style={draw=blue!10,rounded corners,inner sep=5pt}
]
\node[application] (application) {
\begin{tikzpicture}
\node[biometric] (image) {
\begin{tikzpicture}
\node (image-head) {Data Capture Subsystem};
\node [detail,draw=blue,below=0.1cm of image-head] (detail) {
\begin{tikzpicture}
\end{tikzpicture}
};
\end{tikzpicture}
};
\node[biometric,below=0.1cm of image] (signal) {
\begin{tikzpicture}
\node (signal-head) {Signal Processing Subsystem};
\node [detail,draw=blue,below=0.1cm of signal-head] (detail) {
\begin{tikzpicture}
\node [subdetail,draw=blue] (detail1) {Quality Control};
\node [subdetail,draw=blue,below=0.1cm of detail1] (detail2) {Pre-Processing};
\node [subdetail,draw=blue,below=0.1cm of detail2] (detail3) {Feature Extraction};
\node [subdetail,draw=blue,below=0.1cm of detail3] (detail4) {Post-Processing};
\end{tikzpicture}
};
\end{tikzpicture}
};
\node[biometric,below=0.1cm of signal] (storage) {
\begin{tikzpicture}
\node (storage-head) {Data Storage Subsystem};
\node [detail,draw=blue,below=0.1cm of storage-head] (detail) {
\begin{tikzpicture}
\end{tikzpicture}
};
\end{tikzpicture}
};
\node[biometric,below=0.1cm of storage] (comp) {
\begin{tikzpicture}
\node (comp-head) {Comparsion Subsystem};
\node [detail,draw=blue,below=0.1cm of comp-head] (detail) {
\begin{tikzpicture}
\end{tikzpicture}
};
\end{tikzpicture}
};
\node[biometric,below=0.1cm of comp] (dec) {
\begin{tikzpicture}
\node (dec-head) {Decision Subsystem};
\node [detail,draw=blue,below=0.1cm of dec-head] (detail) {
\begin{tikzpicture}
\end{tikzpicture}
};
\end{tikzpicture}
};
\end{tikzpicture}
};
\node [black,below] at (application.north) {Biometric Subsystem};
\end{tikzpicture}
\end{document}


tcolorbox. – TeXnician Jun 05 '17 at 14:40