Skip to content

Commit 3114b04

Browse files
author
Nathaniel Moschkin
committed
implement fix
1 parent 8daba64 commit 3114b04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/voyimage.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ int VoyImageScanner::HasStar(cv::Mat skillImg, const std::string &skillName)
122122

123123
if (mean.val[0] + mean.val[1] + mean.val[2] < 10) {
124124
return 0;
125-
} else if (mean.val[0] < 5) {
125+
} else if (mean.val[0] < 10) {
126126
std::cout << "Primary " << mean.val[0] << " " << mean.val[1] << " " << mean.val[2] << "\n";
127127
return 1; // Primary
128128
} else if (mean.val[0] + mean.val[1] + mean.val[2] > 100) {

0 commit comments

Comments
 (0)