-
Notifications
You must be signed in to change notification settings - Fork 10
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
Eisen trasformation #3
Comments
I don't know if I understand correctly... you would like to dump your data to disk right after it gets transformed (pre-processed). You can do that by creating a new transformation:
|
Of course this additional transform that dumps data to disk might not have exactly this form. But one instance of this object could be part of the transform chain and therefore save copied of data on the disk. |
thanks so much!! I make some confusion I'm interested to use the data normalizated from you tool for extract radiomics. So, I wan to integrate deep learning model with radiomics. I just wondering how to save the data after trasformation on nifty format. I have tried this code:
I miss something .. how can save? |
you would need to write one more transformation which DumpsAsNifti. Right now DumpAsNumpy will dump files into the ./tmp folder (not into /tmp, because you didn't specify '/tmp' but 'tmp/' instead) in numpy format. |
I would like to save my input after normalization and resize as numpy. What is the procedure?
thanks so much!!
The text was updated successfully, but these errors were encountered: