Inserindo figura dentro do problema de alinhamento da célula da tabela

Inserindo figura dentro do problema de alinhamento da célula da tabela

Gostaria de inserir uma pequena figura dentro de uma célula de coluna, mas ela fica desalinhada com o restante do texto e cria um espaço extra vazio para cada linha. É possível evitar esse comportamento?

\documentclass[sigconf]{acmart}

\begin{document}
\begin{table*}[tb]
\caption{Example Table with Figure}

\begin{tabular}{lllllccc}
\toprule
\textbf{ColA} &  \textbf{Description} & Text & Col & Col & Col &  Fig & \textbf{Val} \\
\midrule

Test  & Explanation & 1 & 2 & 3 & 4 & \includegraphics{figures/fig-tiny.eps}& Val  \\\addlinespace
Test  & Explanation & 1 & 2 & 3 & 4 & \includegraphics{figures/fig-tiny.eps}& Val  \\\addlinespace
\bottomrule


\end{tabular}
\end{table*}


\begin{table*}[tb]
\caption{Example Table without Figure}

\begin{tabular}{lllllccc}
\toprule
\textbf{ColA} &  \textbf{Description} & Text & Col & Col & Col &  Fig & \textbf{Val} \\
\midrule

Test  & Explanation & 1 & 2 & 3 & 4 & Val & Val  \\\addlinespace
Test  & Explanation & 1 & 2 & 3 & 4 & Val & Val  \\\addlinespace
\bottomrule


\end{tabular}
\end{table*}
\end{document}

insira a descrição da imagem aqui

Como eu poderia me livrar do desalinhamento vertical e também do espaço extra inserido entre as linhas?

informação relacionada