-
Hi, I have tried to use a pipeline from the fast pathology datahub (breast epithelium segmentation) with png-images from a public dataset that are not pyramidal. I edited the pipeline instead of using it out of the box, and used ImageImporter and ImageExporter:
But i get an error on the ImageExporter():
Do you know why the export is problematic, and if there is a possible solution to it? I have used inputs to this model before which were not vsis, but images made with fast.Image.createFromArray(). If I convert to numpy, then create a fast image with it I get the exact same error. Other exporters also yield the same error. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi. I believe this error is coming from TissueSegmentation which expects an ImagePyramid. You can verify that by removing it. I will add a small fix to TissueSegmentation which makes it support regular images as well. |
Beta Was this translation helpful? Give feedback.
Hi. I believe this error is coming from TissueSegmentation which expects an ImagePyramid. You can verify that by removing it.
I will add a small fix to TissueSegmentation which makes it support regular images as well.