This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # pip3 install ultralytics yt-dlp | |
| # yt-dlp https://www.youtube.com/watch?v=YzcawvDGe4Y | |
| import cv2 | |
| from ultralytics import YOLO | |
| BLUE = (255, 0, 0) | |
| GREEN = (0, 255, 0) | |
| RED = (0, 0, 255) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| import rclpy | |
| from sensor_msgs.msg import Image | |
| import cv2 | |
| from cv_bridge import CvBridge | |
| rclpy.init() |