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
|
/* 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 "progressbar.h"
#include "algo/loop.h"
#include "image.h"
#include "fixel/helpers.h"
#include "fixel/keys.h"
#include "fixel/loop.h"
#include "fixel/types.h"
using namespace MR;
using namespace App;
using Fixel::index_type;
void usage ()
{
AUTHOR = "David Raffelt (david.raffelt@florey.edu.au)";
SYNOPSIS = "Map the scalar value in each voxel to all fixels within that voxel";
DESCRIPTION
+ "This command is designed to enable CFE-based statistical analysis to be performed on voxel-wise measures.";
ARGUMENTS
+ Argument ("image_in", "the input image.").type_image_in()
+ Argument ("fixel_directory_in", "the input fixel directory. Used to define the fixels and their directions").type_directory_in()
+ Argument ("fixel_directory_out", "the fixel directory where the output will be written. This can be the same as the input directory if desired").type_text()
+ Argument ("fixel_data_out", "the name of the fixel data image.").type_text();
}
void run ()
{
auto scalar = Image<float>::open (argument[0]);
std::string input_fixel_directory = argument[1];
Fixel::check_fixel_directory (input_fixel_directory);
auto input_fixel_index = Fixel::find_index_header (input_fixel_directory).get_image<index_type>();
check_dimensions (scalar, input_fixel_index, 0, 3);
std::string output_fixel_directory = argument[2];
if (input_fixel_directory != output_fixel_directory) {
ProgressBar progress ("copying fixel index and directions file into output directory");
progress++;
Fixel::copy_index_and_directions_file (input_fixel_directory, output_fixel_directory);
progress++;
}
auto output_fixel_data = Image<float>::create (Path::join(output_fixel_directory, argument[3]), Fixel::data_header_from_index (input_fixel_index));
for (auto v = Loop ("mapping voxel scalar values to fixels", 0, 3)(scalar, input_fixel_index); v; ++v) {
for (auto f = Fixel::Loop (input_fixel_index) (output_fixel_data); f; ++f)
output_fixel_data.value() = scalar.value();
}
}
|