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
0f07a6a8
Commit
0f07a6a8
authored
19 years ago
by
Tim Behrens
Browse files
Options
Downloads
Patches
Plain Diff
*** empty log message ***
parent
68e7d075
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
Makefile
+8
-1
8 additions, 1 deletion
Makefile
indexer.cc
+112
-0
112 additions, 0 deletions
indexer.cc
with
120 additions
and
1 deletion
Makefile
+
8
−
1
View file @
0f07a6a8
...
@@ -24,8 +24,10 @@ XFIBRES=xfibres
...
@@ -24,8 +24,10 @@ XFIBRES=xfibres
RV
=
replacevols
RV
=
replacevols
MDV
=
make_dyadic_vectors
MDV
=
make_dyadic_vectors
FMO
=
fdt_matrix_ops
FMO
=
fdt_matrix_ops
INDEXER
=
indexer
TEST
=
testfile
TEST
=
testfile
DTIFITOBJS
=
dtifit.o dtifitOptions.o
DTIFITOBJS
=
dtifit.o dtifitOptions.o
CCOPSOBJS
=
ccops.o ccopsOptions.o
CCOPSOBJS
=
ccops.o ccopsOptions.o
PTOBJS
=
probtrack.o probtrackOptions.o pt_alltracts.o pt_matrix.o pt_seeds_to_targets.o pt_simple.o pt_twomasks.o pt_matrix_mesh.o
PTOBJS
=
probtrack.o probtrackOptions.o pt_alltracts.o pt_matrix.o pt_seeds_to_targets.o pt_simple.o pt_twomasks.o pt_matrix_mesh.o
...
@@ -40,12 +42,14 @@ XFIBOBJS=xfibres.o xfibresoptions.o
...
@@ -40,12 +42,14 @@ XFIBOBJS=xfibres.o xfibresoptions.o
RVOBJS
=
replacevols.o
RVOBJS
=
replacevols.o
MDVOBJS
=
make_dyadic_vectors.o
MDVOBJS
=
make_dyadic_vectors.o
FMOOBJS
=
fdt_matrix_ops.o
FMOOBJS
=
fdt_matrix_ops.o
INDEXEROBJS
=
indexer.o
TESTOBJS
=
testfile.o
TESTOBJS
=
testfile.o
SCRIPTS
=
eddy_correct bedpost bedpost_proc bedpost_cleanup bedpost_kill_all bedpost_kill_pid zeropad bedpost_datacheck
SCRIPTS
=
eddy_correct bedpost bedpost_proc bedpost_cleanup bedpost_kill_all bedpost_kill_pid zeropad bedpost_datacheck
FSCRIPTS
=
correct_and_average ocmr_preproc
FSCRIPTS
=
correct_and_average ocmr_preproc
XFILES
=
dtifit ccops probtrack find_the_biggest medianfilter diff_pvm make_dyadic_vectors proj_thresh
XFILES
=
dtifit ccops probtrack find_the_biggest medianfilter diff_pvm make_dyadic_vectors proj_thresh
FXFILES
=
reord_OM sausages replacevols fdt_matrix_ops probtrackx xfibres
FXFILES
=
reord_OM sausages replacevols fdt_matrix_ops probtrackx xfibres
indexer
RUNTCLS
=
Fdt
RUNTCLS
=
Fdt
...
@@ -94,6 +98,9 @@ ${MDV}: ${MDVOBJS}
...
@@ -94,6 +98,9 @@ ${MDV}: ${MDVOBJS}
${FMO}
:
${FMOOBJS}
${FMO}
:
${FMOOBJS}
${
CXX
}
${
CXXFLAGS
}
${
LDFLAGS
}
-o
$@
${
FMOOBJS
}
${
DLIBS
}
${
CXX
}
${
CXXFLAGS
}
${
LDFLAGS
}
-o
$@
${
FMOOBJS
}
${
DLIBS
}
${INDEXER}
:
${INDEXEROBJS}
${
CXX
}
${
CXXFLAGS
}
${
LDFLAGS
}
-o
$@
${
INDEXEROBJS
}
${
DLIBS
}
${TEST}
:
${TESTOBJS}
${TEST}
:
${TESTOBJS}
${
CXX
}
${
CXXFLAGS
}
${
LDFLAGS
}
-o
$@
${
TESTOBJS
}
${
DLIBS
}
${
CXX
}
${
CXXFLAGS
}
${
LDFLAGS
}
-o
$@
${
TESTOBJS
}
${
DLIBS
}
...
...
This diff is collapsed.
Click to expand it.
indexer.cc
0 → 100644
+
112
−
0
View file @
0f07a6a8
#include
<iostream>
#include
<fstream>
#include
<iomanip>
#include
"newimage/newimageall.h"
#include
"utils/log.h"
using
namespace
std
;
using
namespace
NEWIMAGE
;
using
namespace
Utilities
;
//using namespace NEWMAT;
//////////////////////////
/////////////////////////
void
read_masks
(
vector
<
string
>&
masks
,
const
string
&
filename
){
ifstream
fs
(
filename
.
c_str
());
string
tmp
;
if
(
fs
){
fs
>>
tmp
;
while
(
!
fs
.
eof
()){
masks
.
push_back
(
tmp
);
fs
>>
tmp
;
}
}
else
{
cerr
<<
filename
<<
" does not exist"
<<
endl
;
exit
(
0
);
}
}
ColumnVector
vox_to_vox
(
const
ColumnVector
&
xyz1
,
const
ColumnVector
&
dims1
,
const
ColumnVector
&
dims2
,
const
Matrix
&
xfm
){
ColumnVector
xyz1_mm
(
4
),
xyz2_mm
,
xyz2
(
3
);
xyz1_mm
<<
xyz1
(
1
)
*
dims1
(
1
)
<<
xyz1
(
2
)
*
dims1
(
2
)
<<
xyz1
(
3
)
*
dims1
(
3
)
<<
1
;
xyz2_mm
=
xfm
*
xyz1_mm
;
xyz2_mm
=
xyz2_mm
/
xyz2_mm
(
4
);
xyz2
<<
xyz2_mm
(
1
)
/
dims2
(
1
)
<<
xyz2_mm
(
2
)
/
dims2
(
2
)
<<
xyz2_mm
(
3
)
/
dims2
(
3
);
return
xyz2
;
}
int
main
(
int
argc
,
char
**
argv
){
if
(
argc
<
6
){
cerr
<<
"Usage: indexer <mask_for_going_ahead> <file_of_volume_names> <x> <y> <z>"
<<
endl
;
cerr
<<
endl
;
cerr
<<
"<x> <y> <z> in mni mm coords"
<<
endl
;
return
0
;
}
vector
<
string
>
masknames
;
volume
<
int
>
inside_mask
;
read_volume
(
inside_mask
,
argv
[
1
]);
read_masks
(
masknames
,
argv
[
2
]);
vector
<
volume
<
float
>
>
cortex_masks
;
volume
<
float
>
tmpcort
;
for
(
unsigned
int
m
=
0
;
m
<
masknames
.
size
();
m
++
){
read_volume
(
tmpcort
,
masknames
[
m
]);
cortex_masks
.
push_back
(
tmpcort
);
}
float
x_mm
=
atof
(
argv
[
3
]);
float
y_mm
=
atof
(
argv
[
4
]);
float
z_mm
=
atof
(
argv
[
5
]);
float
x_orig_mm
=
90
;
float
y_orig_mm
=
124
;
float
z_orig_mm
=
72
;
int
x_roi_start_vox
=
45
;
int
y_roi_start_vox
=
70
;
int
z_roi_start_vox
=
50
;
int
numsubjects
=
11
;
float
xvox
=
(
x_mm
+
x_orig_mm
)
/
cortex_masks
[
0
].
xdim
()
-
x_roi_start_vox
;
float
yvox
=
(
y_mm
+
y_orig_mm
)
/
cortex_masks
[
0
].
ydim
()
-
y_roi_start_vox
;
float
zvox
=
(
z_mm
+
z_orig_mm
)
/
cortex_masks
[
0
].
zdim
()
-
z_roi_start_vox
;
if
(
inside_mask
((
int
)
round
(
xvox
),(
int
)
round
(
yvox
),(
int
)
round
(
zvox
))
==
0
){
cout
<<
"Sorry - Your input is not in our defined thalamus"
<<
endl
;
for
(
unsigned
int
i
=
0
;
i
<
masknames
.
size
();
i
++
){
cout
<<
0
<<
endl
;
}
}
else
{
cout
<<
"Input inside thalamus"
<<
endl
;
for
(
unsigned
int
i
=
0
;
i
<
masknames
.
size
();
i
++
){
if
(
cortex_masks
[
i
].
interpolate
(
xvox
,
yvox
,
zvox
)
==
0
){
cout
<<
std
::
setprecision
(
0
)
<<
std
::
fixed
;
}
else
{
cout
<<
std
::
setprecision
(
2
)
<<
std
::
fixed
;
}
cout
<<
cortex_masks
[
i
].
interpolate
(
xvox
,
yvox
,
zvox
)
/
numsubjects
<<
endl
;
}
}
return
0
;
}
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