I am very new to tikz pakage. Can anybody plese help me to write the diagram in tikz package?
\begin{figure*}
\centering
\resizebox{\textwidth}{!}{
\begin{tikzpicture}[
textnode/.style={
draw,
rectangle split,
rectangle split horizontal,
rectangle split parts=2,
}
]
\path (-11, 0) node (a) {\includegraphics[width=2cm,height=2cm,keepaspectratio]{puppy}}
(-8.5, 0) node (b) {\includegraphics[width=2cm,height=2cm,keepaspectratio]{puppy}}
(-5.5,1) node[textnode] () {A \nodepart{two} B}
(-5.5,0) node[textnode] (c) {A \nodepart{two} B}
(-5.5,-1) node[textnode] () {A \nodepart{two} B}
(-3,0) node[textnode] (d) {A \nodepart{two} B}
(-1.5,1) node[textnode] () {A \nodepart{two} B}
(-1.5,0) node[textnode] (e) {A \nodepart{two} B}
(-1.5,-1) node[textnode] () {A \nodepart{two} B};
\draw[-stealth,shorten >=1pt,line width=0.5mm] (a) -- (b);
\draw[-stealth,shorten >=1pt,line width=0.5mm] (b) -- (c);
\draw[-stealth,shorten >=1pt,line width=0.5mm] (c) -- (d);
\draw[-stealth,shorten >=1pt,line width=0.5mm] (d) -- (e);
\end{tikzpicture}
}
\end{figure*}


