ffigbox 内の図を参照するにはどうすればいいですか?

ffigbox 内の図を参照するにはどうすればいいですか?

2 つの図と 1 つの表が並んでいる次のコードを記述しました。\ref{dev}参照を使用して図を参照すると、正しく表示されますが、個々の画像を参照すると\ref{done}表示\ref{dtwo}されません。

\begin{figure*}
    \begin{floatrow}
    \ffigbox[0.6\textwidth]{%
        \begin{subfloatrow}
        \ffigbox[\FBwidth][]
          {\includegraphics[scale=0.34]{done.eps}}
          {\label{done}}
          {\caption{One}}
        \ffigbox[\FBwidth][]
          {\includegraphics[scale=0.34]{dtwo.eps}}
          {\label{dtwo}}
          {\caption{Two}}
      \end{subfloatrow}
    %   \rule{1cm}{1cm}%
    }{%
      \caption{Figures}%
      {\label{dev}}
    }
    \capbtabbox[0.4\textwidth]{%
      \input{memorytable.tex}
    }{%
      \caption{Memory}%
      \label{mem}
    }
    \end{floatrow}
\end{figure*}

関連情報