Prev: MATLAB Builder NE: Error using ==> getKnot Too many output arguments
Next: DistMesh giving a singular FEM matrix?
From: Sowmya on 14 Apr 2010 23:39 I have overlayed 2 images and used Alpha Data to set transparency.. Now i need to store the resultant image in the output window to do some enhancement..How to store this overlayed image obtained from the figure window?..
From: Ashish Uthama on 15 Apr 2010 07:01
On Thu, 15 Apr 2010 00:39:03 -0300, Sowmya <sowmya_h88(a)yahoo.com> wrote: > I have overlayed 2 images and used Alpha Data to set transparency.. Now > i need to store the resultant image in the output window to do some > enhancement..How to store this overlayed image obtained from the figure > window?.. http://en.wikipedia.org/wiki/Alpha_compositing#Alpha_blending compositeImage = (1-alpha).*image1 + alpha.*image2 |