Skip to content

Commit

Permalink
Draw boundary as a very faint blue, as the values from the boundary d…
Browse files Browse the repository at this point in the history
…o not contribute to the mean or area
  • Loading branch information
Seb James committed Jan 26, 2022
1 parent 0cbef68 commit e0ff9db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DM.h
Original file line number Diff line number Diff line change
Expand Up @@ -1432,7 +1432,7 @@ class DM

void draw_boundary (const std::vector<cv::Point>& vp, cv::Mat* _pImg, const cv::Scalar& colour)
{
double alpha = 0.8;
double alpha = 0.1;
for (size_t ii=0; ii<vp.size(); ii++) {
cv::Point cur = vp[ii];
cv::Mat roi = (*_pImg)(cv::Rect(cur.x, cur.y, 1, 1));
Expand Down

0 comments on commit e0ff9db

Please sign in to comment.