Sanjeeb Behera
Followers: 0 Following: 0
Statistics
14 Questions
0 Answers
RANK
273,904
of 295,486
REPUTATION
0
CONTRIBUTIONS
14 Questions
0 Answers
ANSWER ACCEPTANCE
7.14%
VOTES RECEIVED
0
RANK
of 20,236
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 153,950
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
What are the techniques for comparing two images?
Hi I want to compare two images in between original image and stego image in matlab. I have used PSNR and MSE. Can anyone sugg...
8 years ago | 1 answer | 0
1
answerQuestion
Text file compression using huffman compression?
Hi I have used existing code for text file compression using huffman encoding. Here i have mentioned below from where i have us...
8 years ago | 0 answers | 0
0
answersQuestion
How can i compress the text file using huffman encoding?
Hi I am using a text file to hide inside an image file in lsb plane. But i want to compress the text file using huffman enco...
8 years ago | 4 answers | 0
4
answersQuestion
How can i compress text file using huffman encoding and decoding?
Hi I am going to use text file compression in my project. So can anybody help in this regard. I have inbuild huffman.m matlab ...
8 years ago | 0 answers | 0
0
answersQuestion
Can u solve this error?
n=size(I); M=n(1); N=n(2); MSE = sum(sum((I-II).^2.0))/(M*N); PSNR = 10*log10(256*256/MSE); fprintf('\nMSE: %7....
8 years ago | 1 answer | 0
1
answerQuestion
How can i extract the hidden message from 1st, 2nd and 3rd bit plane of cover image and store in another text file?
fp = fopen('C:\Users\hello\Documents\MATLAB\Full RSA Implement\plaintext.txt','r+'); SecretMsg=fread(fp,256*256*3/8); f...
8 years ago | 1 answer | 0
1
answerQuestion
how can i use fwrite?
Hi During execution i m getting the out put in the command window. But i want to write in another text file which is already p...
8 years ago | 1 answer | 0
1
answerQuestion
Can i do encryption and decryption of text file using RSA?
Can any one help me, to encrypt and decrypt text file using RSA? The text file contains huge amount of data But i have done ...
8 years ago | 1 answer | 0
1
answerQuestion
How can I encrypt a text file using RSA?
I have done encryption of text message using RSA. But i want to encrypt text file using RSA. m=input('\nEnter the message:...
8 years ago | 1 answer | 0
1
answerQuestion
Can any one help be to debug it?
fp = fopen('C:\Users\hello\Documents\MATLAB\Full RSA Implement\plaintext.txt','r+'); SecretMsg=fread(fp,256*256*3/8); f...
8 years ago | 1 answer | 0
1
answerQuestion
How can i read a text file?
Hi I am using rsa encryption of text message. During read of a message I want to read a text file? How can I read? Can u te...
8 years ago | 1 answer | 0
1
answerQuestion
text hiding inside the cover image
I1 = logical(de2bi(uint8(hiddenstring))); II = I8*128+I7*64+I6*32+I5*16+I4*8+I3*4+I2*2+I1; ??? Error using ==> p...
8 years ago | 2 answers | 0
2
answersQuestion
How can i hide the text in cover image.
Here i have hiddenstring = 'string' that i going to hide in the 1st bit plane of cover image I1 = dec2bin(uint8(hiddenstring...
8 years ago | 0 answers | 0
0
answersQuestion
how can i hide a text message in the lsb plane of cover image?
how can i hide a text message in the lsb plane of cover image?
8 years ago | 2 answers | 0