You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The image class storage uses multi dimensional array to store possible frames. This must be simplified to only use one dimension and find frame (or other dimension) data according to input dimensions. That way frames are only used when necessary.
Allocating the full array at startup may be preferable instead of the current per slice allocation (similar spirit as #569). Simplifying code to facilitate garbage collection of slice data could also help.
The text was updated successfully, but these errors were encountered:
The image class storage uses multi dimensional array to store possible frames. This must be simplified to only use one dimension and find frame (or other dimension) data according to input dimensions. That way frames are only used when necessary.
Allocating the full array at startup may be preferable instead of the current per slice allocation (similar spirit as #569). Simplifying code to facilitate garbage collection of slice data could also help.
The text was updated successfully, but these errors were encountered: