Undefined function or variable 'denoisingNetwork'.

2 次查看(过去 30 天)
I used this code:
i=imread('abnormal2.jpg')
g=rgb2gray(i);
net = denoisingNetwork('DnCNN');
noisyI = imnoise(i,'gaussian',0,0.01);
figure
imshowpair(i,noisyI,'montage');
title('Original Image (left) and Noisy Image (right)')
denoisedI = denoiseImage(noisyI, net);
figure
imshow(denoisedI)
title('Denoised Image')
but i am getting "Undefined function or variable 'denoisingNetwork'." at line 3
i have installed the deep learning toolbox. using MATLAB R2016a

采纳的回答

Steven Lord
Steven Lord 2019-8-15
According to its documentation page denoisingNetwork was introduced in release R2017b. To use this you will need to upgrade to release R2017b or later.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Deep Learning for Image Processing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by