We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Algorithm:
with TemporaryDirectory() as tmpdir, local.cwd(tmpdir): tmpdir= local.path(tmpdir) # dwi is a local.path object copy(dwi, tmpdir) with open('caselist.txt', 'w') as f: f.write(pjoin(tmpdir, dwi.basename)) # subprocess call # obtain model_dir from config file dwi_masking.py -i caselist.txt -f model_dir prefix= dwi.basename.split('.nii')[0] mv dwib0_{prefix}-multi_BrainMask.nii.gz, dwi.dirname
The above can be inserted here checking mask_method.lower()=='cnn' condition.
mask_method.lower()=='cnn'
The text was updated successfully, but these errors were encountered:
CnnMask task accepts dwi, on the other hand BseBetMask task accepts bse. This discrepancy is a challenge for integrating both methods.
CnnMask
BseBetMask
A way around can be modifying CNN masking tool to accept bse.
Sorry, something went wrong.
New flowcharts:
cc @sbouix
tashrifbillah
No branches or pull requests
Algorithm:
The above can be inserted here checking
mask_method.lower()=='cnn'
condition.The text was updated successfully, but these errors were encountered: