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
1f716177
Commit
1f716177
authored
17 years ago
by
Saad Jbabdi
Browse files
Options
Downloads
Patches
Plain Diff
deal with transformation from conformed fs space to voxel space
parent
24b98ce2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ptx_meshmask.cc
+28
-5
28 additions, 5 deletions
ptx_meshmask.cc
with
28 additions
and
5 deletions
ptx_meshmask.cc
+
28
−
5
View file @
1f716177
...
@@ -4,7 +4,8 @@
...
@@ -4,7 +4,8 @@
#include
"ptx_meshmask.h"
#include
"ptx_meshmask.h"
#include
"streamlines.h"
#include
"streamlines.h"
#include
"shapeModel/shapeModel.h"
using
namespace
shapemodel
;
using
namespace
std
;
using
namespace
std
;
using
namespace
NEWIMAGE
;
using
namespace
NEWIMAGE
;
using
namespace
TRACT
;
using
namespace
TRACT
;
...
@@ -39,19 +40,40 @@ void meshmask()
...
@@ -39,19 +40,40 @@ void meshmask()
counter
.
initialise
();
counter
.
initialise
();
Seedmanager
seedmanager
(
counter
);
Seedmanager
seedmanager
(
counter
);
Matrix
mm_to_vox
(
4
,
4
);
mm_to_vox
<<
-
1
<<
0
<<
0
<<
(
seeds
.
xsize
()
-
1
)
/
2
<<
0
<<
0
<<
-
1
<<
(
seeds
.
zsize
()
-
1
)
/
2
<<
0
<<
1
<<
0
<<
(
seeds
.
ysize
()
-
1
)
/
2
<<
0
<<
0
<<
0
<<
1
;
// shapeModel * model1 = new shapeModel;
// model1->load_vtk(opts.meshfile.value(),1);
// model1->meshReg(&mseeds, mm_to_vox);
// model1->setShapeMesh(0,mseeds);
// model1->setImageParameters(seeds.xsize(),seeds.ysize(),seeds.zsize(),seeds.xdim(),seeds.ydim(), seeds.zdim());
// Mesh m = model1->getTranslatedMesh(0);
// for(vector<Mpoint*>::iterator i = m._points.begin();i!=m._points.end();i++){
// cout<<(*i)->get_coord().X<<" "<<(*i)->get_coord().Y<<" "<<(*i)->get_coord().Z<<endl;
// }
ColumnVector
fs_coord_mm
(
4
),
xyz_vox
,
seeddim
(
3
);
ColumnVector
fs_coord_mm
(
4
),
xyz_vox
,
seeddim
(
3
);
seeddim
<<
seeds
.
xdim
()
<<
seeds
.
ydim
()
<<
seeds
.
zdim
();
seeddim
<<
seeds
.
xdim
()
<<
seeds
.
ydim
()
<<
seeds
.
zdim
();
ColumnVector
dir
(
3
);
ColumnVector
dir
(
3
);
int
keeptotal
=
0
;
int
keeptotal
=
0
;
for
(
vector
<
Mpoint
*>::
iterator
i
=
mseeds
.
_points
.
begin
();
i
!=
mseeds
.
_points
.
end
();
i
++
){
for
(
vector
<
Mpoint
*>::
iterator
i
=
mseeds
.
_points
.
begin
();
i
!=
mseeds
.
_points
.
end
();
i
++
){
if
((
*
i
)
->
get_value
()
>
0
){
//
if((*i)->get_value() > 0){
fs_coord_mm
<<
(
*
i
)
->
get_coord
().
X
<<
(
*
i
)
->
get_coord
().
Y
<<
(
*
i
)
->
get_coord
().
Z
<<
1.0
;
fs_coord_mm
<<
(
*
i
)
->
get_coord
().
X
<<
(
*
i
)
->
get_coord
().
Y
<<
(
*
i
)
->
get_coord
().
Z
<<
1.0
;
xyz_vox
=
seeds
.
qform_mat
().
i
()
*
fs_coord_mm
;
// xyz_vox = seeds.qform_mat().i()*fs_coord_mm
xyz_vox
=
mm_to_vox
*
fs_coord_mm
;
float
x
=
xyz_vox
(
1
);
float
y
=
xyz_vox
(
2
);
float
z
=
xyz_vox
(
3
);
float
x
=
xyz_vox
(
1
);
float
y
=
xyz_vox
(
2
);
float
z
=
xyz_vox
(
3
);
Pt
newPt
(
x
,
y
,
z
);
(
*
i
)
->
_update_coord
=
newPt
;
seeds
(
round
(
x
),
round
(
y
),
round
(
z
))
=
1
;
seeds
(
round
(
x
),
round
(
y
),
round
(
z
))
=
1
;
...
@@ -59,9 +81,10 @@ void meshmask()
...
@@ -59,9 +81,10 @@ void meshmask()
dir
<<
(
*
i
)
->
local_normal
().
X
<<
(
*
i
)
->
local_normal
().
Y
<<
(
*
i
)
->
local_normal
().
Z
;
dir
<<
(
*
i
)
->
local_normal
().
X
<<
(
*
i
)
->
local_normal
().
Y
<<
(
*
i
)
->
local_normal
().
Z
;
keeptotal
+=
seedmanager
.
run
(
round
(
x
),
round
(
y
),
round
(
z
),
true
,
-
1
,
dir
);
keeptotal
+=
seedmanager
.
run
(
round
(
x
),
round
(
y
),
round
(
z
),
true
,
-
1
,
dir
);
}
//
}
}
}
mseeds
.
update
();
mseeds
.
save
(
"test.vtk"
,
3
);
//return;
//return;
// for(int z=0;z<seeds.zsize();z++){
// for(int z=0;z<seeds.zsize();z++){
...
...
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