Source code for tvb.datatypes.region_mapping
# -*- coding: utf-8 -*-
#
#
# TheVirtualBrain-Scientific Package. This package holds all simulators, and
# analysers necessary to run brain-simulations. You can use it stand alone or
# in conjunction with TheVirtualBrain-Framework Package. See content of the
# documentation-folder for more details. See also http://www.thevirtualbrain.org
#
# (c) 2012-2023, Baycrest Centre for Geriatric Care ("Baycrest") and others
#
# This program is free software: you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software Foundation,
# either version 3 of the License, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the GNU General Public License for more details.
# You should have received a copy of the GNU General Public License along with this
# program. If not, see <http://www.gnu.org/licenses/>.
#
#
# CITATION:
# When using The Virtual Brain for scientific publications, please cite it as explained here:
# https://www.thevirtualbrain.org/tvb/zwei/neuroscience-publications
#
#
"""
DataTypes for mapping some TVB DataTypes to a Connectivity (regions).
In FreeSurfer terms, a RegionMapping is a parcellation and a VolumeMapping is a segmentation.
.. moduleauthor:: Lia Domide <lia.domide@codemart.ro>
.. moduleauthor:: Mihai Andrei <mihai.andrei@codemart.ro>
"""
import numpy
from tvb.basic.readers import try_get_absolute_path, FileReader
from tvb.datatypes.connectivity import Connectivity
from tvb.datatypes.surfaces import Surface
from tvb.datatypes.volumes import Volume
from tvb.basic.neotraits.api import HasTraits, Attr, NArray
[docs]class RegionMapping(HasTraits):
"""
An array (of length Surface.vertices). Each value is representing the index in Connectivity regions
to which the current vertex is mapped.
"""
array_data = NArray(dtype=int)
connectivity = Attr(field_type=Connectivity)
surface = Attr(field_type=Surface)
[docs] @staticmethod
def from_file(source_file="regionMapping_16k_76.txt"):
source_full_path = try_get_absolute_path("tvb_data.regionMapping", source_file)
reader = FileReader(source_full_path)
result = RegionMapping()
result.array_data = reader.read_array(dtype=numpy.int32)
return result
[docs]class RegionVolumeMapping(HasTraits):
"""
Each value is representing the index in Connectivity regions to which the current voxel is mapped.
"""
array_data = NArray(dtype=int)
connectivity = Attr(Connectivity)
volume = Attr(Volume)