I have successfully managed to place a background image at the bottom of my page by using the wallpaper package and \LLCornerWallPaper. Depending on odd / even pages I want to set the left / right part of a panorama as background. This answer shows how to do something based on oddness / evenness for KOMA-Script.
Now my problem is that both images appear on both odd and even pages. Here is my (simplified) code:
\documentclass[twoside,titlepage=false]{scrartcl}
\usepackage{wallpaper}
\usepackage{scrextend}
\begin{document}
\ifthispageodd{\LLCornerWallPaper{1}{pano-left}}{}
Text odd.\newpage
\ifthispageodd{\LLCornerWallPaper{1}{pano-right}}{}
Text even.
\end{document}

