-
Notifications
You must be signed in to change notification settings - Fork 13
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
Header fix #69
Comments
I would favor flexibility, in a similar way as the proposition in #49: it's OK that the library performs automatic header fixing, so long as it's either opt-in (disabled by default) or opt-out (enabled by default), and that such fixes are made clear in the documentation. It does seem to be a good use case for an Options pattern as well. |
Can you explain or give me a link explaining what's the |
Sure, it amounts to representing the options of an operation as a struct instead of function parameters. As the same "options" value is used to perform the operation, this would be an adapted form of the builder pattern. The struct would be something like this: struct ReaderOptions {
/// whether to automatically fix value in the header
fix_header: bool,
} With the right implementation so that it can be used like this: let obj = ReaderOptions::new()
.fix_header(false)
.open_file("my/file.nii.gz")?; All methods are optional, and the method fn open_file<P>(path: P) -> Result<InMemNiftiObject>
where
P: AsRef<Path>,
{
ReaderOptions::new().open_file(path)
} A good example in the std library is |
Ok, I thought that this Ok, I'll code that. To avoid changing everything though, I'll simply call the existing tools when creating |
Ok, there are some things I'm unsure how to do. I can make it work, of course, but you probably have a vision on how it would look like if you wrote it. Will this I wrote this class in
If |
This would not be the only way to construct the object, but it would ultimately be easier to use. The terminal option methods would then take care of passing the options to the implementation. Regarding the existence of multiple object implementations, I believe this is best handled by using the same options struct while providing multiple terminal methods (pseudocode):
One other option would be creating independent option structs. Please let me know if you need more assistance. |
Resolved with #70. |
There are several automatic fixes done on the header in NiBabel. I don't think it's relevant to have them all. IMO, fixing the magic number is wrong, but some may disagree.
I would add
_chk_qfac
because one Nifti I have crashes with nifiti-rs when I ask for the qform affine becausepixdim[0] == 0.0
. It works with NiBabel. I could fix it in all my outside tools, but I think it should be fixed here.But maybe we're against all automatic fixes? What's your opinion on this?
The text was updated successfully, but these errors were encountered: