Browse Source

Merge 587d2ccab4 into 30522b4013

pull/56/merge
Nick Walker 9 months ago
committed by GitHub
parent
commit
bd09c05d7d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      stretch_funmap/src/stretch_funmap/max_height_image.py

+ 2
- 2
stretch_funmap/src/stretch_funmap/max_height_image.py View File

@ -520,8 +520,8 @@ class MaxHeightImage:
self.rgb_image = np.zeros(s[:2] + (3,), np.uint8)
if self.camera_depth_image is None:
nh.numba_max_height_and_rgb_images(points_to_image_mat, rgb_points, self.image, self.rgb_image, self.m_per_pix, self.m_per_height_unit, self.voi.x_in_m, self.voi.y_in_m, self.voi.z_in_m, verbose=False)
nh.numba_max_height_and_rgb_images(points_to_image_mat, rgb_points.ravel(), self.image, self.rgb_image, self.m_per_pix, self.m_per_height_unit, self.voi.x_in_m, self.voi.y_in_m, self.voi.z_in_m, verbose=False)
else:
nh.numba_max_height_and_rgb_and_camera_depth_images(points_to_image_mat, rgb_points, self.image, self.rgb_image, self.camera_depth_image, self.m_per_pix, self.m_per_height_unit, self.voi.x_in_m, self.voi.y_in_m, self.voi.z_in_m, verbose=False)
nh.numba_max_height_and_rgb_and_camera_depth_images(points_to_image_mat, rgb_points.ravel(), self.image, self.rgb_image, self.camera_depth_image, self.m_per_pix, self.m_per_height_unit, self.voi.x_in_m, self.voi.y_in_m, self.voi.z_in_m, verbose=False)

Loading…
Cancel
Save