We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
in N5OMEZarrImageLoader.prepareCachedImage
N5OMEZarrImageLoader.prepareCachedImage
there is final DatasetAttributes attributes = getDatasetAttributes(pathName);
final DatasetAttributes attributes = getDatasetAttributes(pathName);
and then in createCacheArrayLoader(), which is called within that function, it seems that the attributes are read again.
createCacheArrayLoader()
could we just pass them as an argument?!
The text was updated successfully, but these errors were encountered:
In fact, it seems as if getDatasetAttributes(pathName) could be in general called much less often. Can we cache the result, e.g. for each pathName?
getDatasetAttributes(pathName)
pathName
Sorry, something went wrong.
KateMoreva
No branches or pull requests
in
N5OMEZarrImageLoader.prepareCachedImage
there is
final DatasetAttributes attributes = getDatasetAttributes(pathName);
and then in
createCacheArrayLoader()
, which is called within that function, it seems that the attributes are read again.could we just pass them as an argument?!
The text was updated successfully, but these errors were encountered: