how to display the image

조회 수: 1 (최근 30일)
nkumar
nkumar 2013년 6월 27일
I have downloaded the SPHIT code and i displayed a frame from a video which ins i avi format
clc
clear all
nFrame=1;
filename=('rhinos.avi');
Y_new = SPIHT_main(nFrame,filename)
imshow(Y_new)
but the image is not displayed clearly it just consists of white and black
please tell how to display the image

답변 (1개)

Walter Roberson
Walter Roberson 2013년 6월 27일
Experiment with
imshow(Y_new,[])
  댓글 수: 3
Walter Roberson
Walter Roberson 2013년 6월 27일
Please show
class(Y_new)
max(Y_new(:))
min(Y_new(:))
nkumar
nkumar 2013년 6월 27일
class(Y_new)=double
max(Y_new(:))= 240.0000
min(Y_new(:))= -7.6415e-11

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by