Skip to content

Commit

Permalink
last merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Mar 2, 2023
1 parent 8888e52 commit f4c6920
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,8 @@ impl ImagesPart {
return;
};

let scale = properties.backproject_scale.into_inner();
let radius_scale = properties.backproject_radius_scale.into_inner();
let scale = *properties.backproject_scale.get();
let radius_scale = *properties.backproject_radius_scale.get();

let (h, w) = (tensor.shape()[0].size, tensor.shape()[1].size);
let dimensions = glam::UVec2::new(w as _, h as _);
Expand All @@ -299,7 +299,7 @@ impl ImagesPart {

scene.primitives.depth_clouds.push(DepthCloud {
world_from_obj,
intrinsics: xxx,
depth_camera_intrinsics: xxx,
radius_scale,
depth_dimensions: dimensions,
depth_data: data,
Expand Down

0 comments on commit f4c6920

Please sign in to comment.