i have blended 2 images using alpha blending, with alpha = 0.03 because i want the second image cannot be seen. that is:
blended image = 0.97*image1+0.03*image2
i want to get the original of image 2 back but i can't. well, i can but the image is not perfect. it doesn't look exactly like the original, it's blurred. i use this formula to get it back:
image2 = (blended image - 0.97*image1)/0.03
does anyone have any idea what's wrong with it?