I want a differential pulse code modulation(DPCM) matlab code for images

조회 수: 5 (최근 30일)
tina jain
tina jain 2015년 5월 23일
댓글: Walter Roberson 2015년 5월 23일
how to apply DPCM on images

답변 (1개)

Walter Roberson
Walter Roberson 2015년 5월 23일
You can reshape() the image array into a vector in order to create a "signal" that you apply DPCM to. It might not be very effective, but if someone promised that DPCM is useful for images then you should write the code to follow their algorithm.
  댓글 수: 3
tina jain
tina jain 2015년 5월 23일
편집: Walter Roberson 2015년 5월 23일
see Walter sir, I used the code below
close all;
clear all;
clc;
predictor = [0 1]; % y(k)=x(k-1)
partition = [-1:.1:.9];
codebook = [-1:.1:1];
y=imread('lena256.bmp');
y=double(y);
x = y(:);
t = linspace(1, 2*pi, length(x));
% Quantize x using DPCM.
encodedx = dpcmenco(x,codebook,partition,predictor);
% Try to recover x from the modulated signal.
decodedx = dpcmdeco(encodedx,codebook,predictor);
plot(t,x,t,decodedx,'--')
xx =decodedx(:);
[psnrtest]=psnr(x,xx)
legend('Original signal','Decoded signal','Location','NorthOutside');
is it ok?
PSNR is only 15
Walter Roberson
Walter Roberson 2015년 5월 23일
Shrug. I am not expecting a good PSNR for arbitrarily chosen codebook and partitions and arbitrary reordering of the image into a signal.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Source Coding에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by