annotate icqsol_add_texture.py @ 0:26440148d313 draft default tip

Uploaded
author iuc
date Tue, 23 Aug 2016 14:12:03 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
26440148d313 Uploaded
iuc
parents:
diff changeset
1 #!/usr/bin/env python
26440148d313 Uploaded
iuc
parents:
diff changeset
2 import argparse
26440148d313 Uploaded
iuc
parents:
diff changeset
3 import shutil
26440148d313 Uploaded
iuc
parents:
diff changeset
4
26440148d313 Uploaded
iuc
parents:
diff changeset
5 import icqsol_utils
26440148d313 Uploaded
iuc
parents:
diff changeset
6
26440148d313 Uploaded
iuc
parents:
diff changeset
7 # Parse Command Line.
26440148d313 Uploaded
iuc
parents:
diff changeset
8 parser = argparse.ArgumentParser()
26440148d313 Uploaded
iuc
parents:
diff changeset
9 parser.add_argument('--input', dest='input', help='Shape dataset selected from history')
26440148d313 Uploaded
iuc
parents:
diff changeset
10 parser.add_argument('--input_file_format_and_type', dest='input_file_format_and_type', help='Input file format and type')
26440148d313 Uploaded
iuc
parents:
diff changeset
11 parser.add_argument('--input_dataset_type', dest='input_dataset_type', help='Input dataset_type')
26440148d313 Uploaded
iuc
parents:
diff changeset
12 parser.add_argument('--input_texture', dest='input_texture', help='Image dataset selected from history')
26440148d313 Uploaded
iuc
parents:
diff changeset
13 parser.add_argument('--input_texture_file_format', dest='input_texture_file_format', help='Input texture file format')
26440148d313 Uploaded
iuc
parents:
diff changeset
14 parser.add_argument('--max_edge_length', dest='max_edge_length', type=float, default=float('inf'), help='Maximum edge length')
26440148d313 Uploaded
iuc
parents:
diff changeset
15 parser.add_argument('--output', dest='output', help='Output dataset')
26440148d313 Uploaded
iuc
parents:
diff changeset
16 parser.add_argument('--output_vtk_type', dest='output_vtk_type', help='Output VTK type')
26440148d313 Uploaded
iuc
parents:
diff changeset
17
26440148d313 Uploaded
iuc
parents:
diff changeset
18 args = parser.parse_args()
26440148d313 Uploaded
iuc
parents:
diff changeset
19
26440148d313 Uploaded
iuc
parents:
diff changeset
20 input_format, input_file_type = icqsol_utils.get_format_and_type(args.input_file_format_and_type)
26440148d313 Uploaded
iuc
parents:
diff changeset
21 tmp_dir = icqsol_utils.get_temp_dir()
26440148d313 Uploaded
iuc
parents:
diff changeset
22
26440148d313 Uploaded
iuc
parents:
diff changeset
23 # Instantiate a ShapeManager for loading the input.
26440148d313 Uploaded
iuc
parents:
diff changeset
24 shape_mgr = icqsol_utils.get_shape_manager(input_format, args.input_dataset_type)
26440148d313 Uploaded
iuc
parents:
diff changeset
25
26440148d313 Uploaded
iuc
parents:
diff changeset
26 # Get the vtk polydata from the input dataset.
26440148d313 Uploaded
iuc
parents:
diff changeset
27 vtk_poly_data = shape_mgr.loadAsVtkPolyData(args.input)
26440148d313 Uploaded
iuc
parents:
diff changeset
28
26440148d313 Uploaded
iuc
parents:
diff changeset
29 # Apply the texture to the shape's surface.
26440148d313 Uploaded
iuc
parents:
diff changeset
30 vtk_poly_data = shape_mgr.addTextureToVtkPolyData(vtk_poly_data,
26440148d313 Uploaded
iuc
parents:
diff changeset
31 texture_file=args.input_texture,
26440148d313 Uploaded
iuc
parents:
diff changeset
32 max_edge_length=args.max_edge_length,
26440148d313 Uploaded
iuc
parents:
diff changeset
33 texture_file_format=args.input_texture_file_format)
26440148d313 Uploaded
iuc
parents:
diff changeset
34
26440148d313 Uploaded
iuc
parents:
diff changeset
35 # Define the output file format and type (the output_format can only be 'vtk').
26440148d313 Uploaded
iuc
parents:
diff changeset
36 output_format, output_file_type = icqsol_utils.get_format_and_type(args.output_vtk_type)
26440148d313 Uploaded
iuc
parents:
diff changeset
37 tmp_output_path = icqsol_utils.get_temporary_file_path(tmp_dir, output_format)
26440148d313 Uploaded
iuc
parents:
diff changeset
38
26440148d313 Uploaded
iuc
parents:
diff changeset
39 # Make sure the ShapeManager's writer is vtk.
26440148d313 Uploaded
iuc
parents:
diff changeset
40 shape_mgr.setWriter(file_format=icqsol_utils.VTK, vtk_dataset_type=icqsol_utils.POLYDATA)
26440148d313 Uploaded
iuc
parents:
diff changeset
41
26440148d313 Uploaded
iuc
parents:
diff changeset
42 # Save the output.
26440148d313 Uploaded
iuc
parents:
diff changeset
43 shape_mgr.saveVtkPolyData(vtk_poly_data=vtk_poly_data, file_name=tmp_output_path, file_type=output_file_type)
26440148d313 Uploaded
iuc
parents:
diff changeset
44 shutil.move(tmp_output_path, args.output)