Borrar filtros
Borrar filtros

Global variable python code simulink

7 visualizaciones (últimos 30 días)
jose daniel hoyos giraldo
jose daniel hoyos giraldo el 3 de Sept. de 2022
Comentada: jose daniel hoyos giraldo el 17 de Sept. de 2022
Hello everyone.
I'm trying to run a python code which uses a neural network in sumlink. It works using the "trick" of "coder.extrinsic" to use pyrunfile("testSimulink.py")
The problem is that this code loads a neural network to analyze an input image, so every time the block in simulink is called, it re loads the neural network, which is too slow for real time applications.
Do you think any idea how to keep the neural network loaded as a global variable or background in the python environment?
The extrinsinc function I'm running looks like:
function y = NNextrinsic(colored)
delete('own\*')
imwrite(colored,'own/myGray.png')
pyrunfile("testSimulink.py")
A = imread("test.png");
A = imresize(A, [720,1280]);
y = A;
And the simulink block is a MatlabFunction block which looks like:
function y = ANNDepth(colored)
z=uint8(ones(720,1280,3));
coder.extrinsic('NNextrinsic');
z=NNextrinsic(colored);
y = z;
Thanks!
  4 comentarios
Lucas García
Lucas García el 15 de Sept. de 2022
Editada: Lucas García el 15 de Sept. de 2022
Hi Jose Daniel,
Here is something you might be able to try. Inside your MATLAB Function Block, you may use pyrun to load the model but declare the variable as persistent. Something like:
persistent model;
if isempty(model)
model = pyrun(<Python code to load model>, 'model');
end
Then, you may pass the model variable to your Python script in pyrunfile.
Hope this helps.
Lucas
jose daniel hoyos giraldo
jose daniel hoyos giraldo el 17 de Sept. de 2022
That works! ty so much

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Call Python from MATLAB en Help Center y File Exchange.

Productos


Versión

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by