I want to draw something like this:

I am able to draw like this:

This is the code for the same:
\documentclass{article}
\usepackage{tikz,subfig}
\begin{document}
\begin{figure}
\centering
\subfloat[Iteration Domain for a Tile]{
\begin{tikzpicture}
\draw (0,0) rectangle (3.8,3.8);
\end{tikzpicture}
}
\subfloat[Convex Bounding Boxes]{
\begin{tikzpicture}
\draw (0,0) rectangle (3.8,3.8);
\end{tikzpicture}
}
\subfloat[Disjoint Bounding Boxes]{
\begin{tikzpicture}
\draw (0,0) rectangle (3.8,3.8);
\end{tikzpicture}
}
\subfloat[Disjoint Bounding Boxes]{
\begin{tikzpicture}
\draw (0,0) rectangle (3.8,3.8);
\end{tikzpicture}
}
\caption{Bounding boxes for disjoint union of data regions}
\end{figure}
\end{document}
Now, I am facing two problems:
- How can place center aligned text exactly above figure 1(b) and both figure 1(C) and (d)?
- How do I draw a rectangle above figure (b), (c) and (d) only?
Is there any way to do it?



