photo

anna ann


2016년부터 활동

Followers: 0   Following: 0

통계

MATLAB Answers

17 질문
0 답변

순위
38,765
of 300,857

평판
1

참여
17 질문
0 답변

답변 채택
5.88%

획득한 표
1

순위
 of 21,097

평판
N/A

평균 평점
0.00

참여
0 파일

다운로드 수
0

ALL TIME 다운로드 수
0

순위

of 171,361

참여
0 문제
0 답안

점수
0

배지 수
0

참여
0 게시물

참여
0 공개 채널

평균 평점

참여
0 하이라이트

평균 좋아요 수

  • Thankful Level 1

배지 보기

Feeds

보기 기준

질문


Calculation of psnr value in RGB image. I have calculated psnr using this code. But the result obtained is a complex number. What should be the error??
if true function PSNR = psnrgb(I,W) [m,n,p] = size(I); [h,w,q] = size(W); if m ~= h || n ~= w || p~=q error('...

거의 9년 전 | 답변 수: 1 | 0

1

답변

질문


Is there any encryption algorithm other than XOR , which works on bitwise??
I require an encryption algorithm for images such that it will operate bitwise on pixels. Xor is worked for it. Any other metho...

거의 9년 전 | 답변 수: 1 | 0

1

답변

질문


Uncompressed 512x512 image data base
Hi i am doing a RDH algorithm. Now some data base contains uncompressed images of size 512x512 is required.(eg: Boss base , PASC...

거의 9년 전 | 답변 수: 0 | 0

0

답변

질문


What are the parameters that can be used to find the most information carrying channel in color image??
Just like entropy what are other parameters which we can used to measure the information content in a color channel??

거의 9년 전 | 답변 수: 1 | 0

1

답변

질문


LSB substitution by verifying pixel values odd or even
for embedding a message b, keep the pixel value odd for bit 0 and even for bit 1. i have developed code in this manner. But outp...

거의 9년 전 | 답변 수: 0 | 0

0

답변

질문


color image encryption; I have tried this code for color image encryption. the same code is tried for decryption but error occurs,because dimension exceeds!!
I=double(imread('baboon .tiff')); randomSequence = round(rand(512,512)*255); % Encryption by bitxor with psuedo random ...

대략 9년 전 | 답변 수: 0 | 0

0

답변

질문


how can i modify this code to encrypt an image?what is an encryption key?how can i include this key to generate pseudo random sequence?
I=double(imread('filename')); [m n]=size(I); for i=1:m for j=1:n r=randi(m,n,255) end end p=xor(I,r)

대략 9년 전 | 답변 수: 0 | 0

0

답변

질문


How a pseudo random sequence r of size equals to a given image can be created using a key to encrypt the image??
<</matlabcentral/answers/uploaded_files/63367/matwork.JPG>>

대략 9년 전 | 답변 수: 0 | 0

0

답변

질문


what is the difference between zero and peak point in a histogram
histogram shift method

대략 9년 전 | 답변 수: 1 | 0

1

답변

질문


sparse representation of colour image
How colour image can represented using patch level sparse representation??Is there any matlab code available??

대략 9년 전 | 답변 수: 0 | 0

0

답변

질문


reversible data hiding in encrypted colour image
Someone plz send matlab code for reversible data hiding in encrypted colour images!!

대략 9년 전 | 답변 수: 0 | 0

0

답변

질문


color image can be divided into individual color channels. if i give a gray input to the same program what will be the output??
a=imread(a.jpg) R=a(:,:,1) G=a(:,:,2) B=a(:,:,3) %if a= a gray image what will happen??

대략 9년 전 | 답변 수: 1 | 0

1

답변

질문


what is lsb planes of an image and what is its significance?
im = imread('pout.tif'); bit1 = bitget(im, 1); % lsb for example imshow(bit1, []

대략 9년 전 | 답변 수: 1 | 1

1

답변