Skip to content

Commit

Permalink
Merge branch 'master' into enhancement/set-blob-size-based-on-model-c…
Browse files Browse the repository at this point in the history
…onfig
  • Loading branch information
mbsaloka committed Jul 14, 2024
2 parents 45834c3 + 028c2c2 commit b1be56d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ninshiki_cpp/utils/contours.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ Contours::Contours()

Contours::Contours(std::vector<std::vector<cv::Point>> contours)
{
contours = contours;
this->contours = contours;
}

Contours::Contours(cv::Mat binary_mat)
Expand Down Expand Up @@ -336,6 +336,8 @@ std::vector<std::vector<cv::Point>> Contours::split_left(float x)
left_contours.push_back(left_contour);
}
}

return left_contours;
}
std::vector<std::vector<cv::Point>> Contours::split_right(float x)
{
Expand Down

0 comments on commit b1be56d

Please sign in to comment.