Documentation suggests that argument is image_names instead of image_name. Using OmeTiffWriter.save(image_names=[str]) silently saves the data without saving the argument to the ome metadata. This fixes updates the documentation so users instead use OmeTiffWriter.save(image_name=[str]) to avoid this issue.
Link to Relevant Issue
This pull request resolves #
Description of Changes
Documentation suggests that argument is
image_names
instead ofimage_name
. UsingOmeTiffWriter.save(image_names=[str])
silently saves the data without saving the argument to the ome metadata. This fixes updates the documentation so users instead useOmeTiffWriter.save(image_name=[str])
to avoid this issue.