how to get co-efficient from an image

I have an image plz tell how to get co-efficient as output

댓글 수: 3

Walter Roberson
Walter Roberson 2012년 1월 2일
You will need to expand on your question. Which co-efficients are you referring to?
Consider that in the code
IMG = imread('lena256.tif');
then the array IMG could be termed to be the "coefficients" of the image.
FIR
FIR 2012년 1월 2일
Walter am getting numreric values as per ur comment in my previous question
I=imread('lena.bmp')
K=dec2bin(I);
[r c]=size(K)
J=K-0;
W=zeros(r,c);
J=K-W
i get numeric values
FIR
FIR 2012년 1월 2일
walter plz look at this picture
http://www.sendspace.com/file/rq0diw
i have completed till modified ebcot .plz tell how to get output bit stream

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

답변 (1개)

Walter Roberson
Walter Roberson 2012년 1월 2일

0 개 추천

K = dec2bin(I) - '0';
I did specifically say to subtract the character '0' not the number 0.

카테고리

도움말 센터File Exchange에서 Convert Image Type에 대해 자세히 알아보기

질문:

FIR
2012년 1월 2일

Community Treasure Hunt

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

Start Hunting!

Translated by