I suspect, that you like to have something like this:

but I'm not sure. The code snippet of above figure is:
\begin{figure}
\setlength\tabcolsep{1pt}
\settowidth\rotheadsize{Radcliffe Cam}
\begin{tabularx}{\linewidth}{l XXX }
\rothead{text 1} & \includegraphics[width=\hsize,valign=m]{image-1}
& \includegraphics[width=\hsize,valign=m]{image-2}
& \includegraphics[width=\hsize,valign=m]{image-3} \\ \addlinespace[2pt]
\rothead{Radcliffe Cam} & \includegraphics[width=\hsize,valign=m]{image-4}
& \includegraphics[width=\hsize,valign=m]{image-5}
& \includegraphics[width=\hsize,valign=m]{image-6}
\end{tabularx}
\caption{A table with figures}
\label{tab:mytable}
\end{figure}
In preamble of your document should be loaded (among others) the following packages:
\usepackage[demo]{graphicx}
\usepackage{booktabs, makecell, tabularx}
\usepackage{rotating}
\usepackage[export]{adjustbox}
Addendum:
In the cases when you like to have images in "block" narrower then text width, than you need to prescribe narrower width of tabularx (not of figure environment, this you can't do on the way as you show in comment):
\documentclass{article}
\usepackage[demo, % in real document remove "demo"
export]{adjustbox}
\usepackage{rotating}
\usepackage{booktabs, makecell, tabularx}
\begin{document}
\begin{figure}
\setlength\tabcolsep{1pt}
\settowidth\rotheadsize{Radcliffe Cam}
\setkeys{Gin}{width=\hsize}
\begin{tabularx}{0.8\linewidth}{l XXX }% <-- here is determined table width
\rothead{\centering
text 1} & \includegraphics[valign=m]{image-1}
& \includegraphics[valign=m]{image-2}
& \includegraphics[valign=m]{image-3} \\
\addlinespace[2pt]
\rothead{Radcliffe Cam} & \includegraphics[valign=m]{image-4}
& \includegraphics[valign=m]{image-5}
& \includegraphics[valign=m]{image-6}
\end{tabularx}
\caption{A table with figures}
\label{tab:mytable}
\end{figure}
\end{document}
Edit:
After two and half years ... :-) the code fragment in the addendum is extended to complete MWE. Also some small improvements are done. Now MWE should be simple testable.
\documentclass{...}and ending with\end{document}and load in preamble only necessary packages. It is not fun to recreate your document from scratch ... – Zarko Jun 30 '17 at 10:21wrapping the image? – Bernard Jun 30 '17 at 10:22wrapfigure, where the "table of images" can be surrounded by text. – user6321 Jun 30 '17 at 10:23