Skip to content

Commit

Permalink
検出結果の文字の色を青から白に変更
Browse files Browse the repository at this point in the history
  • Loading branch information
YusukeKato committed Dec 5, 2023
1 parent a1a8154 commit b1b3ceb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/camera_line_follower_component.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ void Camera_Follower::detecting_line(const cv::Mat & input_frame, cv::Mat & resu
cv::circle(result_frame, mt_point, 30, cv::Scalar(0, 0, 255), 2, cv::LINE_4);
cv::putText(
result_frame, text, cv::Point(0, 30),
cv::FONT_HERSHEY_SIMPLEX, 1, cv::Scalar(255, 0, 0), 2);
cv::FONT_HERSHEY_SIMPLEX, 1, cv::Scalar(255, 255, 255), 2);
} else {
object_is_detected_ = false;
}
Expand Down

0 comments on commit b1b3ceb

Please sign in to comment.