Skip to content

Commit

Permalink
remove whitespace in name
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanecharette committed Jan 13, 2025
1 parent bf93109 commit f0d2ab7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src-lib/darknet_image.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -853,7 +853,7 @@ Darknet::Image Darknet::bgr_mat_to_rgb_image(const cv::Mat & mat)
cv::split(mat, views);

// create an empty Darknet::Image where the float results will be stored by OpenCV once we convert to CV_32F
Darknet:: Image img = make_image(mat.cols, mat.rows, mat.channels());
Darknet::Image img = make_image(mat.cols, mat.rows, mat.channels());

// note how the cv::Matf is using the Darknet::Image data buffer directly
cv::Mat1f tmp(img.h * 3, img.w, img.data);
Expand Down

0 comments on commit f0d2ab7

Please sign in to comment.