AFNI Message Board

Dear AFNI users-

We are very pleased to announce that the new AFNI Message Board framework is up! Please join us at:

https://discuss.afni.nimh.nih.gov

Existing user accounts have been migrated, so returning users can login by requesting a password reset. New users can create accounts, as well, through a standard account creation process. Please note that these setup emails might initially go to spam folders (esp. for NIH users!), so please check those locations in the beginning.

The current Message Board discussion threads have been migrated to the new framework. The current Message Board will remain visible, but read-only, for a little while.

Sincerely, AFNI HQ

History of AFNI updates  

|
January 15, 2014 06:45AM
ziad Wrote:
-------------------------------------------------------
> There are no tools to do this at the moment.
> However one way to do this is to consider a
> standard mesh with a low number of subdivisions.
> For instance, if you want about 4000 nodes over
> the whole hemisphere, you can create standard
> meshes with ld20 and then use the nodes from the
> low res mesh to place the seeds on the high-res
> surface mesh.

In addition to Ziad's useful comments:
- if you use ldL and ldH for low- and high-res surfaces, the mapping from L to H becomes very easy if H is a multiple of L as the coordinates in L have an almost perfect match to a subset of the coordinates of H.
- in the PyMVPA developer version (github.com/PyMVPA/PyMVPA) there is support to compute such a mapping in Python:

from mvpa2.suite import *
surf_low=surf.from_any('ico16.asc')
surf_high=surf.from_any('ico64.asc')
low2high=surf_low.map_to_high_resolution_surf(surf_high)

for node_low, node_high in low2high.iteritems():
print "%s -> %s" % (node_low, node_high)
Subject Author Posted

Define Uniformly spaced ROIs on surface

Mahshid January 14, 2014 10:58AM

Re: Define Uniformly spaced ROIs on surface

ziad January 14, 2014 04:19PM

Re: Define Uniformly spaced ROIs on surface

ziad January 14, 2014 05:09PM

Re: Define Uniformly spaced ROIs on surface

Mahshid January 16, 2014 11:38AM

Re: Define Uniformly spaced ROIs on surface

ziad January 17, 2014 09:26AM

Re: Define Uniformly spaced ROIs on surface

Mahshid January 17, 2014 02:10PM

Re: Define Uniformly spaced ROIs on surface

nick January 15, 2014 06:45AM

Re: Define Uniformly spaced ROIs on surface

donna.dierker January 15, 2014 09:55AM

Re: Define Uniformly spaced ROIs on surface

Mahshid January 22, 2014 03:01PM