i am getting error ... ??? Undefined function or method
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
image=im2double(imread('C:\s01_01','jpg'));
j=rgb2gray(image);
A= histeq(j);
B = imresize(A, [150 130]);
cr=fdct_wrapping(B,1,1,3,16);
img =cr{1}{1};
??? Undefined function or method 'fdct_wrapping' for input arguments of type 'double'.
Error in ==> resize at 5
cr=fdct_wrapping(B,1,1,3,16);
0 Commenti
Risposte (1)
Jan
il 15 Lug 2018
Modificato: Jan
il 15 Lug 2018
This means, that the file fdct_wrapping.m is not found in your Matlab path. I guess you have either forgotten to install the required toolbox, or to add it to your path. See:
doc addpath
doc pathtool
fdct_wrapping migth belong to https://www.mathworks.com/matlabcentral/fileexchange/5104-toolbox-wavelets .
0 Commenti
Vedere anche
Categorie
Scopri di più su Function Creation in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!