from
Visual Cryptography
by Athi
Generation of two-out-of-two Visual Cryptography Scheme shares.
|
| VisCrypt(inImg)
|
%Program for Construction of a two-out-of-two Visual Cryptography Scheme
%Author : Athi Narayanan S
%M.E, Embedded Systems,
%K.S.R College of Engineering
%Erode, Tamil Nadu, India.
%http://sites.google.com/site/athisnarayanan/
%s_athi1983@yahoo.co.in
%Program Description
%This program generates a two-out-of-two Visual Cryptography Scheme shares.
%The input image for this program should be a binary image.
%The shares and the overlapping result of the shares are written as output.
%
%Usage:
%Input: inImg - A binary image
%Output: share1 - Generated share 1
% share2 - Generated share 2
% share12 - Overlapped result of shares 1 & 2
function [share1, share2, share12] = VisCrypt(inImg)
s = size(inImg);
share1 = zeros(s(1), (2 * s(2)));
share2 = zeros(s(1), (2 * s(2)));
%%White Pixel Processing
%White Pixel share combinations
disp('White Pixel Processing...');
s1a=[1 0];
s1b=[1 0];
[x y] = find(inImg == 1);
len = length(x);
for i=1:len
a=x(i);b=y(i);
pixShare=generateShare(s1a,s1b);
share1((a),(2*b-1):(2*b))=pixShare(1,1:2);
share2((a),(2*b-1):(2*b))=pixShare(2,1:2);
end
%Black Pixel Processing
%Black Pixel share combinations
disp('Black Pixel Processing...');
s0a=[1 0];
s0b=[0 1];
[x y] = find(inImg == 0);
len = length(x);
for i=1:len
a=x(i);b=y(i);
pixShare=generateShare(s0a,s0b);
share1((a),(2*b-1):(2*b))=pixShare(1,1:2);
share2((a),(2*b-1):(2*b))=pixShare(2,1:2);
end
share12=bitor(share1, share2);
share12 = ~share12;
disp('Share Generation Completed.');
|
|
Contact us at files@mathworks.com