Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
Michiel Cottaar
fslpy
Commits
22758294
Commit
22758294
authored
9 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Negative colour map control parameters are being passed into GL14
fragment program (but not used yet).
parent
cdbc68e2
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
fsl/fsleyes/gl/gl14/glvolume_frag.prog
+17
-1
17 additions, 1 deletion
fsl/fsleyes/gl/gl14/glvolume_frag.prog
fsl/fsleyes/gl/gl14/glvolume_funcs.py
+9
-7
9 additions, 7 deletions
fsl/fsleyes/gl/gl14/glvolume_funcs.py
with
26 additions
and
8 deletions
fsl/fsleyes/gl/gl14/glvolume_frag.prog
+
17
−
1
View file @
22758294
...
...
@@ -38,6 +38,14 @@
# the range). Clipping values are assumed to be
# normalised to the image texture value range.
#
# program.local[6] - Negative colour map control. The (x) component
# is a boolean flag controlling whether the negative
# colour map is used. The (y) component is the display
# range centre (the value above which the regular
# colour map is used, and below which the negative
# colour map is used), as a voxel value, normalised to
# the image texture value range.
#
# Outputs:
#
# result.color - The fragment colour
...
...
@@ -49,9 +57,12 @@ TEMP voxCoord;
TEMP voxClipLo;
TEMP voxClipHi;
TEMP voxValue;
TEMP posColour;
TEMP negColour;
PARAM imageShape = program.local[4];
PARAM clipping = program.local[5];
PARAM negCmap = program.local[6];
# This matrix scales the voxel value to
# lie in a range which is appropriate to
...
...
@@ -71,6 +82,8 @@ MOV voxCoord, fragment.texcoord[1];
# from 3D image texture
TEX voxValue, fragment.texcoord[0], texture[0], 3D;
# Test the low clipping range
SUB voxClipLo, voxValue.x, clipping.x;
...
...
@@ -101,6 +114,9 @@ MAD voxValue, voxValue, voxValXform[0].x, voxValXform[3].x;
# look up the appropriate colour
# in the 1D colour map texture
TEX result.color, voxValue.x, texture[1], 1D;
TEX posColour, voxValue.x, texture[1], 1D;
TEX negColour, voxValue.x, texture[2], 1D;
MOV result.color, posColour;
END
This diff is collapsed.
Click to expand it.
fsl/fsleyes/gl/gl14/glvolume_funcs.py
+
9
−
7
View file @
22758294
...
...
@@ -93,19 +93,21 @@ def updateShaderState(self):
# And the clipping range, normalised
# to the image texture value range
invClip
=
1
if
opts
.
invertClipping
else
-
1
clipLo
=
opts
.
clippingRange
[
0
]
*
\
self
.
imageTexture
.
invVoxValXform
[
0
,
0
]
+
\
self
.
imageTexture
.
invVoxValXform
[
3
,
0
]
clipHi
=
opts
.
clippingRange
[
1
]
*
\
self
.
imageTexture
.
invVoxValXform
[
0
,
0
]
+
\
self
.
imageTexture
.
invVoxValXform
[
3
,
0
]
xform
=
self
.
imageTexture
.
invVoxValXform
invClip
=
1
if
opts
.
invertClipping
else
-
1
useNegCmap
=
1
if
opts
.
enableNegativeCmap
else
0
clipLo
=
opts
.
clippingRange
[
0
]
*
xform
[
0
,
0
]
+
xform
[
3
,
0
]
clipHi
=
opts
.
clippingRange
[
1
]
*
xform
[
0
,
0
]
+
xform
[
3
,
0
]
texZero
=
0.0
*
xform
[
0
,
0
]
+
xform
[
3
,
0
]
shaders
.
setVertexProgramVector
(
0
,
shape
+
[
0
])
shaders
.
setFragmentProgramMatrix
(
0
,
voxValXform
)
shaders
.
setFragmentProgramVector
(
4
,
shape
+
[
0
])
shaders
.
setFragmentProgramVector
(
5
,
[
clipLo
,
clipHi
,
invClip
,
0
])
shaders
.
setFragmentProgramVector
(
6
,
[
useNegCmap
,
texZero
,
0
,
0
])
gl
.
glDisable
(
arbvp
.
GL_VERTEX_PROGRAM_ARB
)
gl
.
glDisable
(
arbfp
.
GL_FRAGMENT_PROGRAM_ARB
)
...
...
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