Как мне инкапсулировать некоторую текстовую информацию в изображение и извлечь ее с помощью MATLAB? - PullRequest
2 голосов
/ 25 апреля 2010
new_img = convert(img, text);
(img, text) = convert_back(new_img);

Может кто-нибудь проиллюстрировать встроенным изображением MATALB?

1 Ответ

7 голосов
/ 25 апреля 2010

Мне кажется, вы ищете стеганографию .Вы можете начать с этой реализации MATLAB стеганографии LSB .

Простой способ выполнения стеганографии LSB состоит в том, чтобы взять сжатое без потерь изображение и установить LSB каждого компонента (R, G,Б).Затем для изображения m x n вы получите 3mn бит для хранения информации. Поскольку вы изменяете LSB, разница не будет заметна вimage.

Обновление

ТАК Я решил написать небольшой, неэффективный, но наглядный пример:

function LSBStega    
        %%// Image and text
        I = imread('coins.png');
        text = 'Hello World etc';
        assert(numel(I) > numel(text)*8,'Insufficient number of pixels');

        %%// Encode
        %// The end character signifies the end of the hidden text
        end_char = '.';
        %// Append it
        text = [text end_char];
        %// Convert each character into binary form with atleast 8 bits
        %// We transpose it before calling (:) since the binary representation
        %// is stores each character in binary per row and the (:) operations
        %// vectorizes the matrix by column.
        b = transpose(dec2bin(text,8));
        %// Find which bits should be set to 1 or 0
        ind_0 = find(b == '0');
        ind_1 = find(b == '1');
        %// Set the appropriate bits to 1 and 0 and leave the rest alone
        I(ind_0) = bitset(I(ind_0),1,0);
        I(ind_1) = bitset(I(ind_1),1,1);

        %%// Faster decode
        text_back = [];        
        for i = 1:8:numel(I)
            %// Extract the LSB from a set of 8 bytes in the image
            C = bitget(I(i:i+7),1);
            %// Convert from binary to decimal
            C = bin2dec(num2str(C));
            %// Check if it's the end character; break if so, store if not
            if(C == end_char) 
                break;
            else
                text_back(end+1) = C;
            end
        end
        %// Convert to text
        text_back = char(text_back);

        %%// Display
        subplot(1,2,1);
        title('Original');
        imshow(imread('coins.png'));
        subplot(1,2,2);
        title('Steganography Result');
        imshow(I);
        disp(text_back);    
end
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...