LSB Steganography: A technique to Hide Message in An Image with MatLab Code (in Description)- Hindi
Step. 1:Write your name in Paint Program and save this file as “Secret.jpg’ Step. 2:include your Photo( . jpg ) in this folder Step. 3: %% Save this F...
🔥 Related Trending Topics
LIVE TRENDSThis video may be related to current global trending topics. Click any trend to explore more videos about what's hot right now!
THIS VIDEO IS TRENDING!
This video is currently trending in Thailand under the topic 'สภาพอากาศ'.
About this video
Step. 1:Write your name in Paint Program and save this file as “Secret.jpg’
Step. 2:include your Photo( . jpg ) in this folder
Step. 3:
%% Save this File as “Conceal.m”
%% Import the Actual Image
%% You must include your Image and replace the name of image ‘shah.jpg’ with yours
Actual = imread('shah.jpg');
figure,imshow(Actual);title('Actual Image')
%% Import the Secret_Msg Image and converting to Binary Image
Secret_Msg = imread('Secret.jpg');
Msg_binary = imbinarize(rgb2gray(Secret_Msg));
%% Resizing the Secret_Msg and Actual image to same size
Msg_binary = imresize(Msg_binary,size(Actual(:,:,1)));
%% Selecting 1-bit plane and changing it to Secret_Msg image
New = Actual;
New(:,:,1) = bitset(New(:,:,1),1,Msg_binary);
%% Displaying Concealed Image
figure,imshow(New);title('Concealed Image')
%% Displaying Actual Image And Concealed Image
figure,imshowpair(Actual,New,'montage');title('Actual Image And Concealed Image ---Read from left to right')
%% Saving/writing the Concealed Image file
imwrite(New,'ConcealedImg.bmp');
% clear all;
----------------------------------------------------
Step 4: Save another code file as “GetMsg.m”
%% Importing the Received image with Secret Message
Recieved_Img = imread('ConcealedImg.bmp');
%% Displaying the Concealed Image i.e. Received image with (Hidden)Secret Message
figure,imshow(Recieved_Img);title('Consealed Image')
%% Extracting the 1-bit bitPlane of the Recieved Image(Concealed Image) with hidden Messsage
MessageImage = bitget(Recieved_Img(:,:,1),1);
%% Displaying the Secret Message
figure,imshow(logical(MessageImage));title('Secret Message')
Video Information
Views
356
Total views since publication
Likes
13
User likes and reactions
Duration
2:58
Video length
Published
Jan 9, 2022
Release date
Quality
hd
Video definition
About the Channel
Tags and Topics
This video is tagged with the following topics. Click any tag to explore more related content and discover similar videos:
#cs #LSB Steganography #Concealing message in an image #Consealing message in a photo #steganography using LSB #steganography using LSB technique #LSB-1 steganography #Definition of Steganography #what is Steganography #example of Steganography #examples of Steganography #understanding Steganography #Steganography with example #Steganography with examples #internetwork engineer #steganography in hindi #steganography in urdu #LSB Steganography with Matlab code
Tags help categorize content and make it easier to find related videos. Browse our collection to discover more content in these categories.