I have this code:
\documentclass{beamer}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[caption=false]{subfig}
\graphicspath{{/folder/images/}}
\title{}
\author{}
\begin{document}
\begin{figure}
\centering
\subfloat[][]{\includegraphics[scale=0.5]{Graph1}}
\end{figure}
\end{document}
Under the graph it shows me a label , "a". How can I not show it? Also, how to restart numbering of labels because the subfloat numbers all the figures from the beginning of the document?

\subfloat{\includegraphics[scale=0.5]{Graph1}}without the optional arguments. – Werner Sep 11 '12 at 17:26