Hi i have the following Beamer slide and i want to make the logo in the bottom right corner have an opacity on say 50 % ?
\documentclass[a4paper, ]{beamer}
\usepackage[danish]{babel}
\usepackage[utf8]{inputenc}
\renewcommand{\danishhyphenmins}{22}
\usepackage[T1]{fontenc}
\usepackage{mathtools}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsthm}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{appendixnumberbeamer}
\pgfplotsset{compat=newest}
\usepgfplotslibrary{units}
\usepackage{algpseudocode}
\usepackage[]{algorithm}
\algnewcommand\algorithmicinitialize{\textbf{\: \ initialization:}}
\algnewcommand\Initialize{\item[\algorithmicinitialize]}
\renewcommand{\algorithmicrequire}{\textbf{input:}}
\renewcommand{\algorithmicensure}{\textbf{output:}}
\usetheme{Madrid}
\usecolortheme{dolphin}
\title[Dept. of Theoretical Statistics]{Particle Filtering for Sequential Markov Coalescent}
\author[Simon Schou Simonsen]{Simon Schou Simonsen}
\institute[]{\textit{In collaboration with: }\\\textit{Svend V. Nielsen and Asger Hobolth}}
\date{26. januar 2015}
\logo{\includegraphics[scale=0.65]{segl.pdf}}
\begin{document}
\frame{\titlepage}
\begin{frame}
\frametitle{Program}
\tableofcontents
\end{frame}
\end{document}

\tikz\node[opacity=.5,inner sep=0pt] {\includegraphics[scale=0.65]{segl.pdf}};– Henri Menke Jan 25 '16 at 09:33but i had no success :(
– Simon Schou Simonsen Jan 25 '16 at 10:10inkscape --export-pdf=segl.pdf Aarhus_University_seal.svg. Then, with this sample document you can achieve the desired effect. – Henri Menke Jan 25 '16 at 10:50