-
Notifications
You must be signed in to change notification settings - Fork 58
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
RIM_ONE_v3.hdf5 and all_data.hdf5 need how to generate it #4
Comments
@2017john, HDF5 datasets can be recreated with scripts/Organize datasets.ipynb notebook. Nevertheless, I have uploaded all the datasets here. |
@seva100 Thank you. |
Hey @seva100 I am facing a similar issue in this particular line |
@Geeks-Sid |
@seva100 Hey, Can you explain how to create a union of all the datasets? |
@Geeks-Sid you can just copy items from all the datasets by something like this: import h5py
h5f_in = h5py.File("DRIONS-DB.hdf5", "r")
h5f_out = h5py.File("all_data.hdf5", "w")
h5f_out['DRIONS-DB/orig/images'] = h5f_in['DRIONS-DB/orig/images']
... # copy all other items
h5f_in.close()
h5f_out.close() Or you can recreate it with scripts/Organize datasets.ipynb notebook. |
RIM_ONE_v3.hdf5 and all_data.hdf5 need how to generate it, what are the requirements?
The text was updated successfully, but these errors were encountered: