Skip to content

Commit

Permalink
MAINT: fix compile errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
oddkiva committed Dec 10, 2023
1 parent c6cece7 commit 333a31c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ namespace DO::Sara {
comment += "\n\tsquaredEll = " + to_string(squared_ell);
comment += "\n\tK = " + to_string(K);
comment += "\n\trho_min = " + to_string(rho_min);
comment + "_inlierThres_" + to_string(inlier_thres);
comment += "\n\tinlierThres = " + to_string(inlier_thres);
print_stage(comment);

// Get subset of matches.
Expand Down
2 changes: 1 addition & 1 deletion cpp/examples/Shakti/Vulkan/hello_vulkan_image/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class VulkanImageRenderer : public kvk::GraphicsBackend
glfwSetFramebufferSizeCallback(window, framebuffer_resize_callback);
}

_vstream.open(_vpath);
_vstream.open(_vpath.string());
const auto image_host = sara::from_rgb8_to_rgba8(_vstream.frame());

// Rescale the x coordinates of the vertices so that it matches that video
Expand Down

0 comments on commit 333a31c

Please sign in to comment.