![Ultralytics Profile](https://pbs.twimg.com/profile_images/1612780295010369536/FUiBp8Ci_x96.jpg)
Ultralytics
@ultralytics
Followers
5K
Following
4K
Statuses
3K
Simpler. Smarter. Further.
Frederick, MD
Joined February 2014
Number plate recognition (ANPR) with Ultralytics YOLO11 & GPT-4o Mini! π Check out Abirami Vina's latest blog as we explore how to build an ANPR system using Ultralytics YOLO11 for plate detection and GPT-4o Mini for text recognition. Learn more β‘οΈ #AI
0
2
9
π Ultralytics v8.3.74 is live! β¨ Highlights: - π§ Fixed Ray Tune callback issues - π Improved deterministic training - πΈ Added PIL image support #AI #ML #Ultralytics
0
1
7
Boost your detection accuracy with Ultralytics YOLO11 & SAHI π By slicing large images, SAHI enhances YOLO11's ability to detect small, dense objects. Check out the visual comparison below.π Learn moreβ‘οΈ #YOLO11 #SAHI #ObjectDetection #DeepLearning
0
3
15
RT @seeedstudio: π One-click local deployment: now you can easily run @Ultralytics #YOLO models on #reComputer Jetson! Check out our Jetsoβ¦
0
2
0
RT @muhammdrizwanmr: Luggage counting at the airport using @ultralytics YOLO11𧳠Fine-tuned YOLO11 model on the suitcase dataset has been uβ¦
0
4
0
A look at Ultralytics YOLO11 in a logistic scenario! π Whether youβre improving safety in warehouses or streamlining transportation processes, Ultralytics has you covered. Learn more β‘οΈ #AI
0
1
8
Using computer vision for underwater detection! π Abdelrahman Elgendy's new blog dives into how vision AI can reshape marine monitoring with models like Ultralytics YOLO11 making processes faster, smarter, and more scalable. Learn more β‘οΈ #AI
0
2
8
Package identification and segmentation with Ultralytics YOLO11! π¦ @AbiramiVina's latest blog explores how Ultralytics YOLO11 can be custom-trained using the @roboflow Package Segmentation Dataset to improve logistics workflows. Learn more β‘οΈ
0
2
8
π Ultralytics `v8.3.73` is here! π Docker images now on GHCR & Docker Hub π€ Updated NVIDIA Jetson support w/ PyTorch 2.2.0 π₯ New YouTube tutorial in docs #AI #MachineLearning
0
1
5
Code π """" import cv2 from ultralytics import solutions cap = cv2.VideoCapture("Path/to/video/file.mp4") assert cap.isOpened(), "Error reading video file" w, h, fps = (int(cap.get(x)) for x in (cv2.CAP_PROP_FRAME_WIDTH, cv2.CAP_PROP_FRAME_HEIGHT, cv2.CAP_PROP_FPS)) # Video writer video_writer = cv2.VideoWriter("heatmap_output.avi", cv2.VideoWriter_fourcc(*"mp4v"), fps, (w, h)) # In case you want to apply object counting + heatmaps, you can pass region points. # region_points = [(20, 400), (1080, 400)] # Define line points # region_points = [(20, 400), (1080, 400), (1080, 360), (20, 360)] # Define region points # region_points = [(20, 400), (1080, 400), (1080, 360), (20, 360), (20, 400)] # Define polygon points # Init heatmap heatmap = solutions.Heatmap( show=True, # Display the output model=", # Path to the YOLO11 model file colormap=cv2.COLORMAP_PARULA, # Colormap of heatmap # region=region_points, # If you want to do object counting with heatmaps, you can pass region_points # classes=[0, 2], # If you want to generate heatmap for specific classes i.e person and car. # show_in=True, # Display in counts # show_out=True, # Display out counts # line_width=2, # Adjust the line width for bounding boxes and text display ) # Process video while cap.isOpened(): success, im0 = ) if not success: print("Video frame is empty or video processing has been successfully completed.") break im0 = heatmap.generate_heatmap(im0) video_writer.write(im0) cap.release() video_writer.release() cv2.destroyAllWindows() """"
0
0
3
RT @muhammdrizwanmr: Blur face in digital ads with @ultralytics YOLO11! β€οΈβπ₯ I used the face detection model with object blurring feature!β¦
0
7
0
Maximize efficiency with computer-vision-driven product counting on factory lines! π Optimize production, reduce errors, and boost productivity with Ultralytics YOLO11. Learn more β‘οΈ #AI #Automation #ManufacturingTech #SmartFactory
0
2
10
Computer vision is helping in civil engineering! π§ Abdelrahman Elgendy's new blog dives into how Vision AI models like Ultralytics YOLO11 can help on construction sites, from detecting vehicles to ensuring PPE compliance. Learn more β‘οΈ #AI
0
1
5