Random shuffle of image pixels/ Image scrambling

16 次查看(过去 30 天)
hello,
I am applying arnold transform method on an image to scramble its pixels. And i am doing it successfully but the problem in this method is that first I have to binarize the image before applying this method and that is why I am getting binarized image in a result in inverse of arnold transform. So, my question is that is there any other method in which I scramble or shuffle pixels by setting a key value without binarizing the image? so that I would be able to revert the image back ?
thank you very much :-)

回答(1 个)

Sindar
Sindar 2020-9-9
You can use randperm to shuffle the indices randomly, then sort to get the indices for reversing it:
% load in an image included in Matlab
corn_gray = imread('corn.tif',3);
% get the size
imsize = size(corn_gray);
% display
imshow(corn_gray)
% create a randomly-shuffled list of linear indices 1:total pixels
idx_shuffle=randperm(numel(corn_gray));
% get the inverse (idx_shuffle(idx_unshuffle) = 1:total pixels)
[~,idx_unshuffle] = sort(idx_shuffle);
% put the indices into the same row-col shape as the image
idx_shuffle = reshape(idx_shuffle,imsize);
idx_unshuffle = reshape(idx_unshuffle,imsize);
% compute the shuffled image
corn_gray_shuffled = corn_gray(idx_shuffle);
% run an arbitrary transformation on it
corn_gray_shuffled = corn_gray_shuffled.^2;
% display the shuffled, transformed image
imshow(corn_gray_shuffled)
% unshuffle the transformed image
corn_gray_unshuffled = corn_gray_shuffled(idx_unshuffle);
% and display
imshow(corn_gray_unshuffled)
  4 个评论
marie lasz
marie lasz 2020-12-28
@Faizan, No I didn't. But I am working with Arnold.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Image Processing and Computer Vision 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by