フィルターのクリア

Reducing lag caused by masked Simulink blocks

1 回表示 (過去 30 日間)
Craig
Craig 2013 年 1 月 14 日
Hi all,
I have a problem where the images (that are actually useful) rendered on Simulink blocks seem to lag Simulink in the sense that:
1. Scrolling through the model is grindingly slow.
2. When running the model it seems to force re-render all the mask images.
I use this method:
image(imread('useful_image.jpg'));
Does anyone know of a more efficient way of doing this?
Craig
  2 件のコメント
Kaustubha Govind
Kaustubha Govind 2013 年 1 月 14 日
Craig: Please contact MathWorks Tech Support for this question if you don't receive a response here. Thanks!
Ryan G
Ryan G 2013 年 1 月 14 日
How big are the image files?

サインインしてコメントする。

採用された回答

Guy Rouleau
Guy Rouleau 2013 年 1 月 14 日
One thing I like to do is storing the image data in the block user data.
I do not guarantee it will lead to great improvement, but it will save the call to IMREAD, replacing it by a get_param of the block user data.
It will make your model file bigger, but you will not need to carry image files anymore.
As Ryan point out, always make sure the size of the image reasonnable (you do not need 1024x768 pixels for a small block)

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeProgrammatic Model Editing についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by