以下の画像圧縮コードをmatlabで実行してみました。昨日までエラーなく正常に動作していました。しかし、今日実行しようとすると、未定義関数 imshow、wavedec2 などに関するエラーが発生しました。
エラー:
??? Undefined function or method 'wavedec2' for input arguments of type 'uint8'.
Error in ==> wave_project at 45
[c,s]=wavedec2(input_image,n,wname);
??? Undefined function or method 'imshow' for input arguments of type 'uint8'.
Error in ==> wave_project at 17
imshow(input_image);
手持ちのツールボックスをVERコマンドで調べてみたら画像処理ツールボックスが入っていた!
これは以前に私に起こったことがあります。しかし、プログラムはその後実行されました。
プログラム:
clear all;
close all;
input_imag7e1 = imread('101_1.tif');
input_image=imnoise(input_image1,'speckle',0.01);
figure;
imshow(input_image);
p=input('enter the number of vanishing moments of wavelett M ');
n=input('enter the decomposition level');
wname = strcat('db',int2str(p));
disp(wname);
[c,s]=wavedec2(input_image,n,wname);