How to load trained R-CNN model to SIMULINK

22 visualizaciones (últimos 30 días)
Khai Hong Chin
Khai Hong Chin el 10 de Dic. de 2016
Comentada: David Willingham el 18 de Oct. de 2021
Below is the MATLAB code that I used to train my R-CNN Object Detector
rcnn = trainRCNNObjectDetector(ROI, cifar10Net, options, ...
'NegativeOverlapRange', [0 0.3], 'PositiveOverlapRange',[0.5 1])
save('C:\Users\PC1\Desktop\rcnn_Model_2.mat','rcnn');
Now my problem is the blocks like 'from File' in SIMULINK can not take any MAT file that are not timeseries object.
Below in the data format that I saved using the codes above,
Name Size Bytes Class Attributes
rcnn 1x1 482631 rcnnObjectDetector
Below is the properties of the model after being loaded,
rcnn =
rcnnObjectDetector with properties:
Network: [1×1 SeriesNetwork]
ClassNames: {'Left' 'Stop' 'Go' 'Right' 'Background'}
RegionProposalFcn: @rcnnObjectDetector.proposeRegions
So, is that any possible way to import the trained network to SIMULINK?

Respuesta aceptada

David Willingham
David Willingham el 18 de Oct. de 2021
As of R2021b, you can simulate and generate code for deep learning object detectors in Simulink®. The Analysis & Enhancement block library from Computer Vision Toolbox™ now includes the Deep Learning Object Detector (Computer Vision Toolbox) block. This block predicts bounding boxes, class labels, and scores for the input image data by using a specified trained object detector. This block enables you to load a pretrained object detector into the Simulink model from a MAT file or a MATLAB function.
For more information about working with the Deep Learning Object Detector block, see Lane and Vehicle Detection in Simulink Using Deep Learning. To learn more about using deep learning with Simulink, see Deep Learning with Simulink.
  2 comentarios
Muhammad Faisal Khalid
Muhammad Faisal Khalid el 18 de Oct. de 2021
whats about the LSTM neural network. i have lstm model (time series equence) which i want to load in my simulink model.
how can i proceed with it.
i have seen the lane and vehicle detection in simulink by deep learning. when i assign my model in mat file, it gives error that there is no time series data.
David Willingham
David Willingham el 18 de Oct. de 2021
You can use the Stateful predict, or Stateful classify to for using a trained LSTM with Simulink
Here are some links:

Iniciar sesión para comentar.

Más respuestas (5)

Walter Roberson
Walter Roberson el 11 de Dic. de 2016
You could possibly create a Simulink bus object with custom signals. However, I find no evidence that Simulink has any cnn related blocks, so you would have to be doing everything opaquely though a MATLAB Function Block or Level 2 MATLAB function. I suspect that it would not be possible to use it with any accelation mode other than "normal" or "accelerated" (using coder.extrinsic), not rapid accelation or code generation. I have not cross-checked that limitation though.
  2 comentarios
Khai Hong Chin
Khai Hong Chin el 11 de Dic. de 2016
I did tried to use MATLAB Function block in order to load the trained model with codes shown below.
function y = fcn
y=load('C:\Users\Acer\Desktop\Progress 18-11\rcnn_Model_2.mat');
y=y.rcnn
end
However, the diagnostic report showed the following error
Found unsupported class for variable using function 'load'.
MATLAB class 'rcnnObjectDetector' found at 'y.rcnn' is unsupported.
Walter Roberson
Walter Roberson el 11 de Dic. de 2016
Nothing in the Neural Network Toolbox is supported by Simulink Coder http://www.mathworks.com/help/simulink/ug/functions-supported-for-code-generation--alphabetical-list.html; not much of the Neural Network Toolbox is supported for MATLAB Compiler; https://www.mathworks.com/products/compiler/supported/compiler_support.html. For MATLAB Coder https://www.mathworks.com/help/coder/ug/functions-supported-for-code-generation--categorical-list.html#buimyq3 see https://www.mathworks.com/help/nnet/ug/deploy-neural-network-functions-and-objects.html which will point you to genFunction which will generate code to deploy an already-trained Neural Network.

Iniciar sesión para comentar.


De M
De M el 9 de Mayo de 2019
Me too

michael bronnmann
michael bronnmann el 21 de Ag. de 2019
Any news on this topic? I have a similar topic to use a trained model in Simulink. Has anyone an idea how to export the net to e.g. c++ for use within a sfunction?

Jonathan Akorli
Jonathan Akorli el 10 de Mzo. de 2020
Try using a MATLAB Interpreted function. You may have to use mapminmax to map the function block but its worth a try
  1 comentario
michael bronnmann
michael bronnmann el 11 de Mzo. de 2020
Thanks for your answer. In the meanwhile I took a MATLAB Fcn block for "Shallow Neural Networks". They can be exported to either a m-function or a Simulink model.
Unfortunately there's no conversion possible from a Deep Neural Network.

Iniciar sesión para comentar.


Cesar García Echeverry
Cesar García Echeverry el 29 de Jun. de 2021
Did you solved the problem? i want to load a .net from Matlab to Simulink, but i'm having the same problem.
Regrads
  1 comentario
Muhammad Faisal Khalid
Muhammad Faisal Khalid el 16 de Oct. de 2021
did u find the solution as i am also facing same problem

Iniciar sesión para comentar.

Categorías

Más información sobre Deep Learning with GPU Coder 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!

Translated by