I want to point to a specific object (such as the following example) in each sub-images with an arrow. I have also seen some suggestions such as this link. How can I do it in the following document?
\documentclass[a4paper,fleqn]{cas-dc}
\usepackage{lipsum,capt-of,graphicx}
\usepackage{geometry}% Just for this example
\usepackage{natbib}
%\usepackage[wby]{callouts}
%\usepackage{cite}
\usepackage{ragged2e}
\usepackage{setspace}
\usepackage[labelfont=bf,justification=raggedright,singlelinecheck=false, font={footnotesize}]{caption}
\captionsetup[figure]{name=Fig. ,labelsep=period, justification=justified, singlelinecheck=off}
\captionsetup[table]{labelsep=newline,font=footnotesize, justification=justified, singlelinecheck=off}%,skip=0pt,belowskip=0pt}
\usepackage{subcaption}
\usepackage{etoolbox}
\AtBeginEnvironment{table}{\sffamily}
\usepackage{booktabs,siunitx, multirow}
\sisetup{table-format=1.4, tight-spacing=true, separate-uncertainty}
\sisetup{
output-exponent-marker = \text{e},
exponent-product={},
retain-explicit-plus,
input-open-uncertainty = ,
input-close-uncertainty = ,
table-align-text-pre = false,
table-align-text-post = false,
round-mode=places,
round-precision=2,
table-space-text-pre = (,
table-space-text-post = ),
}
\usepackage{amsmath}
\usepackage{adjustbox}
\usepackage{floatrow}
\floatsetup[table]{style=Plaintop, captionskip=0pt, capposition=top}
\let\sum\relax % To change the style of summation symbol
\DeclareSymbolFont{otherlargesymbols}{OMX}{cmex}{m}{n}
\DeclareMathSymbol{\sum}{\mathop}{otherlargesymbols}{"50}
\setlength{\mathindent}{0pt}
\makeatletter
@dblfpsep=20pt
\makeatother
\usepackage{array, cellspace}
\setlength\cellspacetoplimit{3pt}
\setlength\cellspacebottomlimit{3pt}
\begin{document}\sloppy
\begin{figure}[htbp]
%\begin{annotate}
\centering
\subcaptionbox{\label{sfig:a}}{\includegraphics[width=.12\linewidth,height=1.9cm]{example-image-a.png}}\hfill
%\arrow{-3,-2.4}{-4.5,-3}
\subcaptionbox{\label{sfig:b}}{\includegraphics[width=.12\linewidth,height=1.9cm]{example-image-a.png}}\hfill
\subcaptionbox{\label{sfig:c}}{\includegraphics[width=.12\linewidth,height=1.9cm]{example-image-a.png}}\hfill
\subcaptionbox{\label{sfig:d}}{\includegraphics[width=.12\linewidth,height=1.9cm]{example-image-a.png}}\hfill
\subcaptionbox{\label{sfig:e}}{\includegraphics[width=.12\linewidth,height=1.9cm]{example-image-a.png}}\hfill
\subcaptionbox{\label{sfig:f}}{\includegraphics[width=.12\linewidth,height=1.9cm]{example-image-a.png}}\
\subcaptionbox{\label{sfig:g}}{\includegraphics[width=.12\linewidth,height=1.9cm]{example-image-a.png}}\hfill
\subcaptionbox{\label{sfig:h}}{\includegraphics[width=.12\linewidth,height=1.9cm]{example-image-a.png}}\hfill
\subcaptionbox{\label{sfig:i}}{\includegraphics[width=.12\linewidth,height=1.9cm]{example-image-a.png}}\hfill
\subcaptionbox{\label{sfig:j}}{\includegraphics[width=.12\linewidth,height=1.9cm]{example-image-a.png}}\hfill
\subcaptionbox{\label{sfig:k}}{\includegraphics[width=.12\linewidth,height=1.9cm]{example-image-a.png}}\hfill
\subcaptionbox{\label{sfig:l}}{\includegraphics[width=.12\linewidth,height=1.9cm]{example-image-a.png}}\
\caption{bbbbb.}
\label{fig1:MalBen}
%\end{annotate}
\end{figure}
\end{document}

