¿Cómo colocar títulos al lado de la figura?

¿Cómo colocar títulos al lado de la figura?

Tengo una tabla con 2 figuras en cada celda.

\begin{figure}
\begin{center}
\begin{tabular}{cc}
\includegraphics[width=0.45\textwidth]{mnist/1.png}& \includegraphics[width=0.45\textwidth]{mnist/2.png}\\
\end{tabular}
\caption{Results on the moving mnist dataset}
\label{fig:qualitativemnist}
\end{center}
\end{figure}

ingrese la descripción de la imagen aquí

Pero me gustaría títulos adicionales como los siguientes.

ingrese la descripción de la imagen aquí

¿Cuál es la forma más fácil de hacerlo? Lo he probado de esta manera pero el resultado no es correcto.

\begin{figure}
\begin{center}
\begin{tabular}{ccc}
asd\\asd\\asd\\asd\\asd\\asd&
\includegraphics[width=0.45\textwidth]{mnist/1.png}& \includegraphics[width=0.45\textwidth]{mnist/2.png}\\
\end{tabular}
\caption{Prediction examples on the moving mnist dataset}
\label{fig:qualitativemnist}
\end{center}
\end{figure}

Respuesta1

Hacer coincidir el espaciado entre filas de una imagen será un éxito o un fracaso, al igual que ajustar la posición dentro de cada fila. Las imágenes tienen sus líneas de base en la parte inferior, de ahí las tablas [b].

\documentclass[11pt]{article}
\usepackage[draft]{graphicx}
\begin{document}

\begin{figure}[t]
\centering
\def\arraystretch{1.2}% controls row spacing
\raisebox{1ex}{\begin{tabular}[b]{@{}c@{}}% contols row centering
asd\\asd\\asd\\asd\\asd\\asd
\end{tabular}}
\includegraphics[width=0.4\textwidth]{mnist/1.png}\hfil
\raisebox{1ex}{\begin{tabular}[b]{@{}c@{}}
asd\\asd\\asd\\asd\\asd\\asd
\end{tabular}}
\includegraphics[width=0.4\textwidth]{mnist/2.png}
\caption{Prediction examples on the moving mnist dataset}% automatic \par
\label{fig:qualitativemnist}
\end{figure}

\end{document}

información relacionada