How to form bytes ?
3 ビュー (過去 30 日間)
古いコメントを表示
To extract hidden data frm LSBs of image I have collected dataa as bits in an array array size is 486864x1 (It consists of 486864 bits that I retrieved) Now how to form bytes of this data? each 8 bits in this array is to represented as a byte How can I do ths????
0 件のコメント
採用された回答
Walter Roberson
2013 年 4 月 20 日
uint8( D(1:8:end) * 128 + D(2,8,end) * 64 + D(3,8,end) * 32 (etc) )
0 件のコメント
その他の回答 (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!