Undefined function 'imgaussfilt' for input arguments of type 'uint8'.
Show older comments
this is the code, using matlab 2013b
>> I= imread('cameraman.tif');
>> Iblur1 = imgaussfilt(I,2);
Undefined function 'imgaussfilt' for input arguments of type
'uint8'.
i do not know where is the problem
Answers (1)
Walter Roberson
on 18 Aug 2015
0 votes
"Introduced in R2015a"
2 Comments
Isra Zaitoun
on 29 Aug 2015
Walter Roberson
on 29 Aug 2015
As I pointed out, imgaussfilt was introduced in R2015a. Therefore it did not exist in R2013b. There is no imgaussfilt available for R2013b unless you care to write your own routine by that name.
Solution: you should upgrade your MATLAB.
Categories
Find more on Digital Filtering in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!