i am getting error ... ??? Undefined function or method
조회 수: 2 (최근 30일)
이전 댓글 표시
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
답변 (1개)
Jan
2018년 7월 15일
편집: Jan
2018년 7월 15일
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
참고 항목
카테고리
Help Center 및 File Exchange에서 Function Creation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!