how can i randomize an image?

조회 수: 7 (최근 30일)
nadia
nadia 2017년 2월 27일
댓글: Samaa Yasser 2021년 4월 28일
Hi, I have an image and I want to randomize it with special seed and convert the original image to random image, after that I should recover the original image. how can I do it? can you guide me???

답변 (2개)

Walter Roberson
Walter Roberson 2017년 2월 27일
special_seed = randi([1 255]);
randomized_image = uint8( mod(double(YourImage)+special_seed, 256) );
  댓글 수: 2
nadia
nadia 2017년 2월 27일
편집: nadia 2017년 2월 27일
is there any function in matlab that convert an image to random image and encrypt the image with specified seed?
Walter Roberson
Walter Roberson 2017년 2월 27일
No there is no function provided for that specific purpose. The code I gave above does one kind of randomization. To reverse use -special_seed instead of + it.

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2017년 2월 27일
편집: Image Analyst 2021년 4월 28일
See attached demos for random scrambling and scrambling via Arnold's Cat Map.
  댓글 수: 4
Samaa Yasser
Samaa Yasser 2021년 4월 28일
thank you very much

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by