Differences between revisions 2 and 3
Revision 2 as of 2009-03-28 16:04:08
Size: 702
Comment:
Revision 3 as of 2009-03-28 16:04:51
Size: 728
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:

And more informaion...

To make a projection you must have your 3D model loaded into python, and you must be able to define your projection direction as a Transform object. See Using the EMAN2 Transform class and the Transform turorial page for more information on the Transform object. Also, for more information on Euler angles see the Sparx wiki page.

   1 a = test_image_3d(1)
   2 proj = a.project("standard",Transform()) # this makes a projection along the z axis
   3 t = Transform({"type":"eman","alt":15}
   4 proj2 = a.project("standard",t) # now the projection is off axis
   5 display([proj,proj2])

And more informaion...

EMAN2/Tutorials/make_a_projection (last edited 2022-02-18 00:31:06 by TunayDurmaz)