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 believe the only two inputs to the extract_fundi() function that need to be addressed to accomplish your task are folds and depth_file.
To generate gyral crowns instead of sulci, I believe you would simply change the following line in the extract_folds() function from: indices_deep = [i for i,x in enumerate(depths) if x >= depth_threshold]
to: indices_deep = [i for i,x in enumerate(depths) if x < depth_threshold]
To generate crown lines instead of fundi, you might be able to get away with simply reversing the depths (depth values) in the extract_fundi() function.
Hi,
This is a request. Perhaps the fundi script can somehow be tweaked to achieve this. If anybody has pointers let me know.
Thnx
The text was updated successfully, but these errors were encountered: