GIF in steganography in matlab
1 回表示 (過去 30 日間)
古いコメントを表示
How do I put a bit or two inside the GIF frame? ( steganography)
How do I make a display for GIF frame with a read function?
0 件のコメント
回答 (1 件)
Shiva Kalyan Diwakaruni
2021 年 2 月 9 日
Hi,
To make a display for GIF frame with a read function the code looks like below
allframedata = imread('YourFile.GIF', 'frames', 'all');
alldimensions = size(allframedata);
number_of_frames = alldimensions(end);
you can refer the below links
And for steganography of gif you can use LSB algorithm
For implementing LSB algorithm you can follow the below link
hope it helps,
thanks.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Encryption / Cryptography についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!