Difference between revisions of "Depicting a cloud of observations on a tilt series"

From Dynamo
Jump to navigation Jump to search
(Created page with "There are several ways of depicting a cloud of points on a set micrographs. =dmarkers= == Depict a static cloud of point == dmarkers <br> offers the possibility of <code>...")
 
Line 16: Line 16:
 
=== Changing the colors programmatically ===
 
=== Changing the colors programmatically ===
  
The graphic objects that represent the points are governed by the <tt>depictor</tt> objects that are stored in the gui object that you recover into the left hand side. Inside this gui, the <tt>shapeSetManager</tt>
+
The graphic objects that represent the points are governed by the <tt>depictor</tt> objects that are stored in the gui object that you recover into the left hand side. Inside this gui, the <tt>shapeSetManager</tt> <br>
 
<code>gui.shapeSetManager.depictors{1}.hPoints.MarkerFaceColor ='c';</code>
 
<code>gui.shapeSetManager.depictors{1}.hPoints.MarkerFaceColor ='c';</code>
  
 
=dtmshow=
 
=dtmshow=
 
In dtmshow, you can use the <t>import</t> option of the GUI to load a [[static cloud of points | ]]
 
In dtmshow, you can use the <t>import</t> option of the GUI to load a [[static cloud of points | ]]

Revision as of 08:59, 8 July 2023

There are several ways of depicting a cloud of points on a set micrographs.

dmarkers

Depict a static cloud of point

dmarkers
offers the possibility of gui = dmarkers(myStack, 'staticCloud',myCloud);


Show a set of markers that can be manually edited on screen

Depicting a set of markers on a tilt series, when those markers are organized as a .dms file.

gui = dmarkers(myStack, 'staticCloud',myCloud);


Changing the colors programmatically

The graphic objects that represent the points are governed by the depictor objects that are stored in the gui object that you recover into the left hand side. Inside this gui, the shapeSetManager
gui.shapeSetManager.depictors{1}.hPoints.MarkerFaceColor ='c';

dtmshow

In dtmshow, you can use the <t>import</t> option of the GUI to load a