You can use .NET remoting for inter-process communication (IPC) with IpcChannel. Otherwise you can search for shared memory wrappers and other IPC forms.
EDIT: There is a MSDN article comparing WCF to a variety of methods including Remoting. However unless I am reading the bar graph wrong, it shows Remoting to be the same or slightly better (unlike the other comment said). There is also a blog post about WCF vs. Remoting. The blog post clearly shows Remoting is faster for binary objects and if you are passing Bitmaps (binary objects) then it seems Remoting or shared memory or other IPC option might be faster, although WCF might not be a bad choice anyway.