Log of /temp/doc/examples/pyvisi/data_sample_images
Directory Listing
Revision
1387 -
Directory Listing
Modified
Fri Jan 11 07:45:26 2008 UTC
(13 years, 1 month ago)
by
trankine
Restore the trunk that existed before the windows changes were committed to the (now moved to branches) old trunk.
Revision
1211 -
Directory Listing
Modified
Wed Jul 4 05:16:46 2007 UTC
(13 years, 7 months ago)
by
jongui
Original Path:
trunk/doc/examples/pyvisi/data_sample_images
- Fixed some minor bugs.
- Added a new feature called 'MapOnScalarClipWithRotation' that clips a two-dimensional data with a scalar value and subsequently rotating it to create a three-dimensional effect.
- Corresponding examples, test cases and documentation of the new module have also been added.
Revision
1208 -
Directory Listing
Modified
Mon Jul 2 04:46:10 2007 UTC
(13 years, 7 months ago)
by
jongui
Original Path:
trunk/doc/examples/pyvisi/data_sample_images
Made some changes to the Carpet module. When 3D data is used, a cut will be performed using a plane before deformation occurs on the plane. However, if 2D data is used a cut will NOT be performed and deformation will instead occur immediately.
Pyvisi distinguishes 2D from 3D data by retrieving the length of the z-axis. A 2D data will have a z-axis length of zero while a 3D data will have a z-axis length of non-zero. There are exceptions to these rules where some 2D data may have a non-zero z-axis length. However, such exceptions are not taken into account at this stage.
Revision
1205 -
Directory Listing
Modified
Fri Jun 29 04:44:04 2007 UTC
(13 years, 8 months ago)
by
jongui
Original Path:
trunk/doc/examples/pyvisi/data_sample_images
- Fixed a minor bug in the Velocity module.
- Added the Rectangle module which enables rectangles to be created.
- Added corresponding examples and test cases for the Rectangle.
- Updated the guide and necessary epydocs.
Revision
1197 -
Directory Listing
Modified
Mon Jun 18 02:08:34 2007 UTC
(13 years, 8 months ago)
by
jongui
Original Path:
trunk/doc/examples/pyvisi/data_sample_images
Update the way movies are generated. Please refer to the examples.
The user can now either specify the image range(first and last images inclusive):
mov.imageRange(input_directory = PYVISI_EXAMPLE_IMAGES_PATH,
first_image = IMAGE_NAME + "000938.jpg",
last_image = IMAGE_NAME + "000948.jpg")
mov.makeMovie(os.path.join(PYVISI_EXAMPLE_IMAGES_PATH, "movie.mpg"))
or the user can specify a list of images:
lst = ['image1.jpg', 'image5.jpg', 'image7.jpg]
mov.imageList(input_directory = PYVISI_EXAMPLE_IMAGES_PATH, image_list = lst)
mov.makeMovie(os.path.join(PYVISI_EXAMPLE_IMAGES_PATH, "movie.mpg"))
Revision
1191 -
Directory Listing
Modified
Tue Jun 12 05:54:41 2007 UTC
(13 years, 8 months ago)
by
jongui
Original Path:
trunk/doc/examples/pyvisi/data_sample_images
A movie can now be generated within the python script itself by creating an instace of 'Movie'. The 'Movie' instance will in turn execute the 'ppmtompeg' command. The corresponding tests and examples have also been added.
Revision
1189 -
Directory Listing
Modified
Thu Jun 7 05:31:25 2007 UTC
(13 years, 8 months ago)
by
jongui
Original Path:
trunk/doc/examples/pyvisi/data_sample_images
A Scalar Bar can now be displayed by creating an instance of a 'Legend'. The Scalar Bar can either show the scalar data range or vector data range. Corresponding examples and tests have also been added.
Revision
1158 -
Directory Listing
Modified
Tue May 22 04:24:01 2007 UTC
(13 years, 9 months ago)
by
jongui
Original Path:
trunk/doc/examples/pyvisi/data_sample_images
Made some changes to fix the memory leak problem. However, the problem still persists for run_escript_with_lazy_evaluation.py, run_streamline.py and run_streamline_with_lazy_evaluation.py.