opacity on fusion2DMethod for many ROIs

Questions about Anatomist manipulation

Moderators: denghien, riviere

Post Reply
denghien
Posts: 209
Joined: Mon Apr 05, 2004 1:35 pm
Location: IFR49 / SHFJ Orsay
Contact:

opacity on fusion2DMethod for many ROIs

Post by denghien »

Hi Denis,

I'm working on a pyanatomist script in order to create a fusion2Method between a lot of ROIs (12) and a T1 template.
It works correctly, but the mixing rate is very automatically low because of the number of ROIs. So the opacity of ROIs is very low.
Then I would like to set up the parameter linMixFactor to 90 for each interim fusion.
I see where I can change that for the "whole" fusion, but not for each one.

Is there a method or a dictionary on the fusion object to grab all "sub-fusions" and change the parameter ?

Thanks in advance for your help :)

Isa
User avatar
riviere
Site Admin
Posts: 1361
Joined: Tue Jan 06, 2004 12:21 pm
Location: CEA NeuroSpin, Saint Aubin, France
Contact:

Re: opacity on fusion2DMethod for many ROIs

Post by riviere »

Hi Isabelle,
There is a way to set this, although I admit it is not as convenient as you could hope. You may use the [url http://brainvisa.info/doc/anatomist-4.4 ... arams.html]TexturingParams[/url] command to set the mixing rate for a texture vs the next ones. You have to do this for each weight between a given texture (image) and the next one: for instance if you have 3 images, you should set the mixing rate for texture 0 and 1, and so on. You can also set different mixing modes for the different "layers".
For instance, something like:

Code: Select all

a = anatomist.Anatomist()
a.execute('TexturingParams', objects=[roi_fusion], texture_index=0, mode='linear', rate=0.9)
a.execute('TexturingParams', objects=[roi_fusion], texture_index=1, mode='max_channel')
etc.

Denis
Post Reply