Clear Filters
Clear Filters

I am getting "Unable to resolve the name 'CNN.parse'" error. when I am trying to produce results of CAV_2020 Image star. I installed computer vision and deep learning tool box

2 views (last 30 days)
load images.mat;
load('Small_ConvNet.mat');
nnvNet = CNN.parse(net, 'Small_ConvNet');
% Note: label = 1 --> digit 0
% label = 2 --> digit 1
% ...
% label = 10 --> digit 9
% computing reachable set
IM = IM_data(:,:,1);

Answers (1)

Walter Roberson
Walter Roberson on 4 May 2024
MATLAB does not have any function or package named CNN .
It appears that you are expecting CNN to be loaded as part of Small_ConvNet.mat but that it is not there.

Categories

Find more on Recognition, Object Detection, and Semantic Segmentation 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!