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
a0fa7b44
Commit
a0fa7b44
authored
19 years ago
by
Tim Behrens
Browse files
Options
Downloads
Patches
Plain Diff
*** empty log message ***
parent
ae4781a4
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
fibre.h
+23
-25
23 additions, 25 deletions
fibre.h
xfibresoptions.h
+5
-0
5 additions, 0 deletions
xfibresoptions.h
with
28 additions
and
25 deletions
fibre.h
+
23
−
25
View file @
a0fa7b44
...
@@ -11,10 +11,12 @@
...
@@ -11,10 +11,12 @@
#include
"libprob.h"
#include
"libprob.h"
#include
<cmath>
#include
<cmath>
#include
"miscmaths/miscprob.h"
#include
"miscmaths/miscprob.h"
#include
"xfibresoptions.h"
using
namespace
std
;
using
namespace
std
;
using
namespace
NEWMAT
;
using
namespace
NEWMAT
;
using
namespace
MISCMATHS
;
using
namespace
MISCMATHS
;
using
namespace
Xfibres
;
namespace
FIBRE
{
namespace
FIBRE
{
...
@@ -56,11 +58,12 @@ namespace FIBRE{
...
@@ -56,11 +58,12 @@ namespace FIBRE{
const
ColumnVector
&
m_alpha
;
const
ColumnVector
&
m_alpha
;
const
ColumnVector
&
m_beta
;
const
ColumnVector
&
m_beta
;
const
Matrix
&
m_bvals
;
const
Matrix
&
m_bvals
;
public:
xfibresOptions
&
opts
;
public:
//constructors::
//constructors::
Fibre
(
const
ColumnVector
&
alpha
,
const
ColumnVector
&
beta
,
Fibre
(
const
ColumnVector
&
alpha
,
const
ColumnVector
&
beta
,
const
Matrix
&
bvals
,
const
float
&
d
)
:
const
Matrix
&
bvals
,
const
float
&
d
)
:
m_d
(
d
),
m_alpha
(
alpha
),
m_beta
(
beta
),
m_bvals
(
bvals
){
m_d
(
d
),
m_alpha
(
alpha
),
m_beta
(
beta
),
m_bvals
(
bvals
)
,
opts
(
xfibresOptions
::
getInstance
())
{
m_th
=
M_PI
/
2
;
m_th
=
M_PI
/
2
;
m_th_old
=
m_th
;
m_th_old
=
m_th
;
...
@@ -106,7 +109,7 @@ namespace FIBRE{
...
@@ -106,7 +109,7 @@ namespace FIBRE{
const
float
&
th
,
const
float
&
ph
,
const
float
&
f
,
const
float
&
th
,
const
float
&
ph
,
const
float
&
f
,
const
float
&
lam
,
const
bool
lam_jump
=
true
)
:
const
float
&
lam
,
const
bool
lam_jump
=
true
)
:
m_th
(
th
),
m_ph
(
ph
),
m_f
(
f
),
m_lam
(
lam
),
m_lam_jump
(
lam_jump
),
m_d
(
d
),
m_th
(
th
),
m_ph
(
ph
),
m_f
(
f
),
m_lam
(
lam
),
m_lam_jump
(
lam_jump
),
m_d
(
d
),
m_alpha
(
alpha
),
m_beta
(
beta
),
m_bvals
(
bvals
)
m_alpha
(
alpha
),
m_beta
(
beta
),
m_bvals
(
bvals
)
,
opts
(
xfibresOptions
::
getInstance
())
{
{
m_th_old
=
m_th
;
m_th_old
=
m_th
;
m_ph_old
=
m_ph
;
m_ph_old
=
m_ph
;
...
@@ -144,7 +147,7 @@ namespace FIBRE{
...
@@ -144,7 +147,7 @@ namespace FIBRE{
}
}
Fibre
(
const
Fibre
&
rhs
)
:
Fibre
(
const
Fibre
&
rhs
)
:
m_d
(
rhs
.
m_d
),
m_alpha
(
rhs
.
m_alpha
),
m_beta
(
rhs
.
m_beta
),
m_bvals
(
rhs
.
m_bvals
){
m_d
(
rhs
.
m_d
),
m_alpha
(
rhs
.
m_alpha
),
m_beta
(
rhs
.
m_beta
),
m_bvals
(
rhs
.
m_bvals
)
,
opts
(
xfibresOptions
::
getInstance
())
{
*
this
=
rhs
;
*
this
=
rhs
;
}
}
...
@@ -218,13 +221,8 @@ namespace FIBRE{
...
@@ -218,13 +221,8 @@ namespace FIBRE{
if
(
m_f
<
0
|
m_f
>=
1
)
if
(
m_f
<
0
|
m_f
>=
1
)
return
true
;
return
true
;
else
{
else
{
//m_f_prior=-(log(m_lam) + (m_lam-1)*log(1-m_f)); //THIS IS THE BETA DISTRIBUTION UNMARGINALISED
m_f_prior
=-
(
log
(
m_lam
)
+
(
m_lam
-
1
)
*
log
(
1
-
m_f
));
if
(
m_lam_jump
)
m_f_prior
=
opts
.
fudge
.
value
()
*
m_f_prior
;
m_f_prior
=
log
(
1
-
m_f
)
+
2
*
log
(
fabs
(
log
(
1
-
m_f
)));
//-log(1/(1-f)*1/log(1-f)^2) which is the marginalised energy
else
m_f_prior
=
0
;
m_f_prior
=
3
*
m_f_prior
;
return
false
;
return
false
;
}
}
}
}
...
@@ -698,20 +696,20 @@ namespace FIBRE{
...
@@ -698,20 +696,20 @@ namespace FIBRE{
}
}
//
if(!m_fibres[f].propose_lam()){
//not jumping lam because of marginalised reference prior
if
(
!
m_fibres
[
f
].
propose_lam
()){
//
compute_prior();
compute_prior
();
//
compute_energy();
compute_energy
();
//
if(test_energy()){
if
(
test_energy
()){
//
m_fibres[f].accept_lam();
m_fibres
[
f
].
accept_lam
();
//
}
}
//
else{
else
{
//
m_fibres[f].reject_lam();
m_fibres
[
f
].
reject_lam
();
//
restore_energy_no_lik();
restore_energy_no_lik
();
//
}
}
//
}
}
//
else{
else
{
//
m_fibres[f].reject_lam();
m_fibres
[
f
].
reject_lam
();
//
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.
xfibresoptions.h
+
5
−
0
View file @
a0fa7b44
...
@@ -36,6 +36,7 @@ class xfibresOptions {
...
@@ -36,6 +36,7 @@ class xfibresOptions {
Option
<
string
>
bvecsfile
;
Option
<
string
>
bvecsfile
;
Option
<
string
>
bvalsfile
;
Option
<
string
>
bvalsfile
;
Option
<
int
>
nfibres
;
Option
<
int
>
nfibres
;
Option
<
float
>
fudge
;
Option
<
int
>
njumps
;
Option
<
int
>
njumps
;
Option
<
int
>
nburn
;
Option
<
int
>
nburn
;
Option
<
int
>
sampleevery
;
Option
<
int
>
sampleevery
;
...
@@ -87,6 +88,9 @@ class xfibresOptions {
...
@@ -87,6 +88,9 @@ class xfibresOptions {
nfibres
(
string
(
"--nf,--nfibres"
),
1
,
nfibres
(
string
(
"--nf,--nfibres"
),
1
,
string
(
"Maximum nukmber of fibres to fit in each voxel (default 1)"
),
string
(
"Maximum nukmber of fibres to fit in each voxel (default 1)"
),
false
,
requires_argument
),
false
,
requires_argument
),
fudge
(
string
(
"fudge"
),
1
,
string
(
"ARD fudge factor"
),
false
,
requires_argument
),
njumps
(
string
(
"--nj,--njumps"
),
5000
,
njumps
(
string
(
"--nj,--njumps"
),
5000
,
string
(
"Num of jumps to be made by MCMC (default is 5000)"
),
string
(
"Num of jumps to be made by MCMC (default is 5000)"
),
false
,
requires_argument
),
false
,
requires_argument
),
...
@@ -115,6 +119,7 @@ class xfibresOptions {
...
@@ -115,6 +119,7 @@ class xfibresOptions {
options
.
add
(
bvecsfile
);
options
.
add
(
bvecsfile
);
options
.
add
(
bvalsfile
);
options
.
add
(
bvalsfile
);
options
.
add
(
nfibres
);
options
.
add
(
nfibres
);
options
.
add
(
fudge
);
options
.
add
(
njumps
);
options
.
add
(
njumps
);
options
.
add
(
nburn
);
options
.
add
(
nburn
);
options
.
add
(
sampleevery
);
options
.
add
(
sampleevery
);
...
...
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