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
I try to access the Series Name of the images.
I can view the Series name via ImageJ
The documentation recommends this code:
for image in new.get_iter_image(): for frame in image.get_iter_t(): frame.image_info['name']
Running the code results into a AttributeError: 'Image' object has no attribute 'image_info'
AttributeError: 'Image' object has no attribute 'image_info'
How can I access the name of my Image Series?
The text was updated successfully, but these errors were encountered:
Sorry I just found a solution: The series name can be accessed via: image.info['name']
image.info['name']
I'm not sure if you want to update the doc or if this is relevant for anybody else. If not we can close this issue.
Sorry, something went wrong.
No branches or pull requests
I try to access the Series Name of the images.
I can view the Series name via ImageJ
The documentation recommends this code:
Running the code results into a
AttributeError: 'Image' object has no attribute 'image_info'
How can I access the name of my Image Series?
The text was updated successfully, but these errors were encountered: