matlab - How to embed combine images together -


is possible transformation unction fourier etc combine more 1 image file(3d) 1 file digital album. combining of files should reversible operation such individual images can separated.

i attempted sure nothing close should be:

img1=imread('lena_gray.jpg'); img2=imread('pic1.jpg'); img3=imread('pic2.jpg');  defimage=pow2(get(0,'defaultimagecdata'),47); mag=200; imshow(bitslice(defimage,47,51),'initialmag',mag); r=bitslice(img1,50,50); g=bitslice(img2,50,60); b=bitslice(img3,100,100); imshow(cat(3,r,g,b),'initialmag',mag); 

this results error!

also, how achieve reverse operation? cramer's rule of inverse in demultiplexing combined images? if so, how operate cramer's rule on rgb images?

i think trying achieve multiplexing , demultiplexing. try fresnel transform instead of fourier


Comments

Popular posts from this blog

c# - How to set Z index when using WPF DrawingContext? -

razor - Is this a bug in WebMatrix PageData? -

visual c++ - Using relative values in array sorting ( asm ) -