If you want to add an object at an arbitrary position in the slide, you can use tikz with overlay option:
\documentclass[11pt]{beamer}
\usepackage{graphicx}
\usepackage{ragged2e}
\usepackage{tikz}
\begin{document}
\begin{frame}{Introduzione}
\justifying
\scriptsize
\vspace{-0.25cm}
Aggarwal, C. C., Hinneburg, A., Keim, D. A. 2001. \emph{On the surprising
behavior of distance metrics in high dimensional space}. In International
conference on database theory, pp. 420-434. Springer, Berlin, Heidelberg.
(\emph{1859 citazioni su Google Scholar nel maggio 2021})
\vspace{-0.25cm}
\begin{figure}
\centering
\includegraphics[width=0.7\textwidth, height=0.6\textwidth]{example-image.png}
\end{figure}
\vspace{-0.35cm}
%
\tikz[overlay, remember picture,
shift=(current page.south west),
x=(current page.south east), y=(current page.north west),
]{
\node[align=left]at (0.9,0.1) {M.C. Escher,\Relativity (1953)};
% Optional help grid lines
%\draw[step=.1, opacity=0.3, thick, red] (0,0) grid (1,1);
}
\end{frame}
\end{document}

The coordinates (0.9,0.1) are absolute with respect to the below left corner to the slide and are normalized (coordinate (1,1) is the upper right corner)
You can uncomment he code below Optional help grid lines in order to draw grid lines for guessing that coordinates:

Of course, you can define new commands for this:
\newcommand{\posabs}[2][]{
\tikz[overlay, remember picture,
shift=(current page.south west),
x=(current page.south east), y=(current page.north west),
#1
]{#2}
}
\newcommand{\postextabs}[4][align=left]{
\posabs{\node[#1] at (#2,#3) {#4};}
}
This add tikz code at an arbitrary position:
\posabs[red]{\node[circle, fill=red] at (0.5,0.5) {};}
This add a text node at an arbitrary position:
\postextabs[red]{0.5}{0.5}{\huge !!}
copyrightboxpackage. – Bernard May 08 '21 at 13:59tikzmarkpackage to declare your picture as a node (withtikzmarnode), then overlay another node anchoredsouth eastto place theauthor name. – SebGlav May 08 '21 at 14:56textpospackage. – vi pa May 10 '21 at 17:20