I have the following problem: I would like to have images of Feynman diagrams as part of equations. Using
\newcommand{\imineq}[2]{
\includegraphics[height=#2ex]{#1}}
I had success in as far as
\begin{equation}
H\left(\imineq{Feynman_image}{7}\right)=
\end{equation}
does put the image roughly where it's meant to be but shifted upwards to the top half of the brackets. Anyone have any ideas as to how I can get the image to appear vertically centered and ideally get the brackets to scale properly?

\raisebox{-2ex}{\includegraphics...}to adjust the position, or perhaps simpler use the adjustbox package – David Carlisle Nov 01 '12 at 15:10