- Neural Network Toolbox
- Computer Vision System Toolbox
Not able to access functions in Matlab 2018a
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
I am trying to evaluate the following MATLAB example:
multispectral-semantic-segmentation-using-deep-learning {URL : https://in.mathworks.com/help/images/multispectral-semantic-segmentation-using-deep-learning.html }
The example uses few functions such as downloadHamlinBeachMSIData, downloadTrainedUnet, switchChannelsToThirdPlane etc. which I am not able to find as inbuilt MATLAB / toolbox function.
I am using trial version of MATLAB 2018a.
0 comentarios
Respuestas (8)
Mounika Akula
el 8 de Mayo de 2018
Editada: Walter Roberson
el 4 de Mzo. de 2019
This example uses:
Do you have these toolboxes installed on your system? Check the output of the following command to see if they are installed
>> ver
Also, they mentioned in the documentation:
"The example shows how to train a U-Net network and also provides a pretrained U-Net network. If you choose to train the U-Net network, use of a CUDA-capable NVIDIA™ GPU with compute capability 3.0 or higher is highly recommended (requires Parallel Computing Toolbox™)."
Check for Parallel Computing Toolbox too.
Hope this helps!
Steven Lord
el 8 de Mayo de 2018
Those functions are helpers for the example and are mainly intended to be used by the example, not reused for general purposes. If you have the example open in the Live Editor you can right-click on the name of the helper function and open it if you want to read the code. However, because these are helpers rather than documented functions they may change or go away in future releases if the example changes.
asif raza
el 8 de Oct. de 2018
I have same problem , did anyone find the solution or can explain in detail how to solve this problem, please reply fast
0 comentarios
M. Mubashir Hussain
el 4 de Mzo. de 2019
I am unable to open this example in MATLAB. The Hepler functions like switchChannelsToThirdPlane are not visible in the example's text. Any help regarding how to implement the functionlaity of the helper functions? I tried to use reshape function for the functionality of switchChannelsToThirdPlane helper function but the resulting images given in the montage are not matching!
2 comentarios
Walter Roberson
el 4 de Mzo. de 2019
>> cd(matlabroot)
>> !find . -depth -name \*switchChannelsToThirdPlane\* -print
./examples/deeplearning_shared/main/switchChannelsToThirdPlane.m
./examples/images/main/switchChannelsToThirdPlane.m
However in R2018a it was only in examples/images and not deeplearning_shared -- but also for whatever reason R2018a has it exist as switchChannelsToThirdPlanes.m as well as switchChannelsToThirdPlane.m (no final 's')
M. Mubashir Hussain
el 4 de Mzo. de 2019
Thanks a lot for your kind guidance! Surely there was no way I could figure that out myself!
M. Mubashir Hussain
el 4 de Mzo. de 2019
Multiple deep learning examples like this one SemanticSegOfMultispectralImagesUsingDeepLearningExample is not accessible via Matlab. I even dont have the deeplearning_shared folder in the examples folder despite having the NN & Computer Vision Toolbox.
1 comentario
Walter Roberson
el 8 de Mayo de 2019
This situation could occur if you were using a version before R2019a. The examples for the deep learning toolbox were moved in R2019a. You should consult the documentation for the version you are using for information on how to invoke the examples in your version.
Mary O'Connor
el 3 de Abr. de 2019
I think this will solve the problem
%%
for i = 1:7
train_dataB(:,:,i) = train_data(i,:,:);
val_dataB(:,:,i) = val_data(i,:,:);
test_dataB(:,:,i) = test_data(i,:,:);
end
%% rename the data
train_data = train_dataB;
val_data = val_dataB;
test_data = test_dataB;
%% delete the duplicates
clear test_dataB;
clear val_dataB;
clear train_dataB
2 comentarios
Walter Roberson
el 8 de Mayo de 2019
Not in this particular situation, No. The issue in this Question has to do with functions to download sample data sets.
Lilly
el 8 de Sept. de 2022
Thanks! This worked for me for working through the example. I downloaded through the github repository then this code resolves reformatting the multispectral data for MATLAB.
laomo zhang
el 29 de En. de 2020
How are you? manish kalburgi , I want to know if you have solved the question. Can you tell me how to solve it ? thank you very much!
3 comentarios
laomo zhang
el 30 de En. de 2020
Hi,thanks for your comments. I am using trial version of MATLAB R2019B. I am trying to run the example“Semantic Segmentation of Multispectral Images Using Deep Learning”,the URL of the example is“https://ww2.mathworks.cn/help/images/multispectral-semantic-segmentation-using-deep-learning.html”
I can't run the downloadHamlinBeachMSIData helper function ,the mistake message is “'downloadHamlinBeachMSIData' 用于以下示例:
Code Generation for Semantic Segmentation Network by Using U-net
Semantic Segmentation of Multispectral Images Using Deep Learning”
Looking forward to your answer, thank you!
Walter Roberson
el 30 de En. de 2020
openExample('deeplearning_shared/SemanticSegOfMultispectralImagesUsingDeepLearningExample')
works for me in R2019b.
The original of the file is stored as examples/deeplearning_shared/main/downloadHamlinBeachMSIData.m relative to matlabroot()
Ver también
Categorías
Más información sobre Parallel and Cloud en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!