Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fdt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
fdt
Commits
fb8fc81b
Commit
fb8fc81b
authored
19 years ago
by
Tim Behrens
Browse files
Options
Downloads
Patches
Plain Diff
*** empty log message ***
parent
f71525ec
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
xfibres.cc
+13
-31
13 additions, 31 deletions
xfibres.cc
xfibresoptions.h
+2
-2
2 additions, 2 deletions
xfibresoptions.h
with
15 additions
and
33 deletions
xfibres.cc
+
13
−
31
View file @
fb8fc81b
...
@@ -202,7 +202,7 @@ class xfibresVoxelManager{
...
@@ -202,7 +202,7 @@ class xfibresVoxelManager{
Multifibre
m_multifibre
;
Multifibre
m_multifibre
;
public:
public:
xfibresVoxelManager
(
const
ColumnVector
&
data
,
const
ColumnVector
&
alpha
,
xfibresVoxelManager
(
const
ColumnVector
&
data
,
const
ColumnVector
&
alpha
,
const
ColumnVector
&
beta
,
const
Matrix
&
b
,
const
Matrix
&
Amat
,
const
ColumnVector
&
beta
,
const
Matrix
&
b
,
Samples
&
samples
,
int
voxelnumber
)
:
Samples
&
samples
,
int
voxelnumber
)
:
opts
(
xfibresOptions
::
getInstance
()),
opts
(
xfibresOptions
::
getInstance
()),
m_samples
(
samples
),
m_voxelnumber
(
voxelnumber
),
m_data
(
data
),
m_samples
(
samples
),
m_voxelnumber
(
voxelnumber
),
m_data
(
data
),
...
@@ -327,7 +327,7 @@ int main(int argc, char *argv[])
...
@@ -327,7 +327,7 @@ int main(int argc, char *argv[])
Matrix
datam
,
bvals
,
bvecs
;
Matrix
datam
,
bvals
,
bvecs
;
volume
<
char
>
mask
;
volume
<
float
>
mask
;
bvals
=
read_ascii_matrix
(
opts
.
bvalsfile
.
value
());
bvals
=
read_ascii_matrix
(
opts
.
bvalsfile
.
value
());
bvecs
=
read_ascii_matrix
(
opts
.
bvecsfile
.
value
());
bvecs
=
read_ascii_matrix
(
opts
.
bvecsfile
.
value
());
...
@@ -338,40 +338,22 @@ int main(int argc, char *argv[])
...
@@ -338,40 +338,22 @@ int main(int argc, char *argv[])
datam
=
data
.
matrix
(
mask
);
datam
=
data
.
matrix
(
mask
);
}
}
Samples
samples
(
datam
.
Ncols
());
//if(opts.debuglevel.value()==1)
Matrix
Amat
;
//Tracer_Plus::setrunningstackon()
;
ColumnVector
alpha
,
beta
;
Amat
=
form_Amat
(
bvecs
,
bvals
);
//if(opts.timingon.value())
cart2sph
(
bvecs
,
alpha
,
beta
);
//Tracer_Plus::settimingon(
);
Samples
samples
(
datam
.
Ncols
()
);
// read data
//VolumeSeries data;
//data.read(opts.datafile.value());
// data.writeAsFloat(LogSingleton::getInstance().appendDir("data"));
// cout<<"done"<<endl;
// return 0;
//int ntpts = data.tsize();
//Matrix bvecs = read_ascii_matrix(opts.bvecsfile.value());
//Matrix bvals = read_ascii_matrix(opts.bvalsfile.value());
// mask:
//Volume mask;
///mask.read(opts.maskfile.value());
//mask.threshold(1e-16);
// threshold using mask:
for
(
int
vox
=
1
;
vox
<=
datam
.
Ncols
();
vox
++
){
//data.setPreThresholdPositions(mask.getPreThresholdPositions());
xfibresVoxelManager
vm
(
datam
.
Column
(
vox
),
alpha
,
beta
,
bvals
,
samples
,
vox
);
//data.thresholdSeries();
vm
.
initialise
(
Amat
);
ColumnVector
A
,
B
,
C
;
vm
.
runmcmc
();
}
Matrix
b
,
Amat
;
samples
.
save
();
int
n
;
Multifibre
(
A
,
B
,
C
,
b
,
n
);
}
}
catch
(
Exception
&
e
)
catch
(
Exception
&
e
)
{
{
...
...
This diff is collapsed.
Click to expand it.
xfibresoptions.h
+
2
−
2
View file @
fb8fc81b
...
@@ -41,7 +41,7 @@ class xfibresOptions {
...
@@ -41,7 +41,7 @@ class xfibresOptions {
Option
<
int
>
nburn
;
Option
<
int
>
nburn
;
Option
<
int
>
sampleevery
;
Option
<
int
>
sampleevery
;
Option
<
int
>
updateproposalevery
;
Option
<
int
>
updateproposalevery
;
Option
<
floa
t
>
seed
;
Option
<
in
t
>
seed
;
void
parse_command_line
(
int
argc
,
char
**
argv
,
Log
&
logger
);
void
parse_command_line
(
int
argc
,
char
**
argv
,
Log
&
logger
);
private
:
private
:
...
@@ -103,7 +103,7 @@ class xfibresOptions {
...
@@ -103,7 +103,7 @@ class xfibresOptions {
updateproposalevery
(
string
(
"--upe,--updateproposalevery"
),
40
,
updateproposalevery
(
string
(
"--upe,--updateproposalevery"
),
40
,
string
(
"Num of jumps for each update to the proposal density std (MCMC) (default is 40)"
),
string
(
"Num of jumps for each update to the proposal density std (MCMC) (default is 40)"
),
false
,
requires_argument
),
false
,
requires_argument
),
seed
(
string
(
"--seed"
),
0.769
86654
,
string
(
"seed for pseudo random number generator"
),
seed
(
string
(
"--seed"
),
8665
90
4
,
string
(
"seed for pseudo random number generator"
),
false
,
requires_argument
),
false
,
requires_argument
),
options
(
"xfibres"
,
"xfibres -k <filename>
\n
xfibres --verbose
\n
"
)
options
(
"xfibres"
,
"xfibres -k <filename>
\n
xfibres --verbose
\n
"
)
{
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment