Undefined function or variable 'denoisingNetwork'.

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일

0 개 추천

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개)

카테고리

도움말 센터File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

질문:

2019년 8월 15일

답변:

2019년 8월 15일

Community Treasure Hunt

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

Start Hunting!

Translated by