EIDORS: Electrical Impedance Tomography and Diffuse Optical Tomography Reconstruction Software |
EIDORS
(mirror) Main Documentation Tutorials − Image Reconst − Data Structures − Applications − FEM Modelling − GREIT − Old tutorials − Workshop Download Contrib Data GREIT Browse Docs Browse SVN News Mailing list (archive) FAQ Developer
|
GREIT algorithm candidatesEach GREIT algorithm candidate function must be of the following form:function [img,map]= ALG_NAME( ref_meas, reconst_meas )where
Difference ImagingEIT difference imaging calculates a change in conductivity (Δσ) from the change in measurmementsA difference imaging algorithm may look like this example: function img= ALG_NAME( ref_meas, reconst_meas ) load ReconstMatrix_from_ALG_NAME RM; % Expand ref_meas to the full size of reconst_meas num_meas = size(reconst_meas,2); ref_meas = ref_meas * ones(1,num_meas); dv = reconst_meas - ref_meas; % reconst image ds = RM*dv; img= reshape(ds, 32,32,num_meas); Normalized Difference ImagingEIT normalized difference imaging calculates a change in conductivity (Δσ) from a normalized change in measurmementsA normalized difference imaging algorithm may look like this example: function img= ALG_NAME( ref_meas, reconst_meas ) load ReconstMatrix_from_ALG_NAME RM; % Expand ref_meas to the full size of reconst_meas num_meas = size(reconst_meas,2); ref_meas = ref_meas * ones(1,num_meas); dv = ( reconst_meas - ref_meas ) ./ ref_meas; % CHANGE IS HERE: % reconst image ds = RM*dv; img= reshape(ds, 32,32,num_meas); CommentsSome things to note about GREIT algorithm candidates:
Algorithm examplesSome examples of GREIT evaluation functions are:
|
Last Modified: $Date: 2017-02-28 13:12:08 -0500 (Tue, 28 Feb 2017) $ by $Author: aadler $