1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268
|
/* Copyright (c) 2008-2025 the MRtrix3 contributors.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Covered Software is provided under this License on an "as is"
* basis, without warranty of any kind, either expressed, implied, or
* statutory, including, without limitation, warranties that the
* Covered Software is free of defects, merchantable, fit for a
* particular purpose or non-infringing.
* See the Mozilla Public License v. 2.0 for more details.
*
* For more details, see http://www.mrtrix.org/.
*/
#include "command.h"
#include "image.h"
#include "progressbar.h"
#include "algo/threaded_loop.h"
#include "dwi/gradient.h"
#include "dwi/shells.h"
#include "math/SH.h"
#include "metadata/phase_encoding.h"
using namespace MR;
using namespace App;
void usage ()
{
AUTHOR = "J-Donald Tournier (jdtournier@gmail.com)";
SYNOPSIS = "Convert a set of amplitudes (defined along a set of corresponding directions) "
"to their spherical harmonic representation";
DESCRIPTION
+ "The spherical harmonic decomposition is calculated by least-squares linear fitting "
"to the amplitude data."
+ "The directions can be defined either as a DW gradient scheme (for example to compute "
"the SH representation of the DW signal), a set of [az el] pairs as output by the dirgen "
"command, or a set of [ x y z ] directions in Cartesian coordinates. The DW "
"gradient scheme or direction set can be supplied within the input image "
"header or using the -gradient or -directions option. Note that if a "
"direction set and DW gradient scheme can be found, the direction set "
"will be used by default."
+ Math::SH::encoding_description;
ARGUMENTS
+ Argument ("amp", "the input amplitude image.").type_image_in ()
+ Argument ("SH", "the output spherical harmonics coefficients image.").type_image_out ();
OPTIONS
+ Option ("lmax",
"set the maximum harmonic order for the output series. By default, the "
"program will use the highest possible lmax given the number of "
"diffusion-weighted images, up to a maximum of 8.")
+ Argument ("order").type_integer (0, 30)
+ Option ("normalise", "normalise the DW signal to the b=0 image")
+ Option ("directions", "the directions corresponding to the input amplitude image used to sample AFD. "
"By default this option is not required providing the direction set is supplied "
"in the amplitude image. This should be supplied as a list of directions [az el], "
"as generated using the dirgen command, or as a list of [ x y z ] Cartesian coordinates.")
+ Argument ("file").type_file_in()
+ Option ("rician", "correct for Rician noise induced bias, using noise map supplied")
+ Argument ("noise").type_image_in()
+ DWI::GradImportOptions()
+ DWI::ShellsOption
+ Stride::Options;
}
#define RICIAN_POWER 2.25
using value_type = float;
class Amp2SHCommon { MEMALIGN(Amp2SHCommon)
public:
template <class MatrixType>
Amp2SHCommon (const MatrixType& sh2amp,
const vector<size_t>& bzeros,
const vector<size_t>& dwis,
bool normalise_to_bzero) :
sh2amp (sh2amp),
amp2sh (Math::pinv (sh2amp)),
bzeros (bzeros),
dwis (dwis),
normalise (normalise_to_bzero) { }
Eigen::MatrixXd sh2amp, amp2sh;
const vector<size_t>& bzeros;
const vector<size_t>& dwis;
bool normalise;
};
class Amp2SH { MEMALIGN(Amp2SH)
public:
Amp2SH (const Amp2SHCommon& common) :
C (common),
a (common.amp2sh.cols()),
s (common.amp2sh.rows()),
c (common.amp2sh.rows()) { }
template <class SHImageType, class AmpImageType>
void operator() (SHImageType& SH, AmpImageType& amp)
{
get_amps (amp);
c.noalias() = C.amp2sh * a;
write_SH (SH);
}
// Rician-corrected version:
template <class SHImageType, class AmpImageType, class NoiseImageType>
void operator() (SHImageType& SH, AmpImageType& amp, const NoiseImageType& noise)
{
w = Eigen::VectorXd::Ones (C.sh2amp.rows());
get_amps (amp);
c = C.amp2sh * a;
for (size_t iter = 0; iter < 20; ++iter) {
sh2amp = C.sh2amp;
if (get_rician_bias (sh2amp, noise.value()))
break;
for (ssize_t n = 0; n < sh2amp.rows(); ++n)
sh2amp.row (n).array() *= w[n];
s.noalias() = sh2amp.transpose() * ap;
Q.triangularView<Eigen::Lower>() = sh2amp.transpose() * sh2amp;
llt.compute (Q);
c = llt.solve (s);
}
write_SH (SH);
}
protected:
const Amp2SHCommon& C;
Eigen::VectorXd a, s, c, w, ap;
Eigen::MatrixXd Q, sh2amp;
Eigen::LLT<Eigen::MatrixXd> llt;
template <class AmpImageType>
void get_amps (AmpImageType& amp) {
double norm = 1.0;
if (C.normalise) {
for (size_t n = 0; n < C.bzeros.size(); n++) {
amp.index(3) = C.bzeros[n];
norm += amp.value ();
}
norm = C.bzeros.size() / norm;
}
for (ssize_t n = 0; n < a.size(); n++) {
amp.index(3) = C.dwis.size() ? C.dwis[n] : n;
a[n] = amp.value() * norm;
}
}
template <class SHImageType>
void write_SH (SHImageType& SH) {
for (auto l = Loop(3) (SH); l; ++l)
SH.value() = c[SH.index(3)];
}
bool get_rician_bias (const Eigen::MatrixXd& sh2amp, default_type noise) {
ap = sh2amp * c;
default_type norm_diff = 0.0;
default_type norm_amp = 0.0;
for (ssize_t n = 0; n < ap.size() ; ++n) {
ap[n] = std::max (ap[n], default_type(0.0));
default_type t = std::pow (ap[n]/noise, default_type(RICIAN_POWER));
w[n] = Math::pow2 ((t + 1.7)/(t + 1.12));
default_type diff = a[n] - noise * std::pow (t + 1.65, 1.0/RICIAN_POWER);
norm_diff += Math::pow2 (diff);
norm_amp += Math::pow2 (a[n]);
ap[n] += diff;
}
return norm_diff/norm_amp < 1.0e-8;
}
};
void run ()
{
Header header_in (Header::open (argument[0]));
Header header_out (header_in);
header_out.datatype() = DataType::Float32;
vector<size_t> bzeros, dwis;
Eigen::MatrixXd dirs;
auto opt = get_options ("directions");
if (opt.size()) {
dirs = load_matrix (opt[0][0]);
if (dirs.cols() == 3)
dirs = Math::Sphere::cartesian2spherical (dirs);
}
else {
auto hit = header_in.keyval().find ("directions");
if (hit != header_in.keyval().end()) {
vector<default_type> dir_vector;
for (auto line : split_lines (hit->second)) {
auto v = parse_floats (line);
dir_vector.insert (dir_vector.end(), v.begin(), v.end());
}
dirs.resize(dir_vector.size() / 2, 2);
for (size_t i = 0; i < dir_vector.size(); i += 2) {
dirs(i/2, 0) = dir_vector[i];
dirs(i/2, 1) = dir_vector[i+1];
}
header_out.keyval()["basis_directions"] = hit->second;
header_out.keyval().erase (hit);
}
else {
auto grad = DWI::get_DW_scheme (header_in);
DWI::Shells shells (grad);
shells.select_shells (true, false, false);
if (shells.smallest().is_bzero())
bzeros = shells.smallest().get_volumes();
dwis = shells.largest().get_volumes();
dirs = DWI::gen_direction_matrix (grad, dwis);
DWI::stash_DW_scheme (header_out, grad);
}
}
Metadata::PhaseEncoding::clear_scheme (header_out.keyval());
auto sh2amp = DWI::compute_SH2amp_mapping (dirs, true, 8);
bool normalise = get_options ("normalise").size();
if (normalise && !bzeros.size())
throw Exception ("the normalise option is only available if the input data contains b=0 images.");
header_out.size (3) = sh2amp.cols();
Stride::set_from_command_line (header_out);
auto amp = header_in.get_image<value_type>().with_direct_io (3);
Amp2SHCommon common (sh2amp, bzeros, dwis, normalise);
auto SH = Image<value_type>::create (argument[1], header_out);
opt = get_options ("rician");
if (opt.size()) {
auto noise = Image<value_type>::open (opt[0][0]).with_direct_io();
ThreadedLoop ("mapping amplitudes to SH coefficients", amp, 0, 3)
.run (Amp2SH (common), SH, amp, noise);
}
else {
ThreadedLoop ("mapping amplitudes to SH coefficients", amp, 0, 3)
.run (Amp2SH (common), SH, amp);
}
}
|