Skip to content

Commit

Permalink
AM-65 Fix wrong pixels count in detected objects
Browse files Browse the repository at this point in the history
  • Loading branch information
ben committed Apr 3, 2024
1 parent 59ad26d commit a99ee8f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyze/algorithm/ObjectBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace am::analyze::algorithm
class ObjectBase
{
public:
explicit ObjectBase(const size_t row, const size_t col) : mPixelsCount(1),
explicit ObjectBase(const size_t row, const size_t col) : mPixelsCount(0),
mLeft(col),
mMin_height(row),
mRight(col),
Expand Down

0 comments on commit a99ee8f

Please sign in to comment.