-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
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
adding 2D data to hdf5 container #20
Comments
wait.... could be a mistake on my side. Sorry... But I found another issue with 2D data (now individual image)
This used to work before... |
I provide it as tuple (I think I saw that somewhere in your code...):
If I provide is as list/array:
I get:
|
OK, I think I fixed my tile issue from above. But now...
Which one creates the problem? |
This happens if you write a new set-up with an attribute name that has not been added to the xml before. Otherwise, set-ups would have different attributes, which might leave to undefined behaviour. |
Is there any way that allows me to create a new XML with pybdv without re-writing the h5? Assume we have a giant data set like the platy. Now we want to generate a new metadata XML that contains the |
Something like "force-metadata" or "renew-metadata".... It will completely ignore what already exists and just write the metadata for the given ViewSetup. Obviously it cannot check that the ViewSetups written to the XML will correspond to the data container, but this would be up to the user. To be on the safe side, it could maybe even create a backup of the original XML file before creating the new one. |
Or it would do that if there is no original xml file (manually removed/renamed)... |
Back to the original problem: Now I have a proper h5 and xml and now when I call
|
The problem is that this can bring attributes for different set-ups out of sync. |
I think the problem is that you are passing the I will change the line to
to allow for both again. |
OK,
|
I see, yeah that's an issue in the code (it muse be I will fix it and let you know once the fix is there. |
Ok, both issues should be fixed now. |
Hi,
it seems that with the current 2D implementation something goes wrong when I add multiple 2D datasets into one hdf5. In this case this is tiles of a mosaic.
It looks like it is adding the different images as slices in a single 3D stack container instead of creating individual data cells...
This worked correctly with the previous version.
The text was updated successfully, but these errors were encountered: