HOME

TheInfoList



OR:

Medical image computing (MIC) is an interdisciplinary field at the intersection of
computer science Computer science is the study of computation, automation, and information. Computer science spans theoretical disciplines (such as algorithms, theory of computation, information theory, and automation) to Applied science, practical discipli ...
,
information engineering Information engineering is the engineering discipline that deals with the generation, distribution, analysis, and use of information, data, and knowledge in systems. The field first became identifiable in the early 21st century. The component ...
,
electrical engineering Electrical engineering is an engineering discipline concerned with the study, design, and application of equipment, devices, and systems which use electricity, electronics, and electromagnetism. It emerged as an identifiable occupation in the l ...
,
physics Physics is the natural science that studies matter, its fundamental constituents, its motion and behavior through space and time, and the related entities of energy and force. "Physical science is that department of knowledge which ...
,
mathematics Mathematics is an area of knowledge that includes the topics of numbers, formulas and related structures, shapes and the spaces in which they are contained, and quantities and their changes. These topics are represented in modern mathematics ...
and
medicine Medicine is the science and practice of caring for a patient, managing the diagnosis, prognosis, prevention, treatment, palliation of their injury or disease, and promoting their health. Medicine encompasses a variety of health care pr ...
. This field develops computational and mathematical methods for solving problems pertaining to medical images and their use for biomedical research and clinical care. The main goal of MIC is to extract clinically relevant information or knowledge from medical images. While closely related to the field of
medical imaging Medical imaging is the technique and process of imaging the interior of a body for clinical analysis and medical intervention, as well as visual representation of the function of some organs or tissues (physiology). Medical imaging seeks to re ...
, MIC focuses on the computational analysis of the images, not their acquisition. The methods can be grouped into several broad categories: image segmentation, image registration, image-based physiological modeling, and others.


Data forms

Medical image computing typically operates on uniformly sampled data with regular x-y-z spatial spacing (images in 2D and volumes in 3D, generically referred to as images). At each sample point, data is commonly represented in
integral In mathematics, an integral assigns numbers to functions in a way that describes displacement, area, volume, and other concepts that arise by combining infinitesimal data. The process of finding integrals is called integration. Along with ...
form such as signed and unsigned short (16-bit), although forms from unsigned char (8-bit) to 32-bit float are not uncommon. The particular meaning of the data at the sample point depends on modality: for example a CT acquisition collects radiodensity values, while an MRI acquisition may collect T1 or T2-weighted images. Longitudinal, time-varying acquisitions may or may not acquire images with regular time steps. Fan-like images due to modalities such as curved-array ultrasound are also common and require different representational and algorithmic techniques to process. Other data forms include sheared images due t
gantry tilt
during acquisition; and unstructured meshes, such as hexahedral and tetrahedral forms, which are used in advanced biomechanical analysis (e.g., tissue deformation, vascular transport, bone implants).


Segmentation

Segmentation is the process of partitioning an image into different meaningful segments. In medical imaging, these segments often correspond to different tissue classes, organs, pathologies, or other biologically relevant structures. Medical image segmentation is made difficult by low contrast, noise, and other imaging ambiguities. Although there are many computer vision techniques for image segmentation, some have been adapted specifically for medical image computing. Below is a sampling of techniques within this field; the implementation relies on the expertise that clinicians can provide. * Atlas-Based Segmentation: For many applications, a clinical expert can manually label several images; segmenting unseen images is a matter of extrapolating from these manually labeled training images. Methods of this style are typically referred to as atlas-based segmentation methods. Parametric atlas methods typically combine these training images into a single atlas image, while nonparametric atlas methods typically use all of the training images separately. Atlas-based methods usually require the use of image registration in order to align the atlas image or images to a new, unseen image. * Shape-Based Segmentation: Many methods parametrize a template shape for a given structure, often relying on control points along the boundary. The entire shape is then deformed to match a new image. Two of the most common shape-based techniques are Active Shape Models and Active Appearance Models. These methods have been very influential, and have given rise to similar models. *Image-Based segmentation: Some methods initiate a template and refine its shape according to the image data while minimizing integral error measures, like the Active contour model and its variations. *Interactive Segmentation: Interactive methods are useful when clinicians can provide some information, such as a seed region or rough outline of the region to segment. An algorithm can then iteratively refine such a segmentation, with or without guidance from the clinician. Manual segmentation, using tools such as a paint brush to explicitly define the tissue class of each pixel, remains the gold standard for many imaging applications. Recently, principles from feedback
control theory Control theory is a field of mathematics that deals with the control system, control of dynamical systems in engineered processes and machines. The objective is to develop a model or algorithm governing the application of system inputs to drive ...
have been incorporated into segmentation, which give the user much greater flexibility and allow for the automatic correction of errors. *Subjective surface Segmentation: This method is based on the idea of evolution of segmentation function which is governed by an advection-diffusion model. To segment an object, a segmentation seed is needed (that is the starting point that determines the approximate position of the object in the image). Consequently, an initial segmentation function is constructed. The idea behind the subjective surface method is that the position of the seed is the main factor determining the form of this segmentation function. However, there are some other classification of image segmentation methods which are similar to above categories. Moreover, we can classify another group as "Hybrid" which is based on combination of methods.


Registration

Image registration is a process that searches for the correct alignment of images. In the simplest case, two images are aligned. Typically, one image is treated as the target image and the other is treated as a source image; the source image is transformed to match the target image. The optimization procedure updates the transformation of the source image based on a similarity value that evaluates the current quality of the alignment. This iterative procedure is repeated until a (local) optimum is found. An example is the registration of CT and
PET A pet, or companion animal, is an animal kept primarily for a person's company or entertainment rather than as a working animal, livestock, or a laboratory animal. Popular pets are often considered to have attractive appearances, intelligence ...
images to combine structural and metabolic information (see figure). Image registration is used in a variety of medical applications: * Studying temporal changes. Longitudinal studies acquire images over several months or years to study long-term processes, such as disease progression.
Time series In mathematics, a time series is a series of data points indexed (or listed or graphed) in time order. Most commonly, a time series is a sequence taken at successive equally spaced points in time. Thus it is a sequence of discrete-time data. Ex ...
correspond to images acquired within the same session (seconds or minutes). They can be used to study cognitive processes, heart deformations and respiration. * Combining complementary information from different imaging modalities. An example is the fusion of anatomical and functional information. Since the size and shape of structures vary across modalities, it is more challenging to evaluate the alignment quality. This has led to the use of
similarity measure In statistics and related fields, a similarity measure or similarity function or similarity metric is a real-valued function that quantifies the similarity between two objects. Although no single definition of a similarity exists, usually such meas ...
s such as
mutual information In probability theory and information theory, the mutual information (MI) of two random variables is a measure of the mutual dependence between the two variables. More specifically, it quantifies the " amount of information" (in units such ...
. * Characterizing a population of subjects. In contrast to intra-subject registration, a one-to-one mapping may not exist between subjects, depending on the structural variability of the organ of interest. Inter-subject registration is required for atlas construction in computational anatomy. Here, the objective is to statistically model the anatomy of organs across subjects. *
Computer-assisted surgery Computer-assisted surgery (CAS) represents a surgical concept and set of methods, that use computer technology for surgical planning, and for guiding or performing surgical interventions. CAS is also known as computer-aided surgery, computer-assist ...
. In computer-assisted surgery pre-operative images such as CT or MRI are registered to intra-operative images or tracking systems to facilitate image guidance or navigation. There are several important considerations when performing image registration: * The transformation model. Common choices are rigid, affine, and deformable transformation models.
B-spline In the mathematical subfield of numerical analysis, a B-spline or basis spline is a spline function that has minimal support with respect to a given degree, smoothness, and domain partition. Any spline function of given degree can be expresse ...
and
thin plate spline Thin plate splines (TPS) are a spline-based technique for data interpolation and smoothing. They were introduced to geometric design by Duchon. They are an important special case of a polyharmonic spline. Robust Point Matching (RPM) is a common e ...
models are commonly used for parameterized transformation fields. Non-parametric or dense deformation fields carry a displacement vector at every grid location; this necessitates additional
regularization Regularization may refer to: * Regularization (linguistics) * Regularization (mathematics) * Regularization (physics) * Regularization (solid modeling) * Regularization Law, an Israeli law intended to retroactively legalize settlements See also ...
constraints. A specific class of deformation fields are diffeomorphisms, which are invertible transformations with a smooth inverse. * The similarity metric. A distance or similarity function is used to quantify the registration quality. This similarity can be calculated either on the original images or on features extracted from the images. Common similarity measures are sum of squared distances (SSD), correlation coefficient, and
mutual information In probability theory and information theory, the mutual information (MI) of two random variables is a measure of the mutual dependence between the two variables. More specifically, it quantifies the " amount of information" (in units such ...
. The choice of similarity measure depends on whether the images are from the same modality; the acquisition noise can also play a role in this decision. For example, SSD is the optimal similarity measure for images of the same modality with Gaussian noise. However, the image statistics in ultrasound are significantly different from Gaussian noise, leading to the introduction of ultrasound specific similarity measures. Multi-modal registration requires a more sophisticated similarity measure; alternatively, a different image representation can be used, such as structural representations or registering adjacent anatomy. A recent study employed contrastive coding to learn shared, dense image representations, referred to as CoMIRs (Contrastive Multi-modal Image Representations) which enabled the registration of multi-modal images where existing registration methods often fail due to a lack of sufficiently similar image structures. It reduced the multi-modal registration problem to a mono-modal one, in which general intensity based, as well as feature-based, registration algorithms can be applied. * The optimization procedure. Either
continuous Continuity or continuous may refer to: Mathematics * Continuity (mathematics), the opposing concept to discreteness; common examples include ** Continuous probability distribution or random variable in probability and statistics ** Continuous g ...
or discrete optimization is performed. For continuous optimization, gradient-based optimization techniques are applied to improve the convergence speed.


Visualization

Visualization plays several key roles in Medical Image Computing. Methods from scientific visualization are used to understand and communicate about medical images, which are inherently spatial-temporal.
Data visualization Data and information visualization (data viz or info viz) is an interdisciplinary field that deals with the graphic representation of data and information. It is a particularly efficient way of communicating when the data or information is nu ...
and
data analysis Data analysis is a process of inspecting, cleansing, transforming, and modeling data with the goal of discovering useful information, informing conclusions, and supporting decision-making. Data analysis has multiple facets and approaches, enc ...
are used on
unstructured data Unstructured data (or unstructured information) is information that either does not have a pre-defined data model or is not organized in a pre-defined manner. Unstructured information is typically text-heavy, but may contain data such as dates, num ...
forms, for example when evaluating statistical measures derived during algorithmic processing. Direct interaction with data, a key feature of the visualization process, is used to perform visual queries about data, annotate images, guide segmentation and registration processes, and control the visual representation of data (by controlling lighting rendering properties and viewing parameters). Visualization is used both for initial exploration and for conveying intermediate and final results of analyses. The figure "Visualization of Medical Imaging" illustrates several types of visualization: 1. the display of cross-sections as gray scale images; 2. reformatted views of gray scale images (the sagittal view in this example has a different orientation than the original direction of the image acquisition; and 3. A 3D volume rendering of the same data. The nodular lesion is clearly visible in the different presentations and has been annotated with a white line.


Atlases

Medical images can vary significantly across individuals due to people having organs of different shapes and sizes. Therefore, representing medical images to account for this variability is crucial. A popular approach to represent medical images is through the use of one or more atlases. Here, an atlas refers to a specific model for a population of images with parameters that are learned from a training dataset. The simplest example of an atlas is a mean intensity image, commonly referred to as a template. However, an atlas can also include richer information, such as local image statistics and the probability that a particular spatial location has a certain label. New medical images, which are not used during training, can be mapped to an atlas, which has been tailored to the specific application, such as segmentation and group analysis. Mapping an image to an atlas usually involves registering the image and the atlas. This deformation can be used to address variability in medical images.


Single template

The simplest approach is to model medical images as deformed versions of a single template image. For example, anatomical MRI brain scans are often mapped to the MNI template as to represent all the brain scans in common coordinates. The main drawback of a single-template approach is that if there are significant differences between the template and a given test image, then there may not be a good way to map one onto the other. For example, an anatomical MRI brain scan of a patient with severe brain abnormalities (i.e., a tumor or surgical procedure), may not easily map to the MNI template.


Multiple templates

Rather than relying on a single template, multiple templates can be used. The idea is to represent an image as a deformed version of one of the templates. For example, there could be one template for a healthy population and one template for a diseased population. However, in many applications, it is not clear how many templates are needed. A simple albeit computationally expensive way to deal with this is to have every image in a training dataset be a template image and thus every new image encountered is compared against every image in the training dataset. A more recent approach automatically finds the number of templates needed.


Statistical analysis

Statistical methods combine the medical imaging field with modern
Computer Vision Computer vision is an interdisciplinary scientific field that deals with how computers can gain high-level understanding from digital images or videos. From the perspective of engineering, it seeks to understand and automate tasks that the human ...
,
Machine Learning Machine learning (ML) is a field of inquiry devoted to understanding and building methods that 'learn', that is, methods that leverage data to improve performance on some set of tasks. It is seen as a part of artificial intelligence. Machine ...
and
Pattern Recognition Pattern recognition is the automated recognition of patterns and regularities in data. It has applications in statistical data analysis, signal processing, image analysis, information retrieval, bioinformatics, data compression, computer graphics ...
. Over the last decade, several large datasets have been made publicly available (see for example ADNI, 1000 functional Connectomes Project), in part due to collaboration between various institutes and research centers. This increase in data size calls for new algorithms that can mine and detect subtle changes in the images to address clinical questions. Such clinical questions are very diverse and include group analysis, imaging biomarkers, disease phenotyping and longitudinal studies.


Group analysis

In the Group Analysis, the objective is to detect and quantize abnormalities induced by a disease by comparing the images of two or more cohorts. Usually one of these cohorts consist of normal (control) subjects, and the other one consists of abnormal patients. Variation caused by the disease can manifest itself as abnormal deformation of anatomy (see Voxel-based morphometry). For example, shrinkage of sub-cortical tissues such as the
Hippocampus The hippocampus (via Latin from Greek , 'seahorse') is a major component of the brain of humans and other vertebrates. Humans and other mammals have two hippocampi, one in each side of the brain. The hippocampus is part of the limbic syste ...
in brain may be linked to
Alzheimer's disease Alzheimer's disease (AD) is a neurodegenerative disease that usually starts slowly and progressively worsens. It is the cause of 60–70% of cases of dementia. The most common early symptom is difficulty in remembering recent events. As ...
. Additionally, changes in biochemical (functional) activity can be observed using imaging modalities such as
Positron Emission Tomography Positron emission tomography (PET) is a functional imaging technique that uses radioactive substances known as radiotracers to visualize and measure changes in metabolic processes, and in other physiological activities including blood flow, ...
. The comparison between groups is usually conducted on the
voxel In 3D computer graphics, a voxel represents a value on a regular grid in three-dimensional space. As with pixels in a 2D bitmap, voxels themselves do not typically have their position (i.e. coordinates) explicitly encoded with their values. I ...
level. Hence, the most popular pre-processing pipeline, particularly in
neuroimaging Neuroimaging is the use of quantitative (computational) techniques to study the structure and function of the central nervous system, developed as an objective way of scientifically studying the healthy human brain in a non-invasive manner. Incr ...
, transforms all of the images in a dataset to a common coordinate frame via ( Medical Image Registration) in order to maintain correspondence between voxels. Given this voxel-wise correspondence, the most common
Frequentist Frequentist inference is a type of statistical inference based in frequentist probability, which treats “probability” in equivalent terms to “frequency” and draws conclusions from sample-data by means of emphasizing the frequency or pro ...
method is to extract a statistic for each voxel (for example, the mean voxel intensity for each group) and perform
statistical hypothesis testing A statistical hypothesis test is a method of statistical inference used to decide whether the data at hand sufficiently support a particular hypothesis. Hypothesis testing allows us to make probabilistic statements about population parameters. ...
to evaluate whether a null hypothesis is or is not supported. The null hypothesis typically assumes that the two cohorts are drawn from the same distribution, and hence, should have the same statistical properties (for example, the mean values of two groups are equal for a particular voxel). Since medical images contain large numbers of voxels, the issue of multiple comparison needs to be addressed,. There are also Bayesian approaches to tackle group analysis problem.


Classification

Although group analysis can quantify the general effects of a pathology on an anatomy and function, it does not provide subject level measures, and hence cannot be used as biomarkers for diagnosis (see Imaging Biomarkers). Clinicians, on the other hand, are often interested in early diagnosis of the pathology (i.e. classification,) and in learning the progression of a disease (i.e. regression ). From methodological point of view, current techniques varies from applying standard machine learning algorithms to medical imaging datasets (e.g.
Support Vector Machine In machine learning, support vector machines (SVMs, also support vector networks) are supervised learning models with associated learning algorithms that analyze data for classification and regression analysis. Developed at AT&T Bell Laborat ...
), to developing new approaches adapted for the needs of the field. The main difficulties are as follows: * Small sample size ( Curse of Dimensionality): a large medical imaging dataset contains hundreds to thousands of images, whereas the number of voxels in a typical volumetric image can easily go beyond millions. A remedy to this problem is to reduce the number of features in an informative sense (see
dimensionality reduction Dimensionality reduction, or dimension reduction, is the transformation of data from a high-dimensional space into a low-dimensional space so that the low-dimensional representation retains some meaningful properties of the original data, ideally ...
). Several unsupervised and semi-/supervised, approaches have been proposed to address this issue. * Interpretability: A good generalization accuracy is not always the primary objective, as clinicians would like to understand which parts of anatomy are affected by the disease. Therefore, interpretability of the results is very important; methods that ignore the image structure are not favored. Alternative methods based on feature selection have been proposed,.


Clustering

Image-based pattern classification methods typically assume that the neurological effects of a disease are distinct and well defined. This may not always be the case. For a number of medical conditions, the patient populations are highly heterogeneous, and further categorization into sub-conditions has not been established. Additionally, some diseases (e.g.,
autism spectrum disorder The autism spectrum, often referred to as just autism or in the context of a professional diagnosis autism spectrum disorder (ASD) or autism spectrum condition (ASC), is a neurodevelopmental condition (or conditions) characterized by difficulti ...
(ASD),
schizophrenia Schizophrenia is a mental disorder characterized by continuous or relapsing episodes of psychosis. Major symptoms include hallucinations (typically hearing voices), delusions, and disorganized thinking. Other symptoms include social w ...
,
mild cognitive impairment Mild cognitive impairment (MCI) is a neurocognitive disorder which involves cognitive impairments beyond those expected based on an individual's age and education but which are not significant enough to interfere with instrumental activities o ...
(MCI)) can be characterized by a continuous or nearly-continuous spectra from mild cognitive impairment to very pronounced pathological changes. To facilitate image-based analysis of heterogeneous disorders, methodological alternatives to pattern classification have been developed. These techniques borrow ideas from high-dimensional clustering and high-dimensional pattern-regression to cluster a given population into homogeneous sub-populations. The goal is to provide a better quantitative understanding of the disease within each sub-population.


Shape analysis

Shape Analysis is the field of Medical Image Computing that studies
geometrical Geometry (; ) is, with arithmetic, one of the oldest branches of mathematics. It is concerned with properties of space such as the distance, shape, size, and relative position of figures. A mathematician who works in the field of geometry is c ...
properties of structures obtained from different imaging modalities. Shape analysis recently become of increasing interest to the medical community due to its potential to precisely locate morphological changes between different populations of structures, i.e. healthy vs pathological, female vs male, young vs elderly. Shape Analysis includes two main steps: shape correspondence and statistical analysis. * Shape correspondence is the methodology that computes correspondent locations between geometric shapes represented by triangle meshes, contours, point sets or volumetric images. Obviously definition of correspondence will influence directly the analysis. Among the different options for correspondence frameworks we can find: Anatomical correspondence, manual landmarks, functional correspondence (i.e. in brain morphometry locus responsible for same neuronal functionality), geometry correspondence, (for image volumes) intensity similarity, etc. Some approaches, e.g. spectral shape analysis, do not require correspondence but compare shape descriptors directly. * Statistical analysis will provide measurements of structural change at correspondent locations.


Longitudinal studies

In longitudinal studies the same person is imaged repeatedly. This information can be incorporated both into the
image analysis Image analysis or imagery analysis is the extraction of meaningful information from images; mainly from digital images by means of digital image processing techniques. Image analysis tasks can be as simple as reading bar coded tags or as soph ...
, as well as into the statistical modeling. * In longitudinal image processing, segmentation and analysis methods of individual time points are informed and regularized with common information usually from a within-subject template. This regularization is designed to reduce measurement noise and thus helps increase sensitivity and statistical power. At the same time over-regularization needs to be avoided, so that effect sizes remain stable. Intense regularization, for example, can lead to excellent test-retest reliability, but limits the ability to detect any true changes and differences across groups. Often a trade-off needs to be aimed for, that optimizes noise reduction at the cost of limited effect size loss. Another common challenge in longitudinal image processing is the, often unintentional, introduction of processing bias. When, for example, follow-up images get registered and resampled to the baseline image, interpolation artifacts get introduced to only the follow-up images and not the baseline. These artifact can cause spurious effects (usually a bias towards overestimating longitudinal change and thus underestimating required sample size). It is therefore essential that all-time points get treated exactly the same to avoid any processing bias. * Post-processing and statistical analysis of longitudinal data usually requires dedicated statistical tools such as repeated measure ANOVA or the more powerful linear mixed effects models. Additionally, it is advantageous to consider the spatial distribution of the signal. For example, cortical thickness measurements will show a correlation within-subject across time and also within a neighborhood on the cortical surface - a fact that can be used to increase statistical power. Furthermore, time-to-event (aka survival) analysis is frequently employed to analyze longitudinal data and determine significant predictors.


Image-based physiological modelling

Traditionally, medical image computing has seen to address the quantification and fusion of structural or functional information available at the point and time of image acquisition. In this regard, it can be seen as quantitative sensing of the underlying anatomical, physical or physiological processes. However, over the last few years, there has been a growing interest in the predictive assessment of disease or therapy course. Image-based modelling, be it of biomechanical or physiological nature, can therefore extend the possibilities of image computing from a descriptive to a predictive angle. According to the STEP research roadmap, the
Virtual Physiological Human The Virtual Physiological Human (VPH) is a European initiative that focuses on a methodological and technological framework that, once established, will enable collaborative investigation of the human body as a single complex system. The collective ...
(VPH) is a methodological and technological framework that, once established, will enable the investigation of the human body as a single complex system. Underlying the VPH concept, the International Union for Physiological Sciences (IUPS) has been sponsoring the IUPS Physiome Project for more than a decade,. This is a worldwide public domain effort to provide a computational framework for understanding human physiology. It aims at developing integrative models at all levels of biological organization, from genes to the whole organisms via gene regulatory networks, protein pathways, integrative cell functions, and tissue and whole organ structure/function relations. Such an approach aims at transforming current practice in medicine and underpins a new era of computational medicine. In this context, medical imaging and image computing play an increasingly important role as they provide systems and methods to image, quantify and fuse both structural and functional information about the human being in vivo. These two broad research areas include the transformation of generic computational models to represent specific subjects, thus paving the way for personalized computational models. Individualization of generic computational models through imaging can be realized in three complementary directions: * definition of the subject-specific computational domain (anatomy) and related subdomains (tissue types); * definition of boundary and initial conditions from (dynamic and/or functional) imaging; and * characterization of structural and functional tissue properties. In addition, imaging also plays a pivotal role in the evaluation and validation of such models both in humans and in animal models, and in the translation of models to the clinical setting with both diagnostic and therapeutic applications. In this specific context, molecular, biological, and pre-clinical imaging render additional data and understanding of basic structure and function in molecules, cells, tissues and animal models that may be transferred to human physiology where appropriate. The applications of image-based VPH/Physiome models in basic and clinical domains are vast. Broadly speaking, they promise to become new ''virtual imaging techniques''. Effectively more, often non-observable, parameters will be imaged ''in silico'' based on the integration of observable but sometimes sparse and inconsistent multimodal images and physiological measurements. Computational models will serve to engender interpretation of the measurements in a way compliant with the underlying biophysical, biochemical or biological laws of the physiological or pathophysiological processes under investigation. Ultimately, such investigative tools and systems will help our understanding of disease processes, the natural history of disease evolution, and the influence on the course of a disease of pharmacological and/or interventional therapeutic procedures. Cross-fertilization between imaging and modelling goes beyond interpretation of measurements in a way consistent with physiology. Image-based patient-specific modelling, combined with models of medical devices and pharmacological therapies, opens the way to predictive imaging whereby one will be able to understand, plan and optimize such interventions ''in silico''.


Mathematical methods in medical imaging

A number of sophisticated mathematical methods have entered medical imaging, and have already been implemented in various software packages. These include approaches based on
partial differential equations In mathematics, a partial differential equation (PDE) is an equation which imposes relations between the various partial derivatives of a multivariable function. The function is often thought of as an "unknown" to be solved for, similarly to ...
(PDEs) and curvature driven flows for enhancement, segmentation, and registration. Since they employ PDEs, the methods are amenable to parallelization and implementation on GPGPUs. A number of these techniques have been inspired from ideas in
optimal control Optimal control theory is a branch of mathematical optimization that deals with finding a control for a dynamical system over a period of time such that an objective function is optimized. It has numerous applications in science, engineering and ...
. Accordingly, very recently ideas from control have recently made their way into interactive methods, especially segmentation. Moreover, because of noise and the need for statistical estimation techniques for more dynamically changing imagery, the
Kalman filter For statistics and control theory, Kalman filtering, also known as linear quadratic estimation (LQE), is an algorithm that uses a series of measurements observed over time, including statistical noise and other inaccuracies, and produces estima ...
and
particle filter Particle filters, or sequential Monte Carlo methods, are a set of Monte Carlo algorithms used to solve filtering problems arising in signal processing and Bayesian statistical inference. The filtering problem consists of estimating the inte ...
have come into use. A survey of these methods with an extensive list of references may be found in.


Modality specific computing

Some imaging modalities provide very specialized information. The resulting images cannot be treated as regular scalar images and give rise to new sub-areas of Medical Image Computing. Examples include
diffusion MRI Diffusion-weighted magnetic resonance imaging (DWI or DW-MRI) is the use of specific MRI sequences as well as software that generates images from the resulting data that uses the diffusion of water molecules to generate contrast in MR images. It ...
, functional MRI and others.


Diffusion MRI

Diffusion MRI Diffusion-weighted magnetic resonance imaging (DWI or DW-MRI) is the use of specific MRI sequences as well as software that generates images from the resulting data that uses the diffusion of water molecules to generate contrast in MR images. It ...
is a structural
magnetic resonance imaging Magnetic resonance imaging (MRI) is a medical imaging technique used in radiology to form pictures of the anatomy and the physiological processes of the body. MRI scanners use strong magnetic fields, magnetic field gradients, and radio wave ...
modality that allows measurement of the diffusion process of molecules. Diffusion is measured by applying a gradient pulse to a magnetic field along a particular direction. In a typical acquisition, a set of uniformly distributed gradient directions is used to create a set of diffusion weighted volumes. In addition, an unweighted volume is acquired under the same magnetic field without application of a gradient pulse. As each acquisition is associated with multiple volumes,
diffusion MRI Diffusion-weighted magnetic resonance imaging (DWI or DW-MRI) is the use of specific MRI sequences as well as software that generates images from the resulting data that uses the diffusion of water molecules to generate contrast in MR images. It ...
has created a variety of unique challenges in medical image computing. In medicine, there are two major computational goals in
diffusion MRI Diffusion-weighted magnetic resonance imaging (DWI or DW-MRI) is the use of specific MRI sequences as well as software that generates images from the resulting data that uses the diffusion of water molecules to generate contrast in MR images. It ...
: * Estimation of local tissue properties, such as diffusivity; * Estimation of local directions and global pathways of diffusion. The diffusion tensor, a 3 × 3 symmetric positive-definite matrix, offers a straightforward solution to both of these goals. It is proportional to the covariance matrix of a Normally distributed local diffusion profile and, thus, the dominant eigenvector of this matrix is the principal direction of local diffusion. Due to the simplicity of this model, a maximum likelihood estimate of the diffusion tensor can be found by simply solving a system of linear equations at each location independently. However, as the volume is assumed to contain contiguous tissue fibers, it may be preferable to estimate the volume of diffusion tensors in its entirety by imposing regularity conditions on the underlying field of tensors. Scalar values can be extracted from the diffusion tensor, such as the
fractional anisotropy Fractional anisotropy (FA) is a scalar value between zero and one that describes the degree of anisotropy of a diffusion process. A value of zero means that diffusion is isotropic, i.e. it is unrestricted (or equally restricted) in all directions. A ...
, mean, axial and radial diffusivities, which ''indirectly'' measure tissue properties such as the dysmyelination of axonal fibers or the presence of edema. Standard scalar image computing methods, such as registration and segmentation, can be applied directly to volumes of such scalar values. However, to fully exploit the information in the diffusion tensor, these methods have been adapted to account for tensor valued volumes when performing registration and segmentation. Given the principal direction of diffusion at each location in the volume, it is possible to estimate the global pathways of diffusion through a process known as
tractography In neuroscience, tractography is a 3D modeling technique used to visually represent nerve tracts using data collected by diffusion MRI. It uses special techniques of magnetic resonance imaging (MRI) and computer-based diffusion MRI. The results ...
. However, due to the relatively low resolution of
diffusion MRI Diffusion-weighted magnetic resonance imaging (DWI or DW-MRI) is the use of specific MRI sequences as well as software that generates images from the resulting data that uses the diffusion of water molecules to generate contrast in MR images. It ...
, many of these pathways may cross, kiss or fan at a single location. In this situation, the single principal direction of the diffusion tensor is not an appropriate model for the local diffusion distribution. The most common solution to this problem is to estimate multiple directions of local diffusion using more complex models. These include mixtures of diffusion tensors, Q-ball imaging, diffusion spectrum imaging and fiber orientation distribution functions, which typically require HARDI acquisition with a large number of gradient directions. As with the diffusion tensor, volumes valued with these complex models require special treatment when applying image computing methods, such as registration and segmentation.


Functional MRI

Functional magnetic resonance imaging (fMRI) is a medical imaging modality that indirectly measures neural activity by observing the local
hemodynamics Hemodynamics or haemodynamics are the dynamics of blood flow. The circulatory system is controlled by homeostatic mechanisms of autoregulation, just as hydraulic circuits are controlled by control systems. The hemodynamic response continuously m ...
, or blood oxygen level dependent signal (BOLD). fMRI data offers a range of insights, and can be roughly divided into two categories: * Task related fMRI is acquired as the subject is performing a sequence of timed experimental conditions. In block-design experiments, the conditions are present for short periods of time (e.g., 10 seconds) and are alternated with periods of rest. Event-related experiments rely on a random sequence of stimuli and use a single time point to denote each condition. The standard approach to analyze task related fMRI is the
general linear model The general linear model or general multivariate regression model is a compact way of simultaneously writing several multiple linear regression models. In that sense it is not a separate statistical linear model. The various multiple linear regr ...
(GLM) * Resting state fMRI is acquired in the absence of any experimental task. Typically, the objective is to study the intrinsic network structure of the brain. Observations made during rest have also been linked to specific cognitive processes such as encoding or reflection. Most studies of resting state fMRI focus on low frequency fluctuations of the fMRI signal (LF-BOLD). Seminal discoveries include the
default network In neuroscience, the default mode network (DMN), also known as the default network, default state network, or anatomically the medial frontoparietal network (M-FPN), is a large-scale brain network primarily composed of the dorsal medial prefr ...
, a comprehensive cortical parcellation, and the linking of network characteristics to behavioral parameters. There is a rich set of methodology used to analyze functional neuroimaging data, and there is often no consensus regarding the ''best'' method. Instead, researchers approach each problem independently and select a suitable model/algorithm. In this context there is a relatively active exchange among
neuroscience Neuroscience is the science, scientific study of the nervous system (the brain, spinal cord, and peripheral nervous system), its functions and disorders. It is a Multidisciplinary approach, multidisciplinary science that combines physiology, an ...
,
computational biology Computational biology refers to the use of data analysis, mathematical modeling and Computer simulation, computational simulations to understand biological systems and relationships. An intersection of computer science, biology, and big data, the ...
,
statistics Statistics (from German: '' Statistik'', "description of a state, a country") is the discipline that concerns the collection, organization, analysis, interpretation, and presentation of data. In applying statistics to a scientific, indust ...
, and
machine learning Machine learning (ML) is a field of inquiry devoted to understanding and building methods that 'learn', that is, methods that leverage data to improve performance on some set of tasks. It is seen as a part of artificial intelligence. Machine ...
communities. Prominent approaches include * Massive univariate approaches that probe individual voxels in the imaging data for a relationship to the experiment condition. The prime approach is the
general linear model The general linear model or general multivariate regression model is a compact way of simultaneously writing several multiple linear regression models. In that sense it is not a separate statistical linear model. The various multiple linear regr ...
(GLM) * Multivariate- and classifier based approaches, often referred to as multi voxel pattern analysis or multi-variate pattern analysis probe the data for global and potentially distributed responses to an experimental condition. Early approaches used support vector machines (SVM) to study responses to visual stimuli. Recently, alternative pattern recognition algorithms have been explored, such as
random forest Random forests or random decision forests is an ensemble learning method for classification, regression and other tasks that operates by constructing a multitude of decision trees at training time. For classification tasks, the output of ...
based gini contrast or sparse regression and dictionary learning * Functional connectivity analysis studies the intrinsic network structure of the brain, including the interactions between regions. The majority of such studies focus on resting state data to parcelate the brain or to find correlates to behavioral measures. Task specific data can be used to study causal relationships among brain regions (e.g., dynamic causal mapping (DCM) ). When working with large cohorts of subjects, the normalization (registration) of individual subjects into a common reference frame is crucial. A body of work and tools exist to perform normalization based on anatomy ( FSL,
FreeSurfer FreeSurfer is a brain imaging software package originally developed by Bruce Fischl, Anders Dale, Martin Sereno, and Doug Greve. Development and maintenance of FreeSurfer is now the primary responsibility of the Laboratory for Computational Neu ...
, SPM). Alignment taking spatial variability across subjects into account is a more recent line of work. Examples are the alignment of the cortex based on fMRI signal correlation, the alignment based on the global functional connectivity structure both in task-, or resting state data, and the alignment based on stimulus specific activation profiles of individual voxels.


Software

Software for medical image computing is a complex combination of systems providing IO, visualization and interaction, user interface, data management and computation. Typically system architectures are layered to serve algorithm developers, application developers, and users. The bottom layers are often libraries and/or toolkits which provide base computational capabilities; while the top layers are specialized applications which address specific medical problems, diseases, or body systems.


Additional notes

Medical Image Computing is also related to the field of
Computer Vision Computer vision is an interdisciplinary scientific field that deals with how computers can gain high-level understanding from digital images or videos. From the perspective of engineering, it seeks to understand and automate tasks that the human ...
. An international society, The MICCAI Society represents the field and organizes an annual conference and associated workshops. Proceedings for this conference are published by Springer in the Lecture Notes in Computer Science series. In 2000, N. Ayache and J. Duncan reviewed the state of the field.


See also

* Brain Connectivity Estimators * List of Functional Connectivity Software * Resting State fMRI * Imaging informatics *
Neuroimaging software Neuroimaging software is used to study the structure and function of the brain. To see an NIH Blueprint for Neuroscience Research funded clearinghouse of many of these software applications, as well as hardware, etc. go to the NITRC web site. * 3 ...


References

{{reflist, 35em, refs= {{cite journal, author=Lisa Gottesfeld Brown, title=A survey of image registration techniques, journal=ACM Computing Surveys, volume=24 , issue=4 , pages=325–376, year=1992, doi=10.1145/146370.146374, citeseerx=10.1.1.35.2732, s2cid=14576088 {{cite journal , author1=Barbara Zitová , author2=Jan Flusser , title=Image registration methods: a survey , journal=Image Vision Comput. , volume=21, issue=11 , pages=977–1000 , year=2003 , doi = 10.1016/S0262-8856(03)00137-9, hdl=10338.dmlcz/141595 {{cite journal , author1=J. Maintz , author2=M. Viergever , title=A survey of medical image registration , journal=Medical Image Analysis , pages=1–36 , year=1998 , doi=10.1016/S1361-8415(01)80026-8 , volume=2 , pmid=10638851 , issue=1, citeseerx=10.1.1.46.4959 {{cite book , author1=J. Hajnal , author2=D. Hawkes , author3=D. Hill , title=Medical Image Registration , publisher=CRC Press , place=Baton Rouge, Florida, year=2001 {{cite journal , author1=J. P. W. Pluim , author2=J. B. A. Maintz , author3=M. A. Viergever , title=Mutual information based registration of medical images: A survey , journal=IEEE Trans. Med. Imaging , volume=22, issue=8, pages=986–1004, year=2003 , doi=10.1109/TMI.2003.815867 , pmid=12906253, citeseerx=10.1.1.197.6513 , s2cid=2605077 {{cite journal , author1=Grenander, Ulf , author2=Miller, Michael I. , title=Computational anatomy: an emerging discipline , journal=Q. Appl. Math. , year=1998 , volume=LVI , pages=617–694 , issue=4, doi=10.1090/qam/1668732 , doi-access=free {{cite journal , author1=C. Wachinger , author2=N. Navab , title=Entropy and Laplacian images: structural representations for multi-modal registration , journal=Medical Image Analysis , year=2012 , volume=16 , issue=1 , pages=1–17 , doi=10.1016/j.media.2011.03.001 , pmid=21632274 {{cite journal , author1=C. Wachinger , author2=T. Klein , author3=N. Navab , title=Locally adaptive Nakagami-based ultrasound similarity measures , journal=Ultrasonics , year=2011 , volume=52, issue=4 , pages=547–554 , doi=10.1016/j.ultras.2011.11.009 , pmid=22197152 {{cite thesis , author=P. A. Viola , title=Alignment by Maximization of Mutual Information , publisher=Massachusetts Institute of Technology , year= 1995 {{cite journal, author1=J. Ashburner , author2=K.J. Friston , title=Voxel-Based Morphometry – The Methods , journal=NeuroImage , year=2000 , pages=805–821, doi=10.1006/nimg.2000.0582, volume=11, issue=6, pmid=10860804 , citeseerx=10.1.1.114.9512 , s2cid=16777465 {{cite journal, author1=K.J. Friston , author2=W.D. Penny , author3=C. Phillips , author4=S.J. Kiebel , author5=G. Hinton , author6=J. Ashburner , title= Classical and Bayesian Inference in Neuroimaging: Theory , journal=NeuroImage , pages=465–483 , year = 2002, doi=10.1006/nimg.2002.1090, volume=16, issue=2, pmid=12030832 , citeseerx=10.1.1.128.8333 , s2cid=14911371 {{cite journal, author=C. Davatzikos , title=Why voxel-based morphometric analysis should be used with great caution when characterizing group differences , journal=NeuroImage , pages=17–20 , year = 2004, doi=10.1016/j.neuroimage.2004.05.010, volume=23, pmid=15325347, issue=1 , s2cid=7452089 {{cite journal, author1=Yong Fan , author2=Nematollah Batmanghelich , author3=Chris M. Clark , author4=Christos Davatzikos , journal=NeuroImage , volume = 39, pages=1731–1743 , year = 2008 , issue = 4, doi=10.1016/j.neuroimage.2007.10.031, pmid=18053747, title=Spatial patterns of brain atrophy in MCI patients, identified via high-dimensional pattern classification, predict subsequent cognitive decline, pmc=2861339 {{cite journal, author1=Rémi Cuingnet , author2=Emilie Gerardin , author3=Jérôme Tessieras , author4=Guillaume Auzias , author5=Stéphane Lehéricy , author6=Marie-Odile Habert , author7=Marie Chupin , author8=Habib Benali , author9=Olivier Colliot , title=The Alzheimer's Disease Neuroimaging Initiative, Automatic classification of patients with Alzheimer's disease from structural MRI: A comparison of ten methods using the ADNI database, volume=56, year= 2011 , pages=766–781, issue= 2, doi=10.1016/j.neuroimage.2010.06.013, journal=NeuroImage , pmid=20542124, s2cid=628131 , url=https://hal.inria.fr/hal-00795739/file/cuingnet11_comparison_Neuroimage_postprint.pdf {{cite journal, author1=Y. Wang , author2=Y. Fan , author3=P. Bhatt P , author4=C. Davatzikos , title=High-dimensional pattern regression using machine learning: from medical images to continuous clinical variables , journal=NeuroImage , year=2010 , volume=50 , pages=1519–35 , issue = 4, doi=10.1016/j.neuroimage.2009.12.092, pmid=20056158, pmc=2839056 {{cite journal, author1=Benoît Magnin , author2=Lilia Mesrob , author3=Serge Kinkingnéhun , author4=Mélanie Pélégrini-Issac , author5=Olivier Colliot , author6=Marie Sarazin , author7=Bruno Dubois , author8=Stéphane Lehéricy , author9=Habib Benali , title=Support vector machine-based classification of Alzheimer's disease from whole-brain anatomical MRI, journal= Neuroradiology , volume=51 , year = 2009 , pages = 73–83 , issue=2, doi=10.1007/s00234-008-0463-x, pmid=18846369 , s2cid=285128 {{cite journal, author1=N.K. Batmanghelich , author2=B. Taskar , author3=C. Davatzikos , title=Generative-discriminative basis learning for medical imaging , journal= IEEE Trans Med Imaging , year=2012 , volume=31, pages= 51–69 , issue = 1, doi=10.1109/TMI.2011.2162961, pmid=21791408, pmc=3402718 {{cite journal, author1=Glenn Fung , author2=Jonathan Stoeckel , title= SVM feature selection for classification of SPECT images of Alzheimer's disease using spatial information , journal= Knowledge and Information Systems , volume = 11, year = 2007 , pages = 243–258 , issue = 2, doi=10.1007/s10115-006-0043-5 , citeseerx=10.1.1.62.6245 , s2cid=9901011 {{cite journal, author1=R. Chaves , author2=J. Ramírez , author3=J.M. Górriz , author4=M. López , author5=D. Salas-Gonzalez , author6=I. Álvarez , author7=F. Segovia , title=SVM-based computer-aided diagnosis of the Alzheimer's disease using t-test NMSE feature selection with feature correlation weighting , journal=Neuroscience Letters , volume=461, year=2009 , pages= 293–297, issue=3, doi = 10.1016/j.neulet.2009.06.052, pmid = 19549559, s2cid=9981775 {{cite journal, author1=Yanxi Liu, author1-link=Yanxi Liu , author2=Leonid Teverovskiy , author3=Owen Carmichael , author4=Ron Kikinis , author5=Martha Shenton , author6=Cameron S. Carter , author7=V. Andrew Stenger , author8=Simon Davis , author9=Howard Aizenstein , author10=James T. Becker , title=discriminative mr image feature analysis for automatic schizophrenia and alzheimer's disease classification , journal= Medical Image Computing and Computer-assisted Intervention – Miccai , volume=3216 , pages=393–401 , year = 2004, url=https://link.springer.com/content/pdf/10.1007/978-3-540-30135-6_48.pdf, doi=10.1007/978-3-540-30135-6_48 , series=Lecture Notes in Computer Science , isbn=978-3-540-22976-6 , doi-access=free {{cite journal, author1=R. Filipovych , author2=S. M. Resnick , author3=C. Davatzikos , title= Semi-supervised cluster analysis of imaging data , journal= NeuroImage , volume= 54 , year = 2011 , pages= 2185–2197 , issue = 3, doi=10.1016/j.neuroimage.2010.09.074, pmid=20933091, pmc=3008313 {{cite journal, author1=M. De Craene , author2=A. B. d Aische , author3=B. Macq , author4=S. K. Warfield , title=Multi-subject registration for unbiased statistical atlas construction , journal= Proceedings of Medical Image Computing and Computer-Assisted Intervention 2004, volume=3216 , pages=655–662 , url=https://link.springer.com/content/pdf/10.1007/978-3-540-30135-6_80.pdf, doi=10.1007/978-3-540-30135-6_80 , series=Lecture Notes in Computer Science , year=2004 , isbn=978-3-540-22976-6 , doi-access=free {{cite journal, author1=C. J. Twining , author2=T. Cootes , author3=S. Marsland , author4=V. Petrovic , author5=R. Schestowitz , author6=C. Taylor , title=A unified information-theoretic approach to groupwise non-rigid registration and model building , journal= Proceedings of Information Processing in Medical Imaging 2005, volume=19 , pages=1–14 , pmid=17354680 , year=2005 , doi=10.1007/11505730_1 , isbn=978-3-540-26545-0 , series=Lecture Notes in Computer Science {{cite web, title=The MNI brain and the Talairach atlas , url=http://imaging.mrc-cbu.cam.ac.uk/imaging/MniTalairach {{cite journal, author1=M. Sabuncu , author2=S. K. Balci , author3=M. E. Shenton , author4=P. Golland, author4-link=Polina Golland , title=Image-driven Population Analysis through Mixture Modeling , journal=IEEE Transactions on Medical Imaging , volume=28 , year=2009 , pages=1473–1487 , issue=9, doi=10.1109/TMI.2009.2017942, pmid=19336293 , pmc=2832589 , citeseerx=10.1.1.158.3690 {{cite journal , author1=MR Sabuncu , author2=BT Yeo , author3=K Van Leemput , author4=B Fischl , author5=P Golland , author5-link=Polina Golland, title = A Generative Model for Image Segmentation Based on Label Fusion , journal = IEEE Transactions on Medical Imaging , volume = 29 , issue = 10 , pages = 1714–1729 , date = June 2010 , doi = 10.1109/TMI.2010.2050897 , pmid = 20562040 , pmc = 3268159 {{cite journal , title=Active shape models-their training and application , vauthors=Cootes TF, Taylor CJ, Cooper DH, Graham J , journal = Computer Vision and Image Understanding , volume = 61 , pages=38–59 , year = 1995 , issue = 1 , doi=10.1006/cviu.1995.1004 {{cite journal, title = Active appearance models , author1= Cootes, T.F. , author2= Edwards, G.J. , author3= Taylor, C.J. , journal=IEEE Transactions on Pattern Analysis and Machine Intelligence , volume=23 , pages=681–685 , year=2001 , issue=6, doi = 10.1109/34.927467 , citeseerx = 10.1.1.128.4967 {{cite journal, author1=J Gee , author2=M Reivich , author3=R Bajcsy , title=Elastically Deforming a Three-Dimensional Atlas to Match Anatomical Brain Images , journal = Journal of Computer Assisted Tomography , volume = 17 , issue = 1 , year = 1993 , pages = 225–236, doi=10.1097/00004728-199303000-00011 , pmid=8454749, s2cid=25781937 {{cite journal , author1=P Basser , author2=J Mattiello , author3=D LeBihan , title = MR diffusion tensor spectroscopy, imaging , journal = Biophysical Journal , volume = 66 , issue = 1 , pages = 259–267 , date = January 1994 , doi = 10.1016/S0006-3495(94)80775-1, pmid = 8130344 , pmc = 1275686, bibcode =1994BpJ....66..259B {{cite journal , author1=S-K Song , author2=S-W Sun , author3=M Ramsbottom , author4=C Cheng , author5=J Russell , author6=A Cross , title = Dysmyelination Revealed through MRI as Increased Radial (but Unchanged Axial) Diffusion of Water , journal = NeuroImage , volume = 13 , issue = 3 , pages = 1429–1436 , date = November 2002 , doi = 10.1006/nimg.2002.1267, pmid=12414282 , s2cid=43229972 {{cite journal , author1=P Barzo , author2=A Marmarou , author3=P Fatouros , author4=K Hayasaki , author5=F Corwin , title =Contribution of vasogenic and cellular edema to traumatic brain swelling measured by diffusion-weighted imaging , journal = Journal of Neurosurgery , volume = 87 , issue = 6 , pages = 900–907 , date = December 1997 , doi =10.3171/jns.1997.87.6.0900 , pmid = 9384402 {{cite journal , author1=D Alexander , author2=C Pierpaoli , author3=P Basser , title = Spatial transformation of diffusion tensor magnetic resonance images , journal = IEEE Transactions on Medical Imaging , volume = 20 , issue = 11 , pages = 1131–1139 , date = January 2001 , doi = 10.1109/42.963816, pmid = 11700739, s2cid=6559551 , url=http://discovery.ucl.ac.uk/12188/1/12188.pdf {{cite conference , author1=Y Cao , author2=M Miller , author3=S Mori , author4=R Winslow , author5=L Younes , title = Diffeomorphic Matching of Diffusion Tensor Images , book-title = Proceedings of IEEE Computer Society Conference on Computer Vision, Pattern Recognition (CVPR), Workshop on Mathematical Methods in Biomedical Image Analysis (MMBIA 2006) , pages= 67 , date = June 2006 , location = New York , doi = 10.1109/CVPRW.2006.65 , pmc= 2920614 {{cite journal , ref= Wang2005 , author1=Z Wang , author2=B Vemuri , title = DTI segmentation using an information theoretic tensor dissimilarity measure , journal = IEEE Transactions on Medical Imaging , volume = 24 , issue = 10 , pages = 1267–1277 , date = October 2005 , doi = 10.1109/TMI.2005.854516 , pmid= 16229414, citeseerx=10.1.1.464.9059 , s2cid=32724414 {{cite journal , author1=P Fillard , author2=X Pennec , author3=V Arsigny , author4=N Ayache , title = Clinical DT-MRI estimation, smoothing,, fiber tracking with log-Euclidean metrics , journal = IEEE Transactions on Medical Imaging , volume = 26 , issue = 11 , pages = 1472–1482 , year= 2007 , doi = 10.1109/TMI.2007.899173 , pmid = 18041263, citeseerx=10.1.1.218.6380 {{cite journal , author1=S Mori , author2=B Crain , author3=V Chacko , author4=P van Zijl , title=Three-dimensional tracking of axonal projections in the brain by magnetic resonance imaging , journal = Annals of Neurology , volume = 45 , issue = 2 , pages = 265–269 , date = February 1999 , doi = 10.1002/1531-8249(199902)45:2<265::AID-ANA21>3.0.CO;2-3 , pmid=9989633 , s2cid=334903 {{cite journal , author1=D Tuch , author2=T Reese , author3=M Wiegell , author4=N Makris , author5=J Belliveau , author6=V Wedeen , title=High angular resolution diffusion imaging reveals intravoxel white matter fiber heterogeneity , journal = Magnetic Resonance in Medicine , volume = 48 , issue = 4 , pages = 577–582 , date = October 2002 , doi =10.1002/mrm.10268, pmid=12353272, doi-access=free {{cite journal , author = D Tuch , title = Q-ball imaging , journal = Magnetic Resonance in Medicine , volume = 52 , issue = 6 , pages = 1358–1372 , date = December 2004 , doi =10.1002/mrm.20279 , pmid=15562495, doi-access = free {{cite journal , author1=V Wedeen , author2=P Hagmann , author3=W-Y Tseng , author4=T Reese , title = Mapping complex tissue architecture with diffusion spectrum magnetic resonance imaging , journal = Magnetic Resonance in Medicine , volume = 54, issue = 6 , pages = 1377–1386 , date = December 2005 , doi = 10.1002/mrm.20642 , pmid=16247738, doi-access =free {{cite conference , author1=K Jansons , author2=D Alexander , title = Persistent angular structure: new insights from diffusion magnetic resonance imaging data , book-title = Proceedings of Information Processing in Medical Imaging (IPMI) 2003, LNCS 2732 , pages = 672–683 , date = July 2003 , doi =10.1007/978-3-540-45087-0_56 {{cite journal , author1=J-D Tournier , author2=F Calamante , author3=D Gadian , author4=A Connelly , title =Direct estimation of the fiber orientation density function from diffusion-weighted MRI data using spherical deconvolution , journal = NeuroImage , volume = 23 , pages = 1176–1185 , year = 2007 , doi =10.1016/j.neuroimage.2004.07.037 , issue=3 , pmid=15528117 , s2cid=24169627 {{cite conference , author1=X Geng , author2=T Ross , author3=W Zhan , author4=H Gu , author5=Y-P Chao , author6=C-P Lin , author7=G Christensen , author8=N Schuff , author9=Y Yang , title = Diffusion MRI Registration Using Orientation Distribution Functions , book-title = Proceedings of Information Processing in Medical Imaging (IPMI) 2009, LNCS 5636 , date = July 2009 , volume = 21 , pages = 626–637 , doi = 10.1007/978-3-642-02498-6_52, pmc=3860746 {{cite journal , author1=P-T Yap , author2=Y Chen , author3=H An , author4=Y Yang , author5=J Gilmore , author6=W Lin , author7=D Shen , title = SPHERE: SPherical Harmonic Elastic REgistration of HARDI data , journal = NeuroImage , volume = 55 , issue = 2 , pages = 545–556 , year= 2011 , doi = 10.1016/j.neuroimage.2010.12.015 , pmid = 21147231 , pmc = 3035740 {{cite conference , author1=P Zhang , author2=M Niethammer , author3=D Shen , author4=P-T Yap , title = Large Deformation Diffeomorphic Registration of Diffusion-Weighted Images , book-title = Proceedings of Medical Image Computing and Computer-Assisted Intervention (MICCAI) , year = 2012, url=https://link.springer.com/content/pdf/10.1007/978-3-642-33418-4_22.pdf, doi=10.1007/978-3-642-33418-4_22 , doi-access=free {{cite conference , author1=M Descoteaux , author2=R Deriche , title = Segmentation of Q-Ball Images Using Statistical Surface Evolution , book-title = Proceedings of Medical Image Computing and Computer-Assisted Intervention (MICCAI) 2007, LNCS 4792 , pages = 769–776 , date = September 2007 , doi = 10.1007/978-3-540-75759-7_93, doi-access = free {{cite conference , author1 = Langs, G. , author2=Lashkari, D. , author3=Sweet, A. , author4=Tie, Y. , author5=Rigolo, L. , author6=Golby, A. J. , author7=Golland, P., author7-link=Polina Golland , title= Learning an atlas of a cognitive process in its functional geometry , book-title=Inf Process Med Imaging , volume=22, pages=135–46 , year=2011 {{cite journal , author1=J. V. Haxby , author2=M. I. Gobbini , author3=M. L. Furey , author4=A. Ishai , author5=J. L. Schouten , author6=P. Pietrini , title=Distributed and overlapping representations of faces and objects in ventral temporal cortex , journal=Science , volume=293, issue=5539 , pages=2425–30 , year=2001 , bibcode = 2001Sci...293.2425H , doi = 10.1126/science.1063736 , pmid = 11577229, citeseerx=10.1.1.381.2660 , s2cid=6403660 {{cite journal , author1 = Haxby, J. V. , author2=Guntupalli, J. S. , author3=Connolly, A. C. , author4=Halchenko, Y. O. , author5=Conroy, B. R. , author6=Gobbini, M. I. , author7=Hanke, M. , author8=Ramadge, P. J. , title= A common, high-dimensional model of the representational space in human ventral temporal cortex , journal=Neuron , volume=72, issue=2 , pages=404–416 , year=2011 , doi = 10.1016/j.neuron.2011.08.026 , pmid = 22017997 , pmc = 3201764 {{cite journal , author1 = Langs, G. , author2=Menze, B. H. , author3=Lashkari, D. , author4=Golland, P., author4-link=Polina Golland , title= Detecting stable distributed patterns of brain activation using Gini contrast , journal=NeuroImage , volume=56, issue=2 , pages=497–507 , year=2011 , doi = 10.1016/j.neuroimage.2010.07.074 , pmid = 20709176 , pmc=3960973 {{cite journal , author = Friston, K. , title= Dynamic causal modelling , journal=NeuroImage , volume=19, issue=4 , pages=1273–1302 , year=2003 , doi = 10.1016/S1053-8119(03)00202-7 , pmid = 12948688 , s2cid= 2176588 {{cite journal , author1 = Friston, K. , author2=Holmes, A. , author3=Worsley, K. , author4=Poline, J. , author5=Frith, C. , author6=Frackowiak, R. , title= Statistical parametric maps in functional imaging: a general linear approach , journal=Hum Brain Mapp , volume=2, issue=4 , pages=189–210 , year=1995 , doi = 10.1002/hbm.460020402, s2cid=9898609 , display-authors=etal {{cite journal , author1 = Sabuncu, M. R. , author2=Singer, B. D. , author3=Conroy, B. , author4=Bryan, R. E. , author5=Ramadge, P. J. , author6=Haxby, J. V. , title= Function-based Intersubject Alignment of Human Cortical Anatomy , journal=Cerebral Cortex , volume=20, issue=1 , pages=130–140 , year=2010 , doi = 10.1093/cercor/bhp085 , pmid = 19420007 , pmc = 2792192 {{cite journal , author1 = Yeo, B. T. T. , author2=Krienen, F. M. , author3=Sepulcre, J. , author4=Sabuncu, M. R. , author5=Lashkari, D. , author6=Hollinshead, M. , author7=Roffman, J. L. , author8=Smoller, J. W. , author9=Zöllei, L. , author10=Polimeni, J. R. , author11=Fischl, B. , author12=Liu, H. , author13=Buckner, R. L. , title= The organization of the human cerebral cortex estimated by intrinsic functional connectivity , journal=J Neurophysiol , volume=106, issue=3 , pages=1125–65 , year=2011 , doi = 10.1152/jn.00338.2011 , pmid = 21653723 , pmc = 3174820 {{cite journal , author1 = Buckner, R. L. , author2=Andrews-Hanna, J. R. , author3=Schacter, D. L. , title= The brain's default network: anatomy, function, and relevance to disease , journal=Annals of the New York Academy of Sciences , volume=1124, issue= 1, pages=1–38 , year=2008 , bibcode = 2008NYASA1124....1B , doi = 10.1196/annals.1440.011 , pmid = 18400922, citeseerx= 10.1.1.689.6903 , s2cid=3167595 {{cite conference , author1 = Varoquaux, G. , author2=Gramfort, A. , author3=Pedregosa, F. , author4=Michel, V. , author5=Thirion, B. , title= Multi-subject dictionary learning to segment an atlas of brain spontaneous activity , book-title=Inf Process Med Imaging , volume=22, pages=562–73 , year=2011 {{cite journal , author1=Savio A. , author2=Graña M. , title= Deformation based feature selection for Computer Aided Diagnosis of Alzheimer's Disease , journal=Expert Systems with Applications , volume=40 , issue=5 , year=2013 , pages=1619–1628 , doi=10.1016/j.eswa.2012.09.009 , issn=0957-4174 {{cite journal , author1 = van den Heuvel, M. P. , author2=Stam, C. J. , author3=Kahn, R. S. , author4=Hulshoff Pol, H. E. , title= Efficiency of functional brain networks and intellectual performance , journal=J Neurosci , volume=29, issue=23 , pages=7619–24 , year=2009 , doi = 10.1523/JNEUROSCI.1443-09.2009 , pmid = 19515930, pmc=6665421 {{cite journal , author1 = Angenent, S. , author2=Pichon, E. , author3-link=Allen Tannenbaum , author3=Tannenbaum, A. , title= Mathematical methods in medical image processing , journal=Bulletin of the AMS , volume=43 , issue=3 , pages=365–396 , year=2006 , doi = 10.1090/S0273-0979-06-01104-9, pmid=23645963 , author1-link=Sigurd Angenent , pmc=3640423 {{cite book , author1 = Karasev, P. , author2=Kolesov I. , author3=Chudy, K. , author4=Vela, P. , author5=Tannenbaum, A. , title=Interactive MRI segmentation with controlled active vision , journal=Proceedings of the Conference on Decision and Control , pages=2293–2298 , year=2011, doi=10.1109/CDC.2011.6161453 , pmid=24584213 , pmc=3935399 , isbn=978-1-61284-801-3 {{cite journal , author1 = Melonakos, J. , author2=Pichon, E. , author3-link=Sigurd Angenent , author3=Angenent, S. , author4-link=Allen Tannenbaum , author4=Tannenbaum, A. , title=Finsler active contours, journal=IEEE Trans. PAMI , volume=30 , issue=3 , pages=412–423 , year=2008 , doi = 10.1109/TPAMI.2007.70713, pmid=18195436, pmc=2796633


Journals on medical image computing

* Medical Image Analysis (MedIA) ; also the official journal of The MICCAI Society, which organizes the Annual MICCAI Conference a premier conference for medical image computing
IEEE Transactions on Medical Imaging (IEEE TMI)

Medical Physics

Journal of Digital Imaging (JDI)
; the official journal of th
Society of Imaging Informatics

Computerized Medical Imaging and Graphics

Journal of Computer Aided Radiology and Surgery

BMC Medical Imaging
In addition the following journals occasionally publish articles describing methods and specific clinical applications of medical image computing or modality specific medical image computing
Radiology
the official journal of th
Radiological Society of North America

NeuroImage

Journal of Magnetic Resonance Imaging (JMRI)

Magnetic Resonance in Medicine (MRM)

Journal of Computer Assisted Tomography (JCAT)

Human Brain Mapping
Computing in medical imaging Image segmentation