Skip to content

Commit

Permalink
Merge pull request #21 from ichiro-its/hotfix/missing-return-value
Browse files Browse the repository at this point in the history
[Hotfix] - Fix Missing Return Value
  • Loading branch information
FaaizHaikal authored Jul 10, 2024
2 parents 440d272 + b5a6308 commit 86e73d7
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 86e73d7

Please sign in to comment.