yeatmanlab / pyAFQ

Automated Fiber Quantification ... in Python
http://yeatmanlab.github.io/pyAFQ/
BSD 2-Clause "Simplified" License
56 stars 34 forks source link

[FIX] Update fetch.py with pediatric ARC ROI mapping #1143

Closed chiuhoward closed 4 months ago

chiuhoward commented 4 months ago

Current mapping is: ARC include0 = SLF include0 ARC include1 = SLF exclude0 ARC include2 = SLF include1

This results in premature clipping of the ARC as ARC include2 is between ARC include0 and ARC include1.

Swapping the mapping ensures that ARC is clipped correctly by redefining the ROIs mapped from the SLF.

Before image

After image

chiuhoward commented 4 months ago

New mapping would therefore be:

ARC include0 = SLF include0
ARC include1 = SLF include1 ARC include2 = SLF exclude0

image

36000 commented 4 months ago

LGTM!