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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
/* 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/loop.h"
#include "math/SH.h"
#include "fixel/helpers.h"
#include "fixel/keys.h"
#include "fixel/loop.h"
#include "fixel/types.h"
#include "fixel/legacy/fixel_metric.h"
#include "fixel/legacy/keys.h"
#include "fixel/legacy/image.h"
using namespace MR;
using namespace App;
using Fixel::index_type;
using Fixel::Legacy::FixelMetric;
void usage ()
{
AUTHOR = "David Raffelt (david.raffelt@florey.edu.au) and Robert E. Smith (robert.smith@florey.edu.au)";
SYNOPSIS = "Convert between the old format fixel image (.msf / .msh) and the new fixel directory format";
EXAMPLES
+ Example ("Convert from the old file format to the new directory format",
"fixelconvert old_fixels.msf new_fixels/ -out_size",
"This performs a simple conversion from old to new format, and "
"additionally writes the contents of the \"size\" field within "
"old-format fixel images stored using the \"FixelMetric\" class "
"(likely all of them) as an additional fixel data file.")
+ Example ("Convert multiple files from old to new format, preserving fixel correspondence",
"for_each *.msf : fixelconvert IN NAME_new/ -template template_fixels/",
"In this example, the for_each script is used to execute the fixelconvert "
"command once for each of a series of input files in the old fixel format, "
"generating a new output fixel directory for each."
"Importantly here though, the -template option is used to ensure that the "
"ordering of fixels within these output directories is identical, such that "
"fixel data files can be exchanged between them (e.g. accumulating fixel "
"data files across subjects into a single template fixel directory")
+ Example ("Convert from the new directory format to the old file format",
"fixelconvert new_fixels/ old_fixels.msf -value parameter.mif -in_size new_fixels/afd.mif",
"Conversion from the new directory format will contain the value 1.0 "
"for all output fixels in both the \"size\" and \"value\" fields of the "
"\"FixelMetric\" class, unless the -in_size and/or -value options are "
"used respectively to indicate which fixel data files should be used as "
"the source(s) of this information.");
ARGUMENTS
+ Argument ("fixel_in", "the input fixel file / directory.").type_various()
+ Argument ("fixel_out", "the output fixel file / directory.").type_various();
OPTIONS
+ OptionGroup ("Options for converting from old to new format")
+ Option ("name", "assign a different name to the value field output (Default: value). Do not include the file extension.")
+ Argument ("string").type_text()
+ Option ("nii", "output the index, directions and data file in NIfTI format instead of .mif")
+ Option ("out_size", "also output the 'size' field from the old format")
+ Option ("template", "specify an existing fixel directory (in the new format) to which the new output should conform")
+ Argument ("path").type_directory_in()
+ OptionGroup ("Options for converting from new to old format")
+ Option ("value", "nominate the data file to import to the 'value' field in the old format")
+ Argument ("path").type_file_in()
+ Option ("in_size", "import data for the 'size' field in the old format")
+ Argument ("path").type_file_in();
}
void convert_old2new ()
{
Header header (Header::open (argument[0]));
header.keyval().erase (Fixel::Legacy::name_key);
header.keyval().erase (Fixel::Legacy::size_key);
Fixel::Legacy::Image<FixelMetric> input (argument[0]);
const std::string file_extension = get_options ("nii").size() ? ".nii" : ".mif";
std::string value_name ("value");
auto opt = get_options ("name");
if (opt.size())
value_name = std::string (opt[0][0]);
const bool output_size = get_options ("out_size").size();
const std::string output_fixel_directory = argument[1];
Fixel::check_fixel_directory (output_fixel_directory, true, true);
index_type fixel_count = 0;
for (auto i = Loop (input) (input); i; ++i)
fixel_count += input.value().size();
Header data_header (header);
data_header.ndim() = 3;
data_header.size(0) = fixel_count;
data_header.size(1) = 1;
data_header.size(2) = 1;
data_header.datatype () = DataType::Float32;
data_header.datatype ().set_byte_order_native();
Header directions_header (data_header);
directions_header.size(1) = 3;
header.keyval()[Fixel::n_fixels_key] = str(fixel_count);
header.ndim() = 4;
header.size(3) = 2;
header.datatype() = DataType::from<index_type>();
header.datatype().set_byte_order_native();
auto index_image = Image<index_type>::create (Path::join (output_fixel_directory, "index" + file_extension), header);
auto directions_image = Image<float>::create (Path::join (output_fixel_directory, "directions" + file_extension), directions_header).with_direct_io();
auto value_image = Image<float>::create (Path::join (output_fixel_directory, value_name + file_extension), data_header);
Image<float> size_image;
if (output_size)
size_image = Image<float>::create (Path::join (output_fixel_directory, "size" + file_extension), data_header);
Image<index_type> template_index_image;
Image<float> template_directions_image;
opt = get_options ("template");
if (opt.size()) {
Fixel::check_fixel_directory (opt[0][0]);
template_index_image = Fixel::find_index_header (opt[0][0]).get_image<index_type>();
check_dimensions (index_image, template_index_image);
template_directions_image = Fixel::find_directions_header (opt[0][0]).get_image<float>();
}
index_type offset = 0;
for (auto i = Loop ("converting fixel format", input, 0, 3) (input, index_image); i; ++i) {
const index_type num_fixels = input.value().size();
if (template_index_image.valid()) {
assign_pos_of (index_image).to (template_index_image);
template_index_image.index(3) = 0;
if (template_index_image.value() != num_fixels)
throw Exception ("mismatch in number of fixels between input and template images");
template_index_image.index(3) = 1;
offset = template_index_image.value();
}
index_image.index(3) = 0;
index_image.value() = num_fixels;
index_image.index(3) = 1;
index_image.value() = num_fixels ? offset : 0;
for (size_t f = 0; f != num_fixels; ++f) {
directions_image.index(0) = offset;
for (size_t axis = 0; axis != 3; ++axis) {
directions_image.index(1) = axis;
directions_image.value() = input.value()[f].dir[axis];
}
if (template_directions_image.valid()) {
template_directions_image.index(0) = offset;
Eigen::Vector3f template_dir;
for (size_t axis = 0; axis != 3; ++axis) {
template_directions_image.index(1) = axis;
template_dir[axis] = template_directions_image.value();
}
if (input.value()[f].dir.dot (template_dir) < 0.999)
throw Exception ("mismatch in fixel directions between input and template images");
}
value_image.index(0) = offset;
value_image.value() = input.value()[f].value;
if (size_image.valid()) {
size_image.index(0) = offset;
size_image.value() = input.value()[f].size;
}
offset++;
}
}
}
void convert_new2old ()
{
const std::string input_fixel_directory = argument[0];
auto opt = get_options ("value");
if (!opt.size())
throw Exception ("for converting from new to old formats, option -value is compulsory");
const std::string value_path = get_options ("value")[0][0];
opt = get_options ("in_size");
const std::string size_path = opt.size() ? std::string(opt[0][0]) : "";
Header H_index = Fixel::find_index_header (input_fixel_directory);
Header H_dirs = Fixel::find_directions_header (input_fixel_directory);
vector<Header> H_data = Fixel::find_data_headers (input_fixel_directory, H_index, false);
size_t size_index = H_data.size(), value_index = H_data.size();
for (size_t i = 0; i != H_data.size(); ++i) {
if (Path::basename (H_data[i].name()) == Path::basename (value_path))
value_index = i;
if (Path::basename (H_data[i].name()) == Path::basename (size_path))
size_index = i;
}
if (value_index == H_data.size())
throw Exception ("could not find image in input fixel directory corresponding to -value option");
Header H_out (H_index);
H_out.ndim() = 3;
H_out.datatype() = DataType::UInt64;
H_out.datatype().set_byte_order_native();
H_out.keyval()[Fixel::Legacy::name_key] = str(typeid(FixelMetric).name());
H_out.keyval()[Fixel::Legacy::size_key] = str(sizeof(FixelMetric));
Fixel::Legacy::Image<Fixel::Legacy::FixelMetric> out_image (argument[1], H_out);
auto index_image = H_index.get_image<index_type>();
auto dirs_image = H_dirs.get_image<float>();
auto value_image = H_data[value_index].get_image<float>();
Image<float> size_image;
if (size_index != H_data.size())
size_image = H_data[size_index].get_image<float>();
for (auto l = Loop (out_image) (out_image, index_image); l; ++l) {
index_image.index(3) = 0;
const index_type num_fixels = index_image.value();
out_image.value().set_size (num_fixels);
for (auto f = Fixel::Loop (index_image) (dirs_image, value_image); f; ++f) {
// Construct the direction
Eigen::Vector3f dir;
for (size_t axis = 0; axis != 3; ++axis) {
dirs_image.index(1) = axis;
dir[axis] = dirs_image.value();
}
Fixel::Legacy::FixelMetric fixel (dir, value_image.value(), value_image.value());
if (size_image.valid()) {
assign_pos_of (value_image).to (size_image);
fixel.size = size_image.value();
}
out_image.value()[f.fixel_index] = fixel;
}
}
}
bool is_old_format (const std::string& path) {
return (Path::has_suffix (path, ".msf") || Path::has_suffix (path, ".msh"));
}
void run ()
{
// Detect in which direction the conversion is occurring
if (is_old_format (argument[0])) {
if (is_old_format (argument[1]))
throw Exception ("fixelconvert can only be used to convert between old and new fixel formats; NOT to convert images within the old format");
convert_old2new ();
} else {
if (!is_old_format (argument[1]))
throw Exception ("fixelconvert can only be used to convert between old and new fixel formats; NOT to convert within the new format");
convert_new2old ();
}
}
|