You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm running scil_evaluate_bundles_individual_measures.py, scil_compute_bundle_volume.py and the last version of tractometry_flow (a42d1d7) inside a scilpy 1.6.0 container.
I tested it with the AF_R bundle from HCP 100206.
scil_evaluate_bundles_individual_measures.py
"volume": [
70150.390625
],
scil_compute_bundle_volume.py
{
"100206__AF_R": {
"volume": 70150.390625
}
}
tractometry_flow
"100206": {
"AF_R": {
"volume": 69072.265625
}
}
Is there a reason for this difference?
The text was updated successfully, but these errors were encountered:
Yes, it is normal. To increase consistency, code in the script scripts/scil_compute_bundle_voxel_label_map.py ensures that a bundle is contiguous (no isolated voxels in the binary mask). Due to edge cases in the computation (in low-density areas, close to endpoints in fanning regions), some voxels are considered isolated (not touching the main bundle).
This result is mostly explainable because the function ndi.label uses a flood fill based using a cross structure (6 neighbors) rather than a ball structure (26 neighbors). @arnaudbore what do you think?
Hi,
I'm running
scil_evaluate_bundles_individual_measures.py
,scil_compute_bundle_volume.py
and the last version of tractometry_flow (a42d1d7
) inside a scilpy 1.6.0 container.I tested it with the AF_R bundle from HCP 100206.
scil_evaluate_bundles_individual_measures.py
scil_compute_bundle_volume.py
tractometry_flow
Is there a reason for this difference?
The text was updated successfully, but these errors were encountered: