forked from MRtrix3/mrtrix3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixel2tsf.cpp
139 lines (105 loc) · 4.84 KB
/
fixel2tsf.cpp
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
/* Copyright (c) 2008-2017 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/.
*
* MRtrix is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*
* 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 "dwi/tractography/file.h"
#include "dwi/tractography/scalar_file.h"
#include "dwi/tractography/mapping/mapper.h"
#include "dwi/tractography/mapping/loader.h"
using namespace MR;
using namespace App;
#define DEFAULT_ANGULAR_THRESHOLD 45.0
void usage ()
{
AUTHOR = "David Raffelt ([email protected])";
SYNOPSIS = "Map fixel values to a track scalar file based on an input tractogram";
DESCRIPTION
+ "This command is useful for visualising all brain fixels (e.g. the output from fixelcfestats) in 3D.";
ARGUMENTS
+ Argument ("fixel_in", "the input fixel data file (within the fixel directory)").type_image_in ()
+ Argument ("tracks", "the input track file ").type_tracks_in ()
+ Argument ("tsf", "the output track scalar file").type_file_out ();
OPTIONS
+ Option ("angle", "the max anglular threshold for computing correspondence "
"between a fixel direction and track tangent "
"(default = " + str(DEFAULT_ANGULAR_THRESHOLD, 2) + " degrees)")
+ Argument ("value").type_float (0.001, 90.0);
}
using SetVoxelDir = DWI::Tractography::Mapping::SetVoxelDir;
void run ()
{
auto in_data_image = Fixel::open_fixel_data_file<float> (argument[0]);
if (in_data_image.size(2) != 1)
throw Exception ("Only a single scalar value for each fixel can be output as a track scalar file, "
"therefore the input fixel data file must have dimension Nx1x1");
Header in_index_header = Fixel::find_index_header (Fixel::get_fixel_directory (argument[0]));
auto in_index_image = in_index_header.get_image<uint32_t>();
auto in_directions_image = Fixel::find_directions_header (Fixel::get_fixel_directory (argument[0])).get_image<float>().with_direct_io();
DWI::Tractography::Properties properties;
DWI::Tractography::Reader<float> reader (argument[1], properties);
properties.comments.push_back ("Created using fixel2tsf");
properties.comments.push_back ("Source fixel image: " + Path::basename (argument[0]));
properties.comments.push_back ("Source track file: " + Path::basename (argument[1]));
DWI::Tractography::ScalarWriter<float> tsf_writer (argument[2], properties);
float angular_threshold = get_option_value ("angle", DEFAULT_ANGULAR_THRESHOLD);
const float angular_threshold_dp = cos (angular_threshold * (Math::pi / 180.0));
const size_t num_tracks = properties["count"].empty() ? 0 : to<int> (properties["count"]);
DWI::Tractography::Mapping::TrackMapperBase mapper (in_index_image);
mapper.set_use_precise_mapping (true);
ProgressBar progress ("mapping fixel values to streamline points", num_tracks);
DWI::Tractography::Streamline<float> tck;
Transform transform (in_index_image);
Eigen::Vector3 voxel_pos;
while (reader (tck)) {
SetVoxelDir dixels;
mapper (tck, dixels);
vector<float> scalars (tck.size(), 0.0);
for (size_t p = 0; p < tck.size(); ++p) {
voxel_pos = transform.scanner2voxel * tck[p].cast<default_type> ();
for (SetVoxelDir::const_iterator d = dixels.begin(); d != dixels.end(); ++d) {
if ((int)round(voxel_pos[0]) == (*d)[0] && (int)round(voxel_pos[1]) == (*d)[1] && (int)round(voxel_pos[2]) == (*d)[2]) {
assign_pos_of (*d).to (in_index_image);
Eigen::Vector3f dir = d->get_dir().cast<float>();
dir.normalize();
float largest_dp = 0.0;
int32_t closest_fixel_index = -1;
in_index_image.index(3) = 0;
uint32_t num_fixels_in_voxel = in_index_image.value();
in_index_image.index(3) = 1;
uint32_t offset = in_index_image.value();
for (size_t fixel = 0; fixel < num_fixels_in_voxel; ++fixel) {
in_directions_image.index(0) = offset + fixel;
float dp = std::abs (dir.dot (Eigen::Vector3f (in_directions_image.row(1))));
if (dp > largest_dp) {
largest_dp = dp;
closest_fixel_index = fixel;
}
}
if (largest_dp > angular_threshold_dp) {
in_data_image.index(0) = offset + closest_fixel_index;
scalars[p] = in_data_image.value();
} else {
scalars[p] = 0.0;
}
break;
}
}
}
tsf_writer (scalars);
progress++;
}
}