MCPcopy Create free account
hub / github.com/d62lu/3DCTN / pyplot_draw_volume

Function pyplot_draw_volume

visualizer/pc_utils.py:203–208  ·  view source on GitHub ↗

vol is of size vsize*vsize*vsize output an image to output_filename

(vol, output_filename)

Source from the content-addressed store, hash-verified

201
202
203def pyplot_draw_volume(vol, output_filename):
204 """ vol is of size vsize*vsize*vsize
205 output an image to output_filename
206 """
207 points = volume_to_point_cloud(vol)
208 pyplot_draw_point_cloud(points, output_filename)
209
210
211

Callers

nothing calls this directly

Calls 2

volume_to_point_cloudFunction · 0.85
pyplot_draw_point_cloudFunction · 0.85

Tested by

no test coverage detected