Skip to content

Commit

Permalink
implement fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathaniel Moschkin committed Apr 26, 2024
1 parent 8daba64 commit 3114b04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/voyimage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ int VoyImageScanner::HasStar(cv::Mat skillImg, const std::string &skillName)

if (mean.val[0] + mean.val[1] + mean.val[2] < 10) {
return 0;
} else if (mean.val[0] < 5) {
} else if (mean.val[0] < 10) {
std::cout << "Primary " << mean.val[0] << " " << mean.val[1] << " " << mean.val[2] << "\n";
return 1; // Primary
} else if (mean.val[0] + mean.val[1] + mean.val[2] > 100) {
Expand Down

0 comments on commit 3114b04

Please sign in to comment.