YOLO11 Tutorial on Object Detection, Segmentation, Pose Estimation & Image Classification

  Рет қаралды 6,899

Code With Aarohi

Code With Aarohi

Күн бұрын

In this video tutorial, we'll learn how to perform object detection, instance segmentation, pose estimation, and image classification using YOLO11.
GitHub: github.com/Aar...
Email id: aarohisingla1987@gmail.com
Ultralytics YOLO11 is a cutting-edge, state-of-the-art (SOTA) model that builds upon the success of previous YOLO versions and introduces new features and improvements to further boost performance and flexibility. YOLO11 is designed to be fast, accurate, and easy to use, making it an excellent choice for a wide range of object detection and tracking, instance segmentation, image classification and pose estimation tasks.

Пікірлер: 37
@muhammadmujtaba-ai
@muhammadmujtaba-ai Ай бұрын
I had been into YOLO for 1.5 years, its really interesting to work with such awsm AI advancements.
@mohammadshahid2114
@mohammadshahid2114 Ай бұрын
Thank you arohi ma'am. For bringing this video.
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
You're welcome!
@soravsingla8782
@soravsingla8782 Ай бұрын
Excellent work
@arpitsharma6055
@arpitsharma6055 Ай бұрын
Really Insightful Ma'am
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
Thank you!
@Sunil-ez1hx
@Sunil-ez1hx Ай бұрын
Excellent content
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
Glad you think so!
@nayanbaishya4077
@nayanbaishya4077 18 күн бұрын
Thank you for such a informative video. I have a question related to keeping multiple versions of cuda. In this video you have shown that you have multiple versions of cuda in your system. Is it possible to install multiple version of cuda in Ubuntu? If possible you may consider making a video on installing and using multiple version of cuda in windows as well as ubuntu. Thanking you in anticipation.🙏🙏
@CodeWithAarohi
@CodeWithAarohi 15 күн бұрын
Yes, it is possible. Follow these steps: 1- Install CUDA Versions: Download the .run or .deb files for each CUDA version you need from NVIDIA's website. Install each version in a unique directory (e.g., /usr/local/cuda-11.2, /usr/local/cuda-11.4, etc.). 2- Set Environment Variables: Configure your environment to use a specific version by setting the CUDA_HOME, PATH, and LD_LIBRARY_PATH variables to the version you need. You can switch between versions by changing these variables.
@nayanbaishya4077
@nayanbaishya4077 14 күн бұрын
@@CodeWithAarohi Thank you...🙏🙏. Your videos are very informative.
@khushbukhushbu1363
@khushbukhushbu1363 26 күн бұрын
Thanks for the video ma'am, Can you please verify whether there is any document or paper stating the architecture of YOLOv11, also the entire code/ model files for YOLO v11? Thanks
@CodeWithAarohi
@CodeWithAarohi 26 күн бұрын
This is the only information I found about YOLO11: docs.ultralytics.com/models/yolo11/
@learn_with_gaddal
@learn_with_gaddal Ай бұрын
Great job🥰 I am working on my graduate project about: detecting people in video and classify them in two categories (kids/adulate). I am using CCTV camera in public area. Can you give me some advice please.
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
Email me at aarohisingla1987@gmail.com
@ahmadtubaishat1597
@ahmadtubaishat1597 21 күн бұрын
which yolo i should used to detect the swimming pools ?
@CodeWithAarohi
@CodeWithAarohi 21 күн бұрын
If you want the newest and possibly best-performing option, go with YOLO11. If you’d rather have a well-tested version with lots of community help, YOLOv8 is a solid choice. Both will work well for detecting swimming pools, but YOLO11 might be a bit better for tougher situations.
@kentjustinegilig3245
@kentjustinegilig3245 Ай бұрын
hi! thank you for this video! I am making my thesis where I am planning to use yolo11 for labelling drivers if they are drowsy, awake, distracted, and if they are covering the camera for safety reasons can you help me? i just learned coding 2 weeks ago
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
What kind of help? If you have any queries you can ask. I will try to help.
@aneerimmco
@aneerimmco Ай бұрын
Thank you :)
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
You're welcome!
@zainn7336
@zainn7336 Ай бұрын
Mam how to make 3d model using 2d images. is there anything there to do this task
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
I never tried it but there are options available to perform this task.
@brpatil_007
@brpatil_007 Ай бұрын
Mam can you make a video on Conversational Image Recognition Chatbot. Please it would helpful..
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
I will try.
@KumarShiva-n8r
@KumarShiva-n8r Ай бұрын
Madam make spoof detection face. Model please and also run an android
@fatima-arbab
@fatima-arbab Ай бұрын
Copy move forgery detection in video using machine learning. Use dataset casia Model yolo
@fatima-arbab
@fatima-arbab Ай бұрын
Please make video
@knowledge53343
@knowledge53343 Ай бұрын
Yes please
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
I will try!
@fatima-arbab
@fatima-arbab Ай бұрын
@@CodeWithAarohi thank u so much 💕
@Robasdelight
@Robasdelight Ай бұрын
How much time you can upload this vedio? Please must share vedio on this topic
@arshmaanali714
@arshmaanali714 Ай бұрын
Plz make videos on gen ai
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
Yes, I will continue that soon.
@antukhan5592
@antukhan5592 Ай бұрын
after 11:41 my camera still turn on, I cant turn it off. how should I turn my camera off with code?
@CodeWithAarohi
@CodeWithAarohi Ай бұрын
import cv2 from ultralytics import YOLO # Load the YOLO model model = YOLO("yolo11n.pt") # Open the video file video_path = "path/to/your/video/file.mp4" cap = cv2.VideoCapture(video_path) # Loop through the video frames while cap.isOpened(): # Read a frame from the video success, frame = cap.read() if success: # Run YOLO inference on the frame results = model(frame) # Visualize the results on the frame annotated_frame = results[0].plot() # Display the annotated frame cv2.imshow("YOLO Inference", annotated_frame) # Break the loop if 'q' is pressed if cv2.waitKey(1) & 0xFF == ord("q"): break else: # Break the loop if the end of the video is reached break # Release the video capture object and close the display window cap.release() cv2.destroyAllWindows()
YOLO11 Custom Object Detection
27:09
Code With Aarohi
Рет қаралды 8 М.
ТЮРЕМЩИК В БОКСЕ! #shorts
00:58
HARD_MMA
Рет қаралды 2,2 МЛН
Ultralytics Yolo (Yolov11). Do you need it?
14:09
Anton Maltsev
Рет қаралды 2,4 М.
YOLO11 Instance Segmentation on Custom dataset
19:40
Code With Aarohi
Рет қаралды 2,9 М.
Auto Image Segmentation using YOLO11 and SAM2
11:32
DSwithBappy
Рет қаралды 1,3 М.
YOLOv11 Object Detection on Custom Dataset | Step-by-Step Guide
19:58
YOLOv8 | Object Detection on a Custom Dataset using YOLOv8
17:41
Code With Aarohi
Рет қаралды 142 М.
How to do Object Detection using ESP32-CAM and Edge Impulse YOLO Model
16:50
YOLO-NAS Custom Object Detection | Fall Detection Using YOLO-NAS
23:25
Code With Aarohi
Рет қаралды 28 М.
Complete YOLO11 Object Detection Tutorial | Windows & Linux
22:29
Muhammad Moin
Рет қаралды 2,3 М.