I'm writing a document and implementing a picture of device and it's technical data in a table in the same page. The problem which I have is that the page and the table are not in the same level which causes that title of picture is not at the same height
This is the code:
\begin{minipage}{0.5\textwidth}
\begin{figure}[H]
\centering
\includegraphics[width=7cm, height=4cm]{gaszaehler}
\caption{Q-loud EnrgyCam 2.0}
\end{figure}
\end{minipage}
\begin{minipage}{0.5\textwidth}
\begin{table}[H]
\centering
\scalebox{0.9}{
\begin{tabular}{ | l | c|}
\hline
Stromversorgung & DC 5 V $\geq100$ mA \\ \hline
Betriebstemperatur & -10 ° - 50 °\\ \hline
Schutzklasse & IP64 \\ \hline
Bussystem & M-Bus \\ \hline
Dimensionen & 42 x 42 mm (T x H) \\ \hline
Sensoreinheit & Kamera Modul \\ \hline
% & & & \\ \hline
\end{tabular}
}
\caption{Technische Daten der Q-loud EnrgyCam 2.0 \cite{energycam_mbus} }
\end{table}
\end{minipage}
could someone help me please to make them both in the same hight?


\saveboxto measure the height of the table and use it to set the height of the graphics. – May 08 '18 at 18:06