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

แชร์
ฝัง
  • เผยแพร่เมื่อ 13 ต.ค. 2024
  • 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.

ความคิดเห็น • 30

  • @muhammadmujtaba-ai
    @muhammadmujtaba-ai 11 วันที่ผ่านมา

    I had been into YOLO for 1.5 years, its really interesting to work with such awsm AI advancements.

  • @mohammadshahid2114
    @mohammadshahid2114 12 วันที่ผ่านมา +1

    Thank you arohi ma'am. For bringing this video.

  • @soravsingla8782
    @soravsingla8782 10 วันที่ผ่านมา

    Excellent work

  • @Sunil-ez1hx
    @Sunil-ez1hx 7 วันที่ผ่านมา

    Excellent content

  • @learn_with_gaddal
    @learn_with_gaddal 8 วันที่ผ่านมา

    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  8 วันที่ผ่านมา +1

      Email me at aarohisingla1987@gmail.com

  • @kentjustinegilig3245
    @kentjustinegilig3245 7 วันที่ผ่านมา

    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  6 วันที่ผ่านมา

      What kind of help? If you have any queries you can ask. I will try to help.

  • @arpitsharma6055
    @arpitsharma6055 12 วันที่ผ่านมา

    Really Insightful Ma'am

  • @brpatil_007
    @brpatil_007 8 วันที่ผ่านมา

    Mam can you make a video on Conversational Image Recognition Chatbot. Please it would helpful..

  • @aneerimmco
    @aneerimmco 12 วันที่ผ่านมา

    Thank you :)

  • @zainn7336
    @zainn7336 12 วันที่ผ่านมา

    Mam how to make 3d model using 2d images. is there anything there to do this task

    • @CodeWithAarohi
      @CodeWithAarohi  12 วันที่ผ่านมา

      I never tried it but there are options available to perform this task.

  • @KumarShiva-n8r
    @KumarShiva-n8r 11 วันที่ผ่านมา

    Madam make spoof detection face. Model please and also run an android

  • @fatima-arbab
    @fatima-arbab 12 วันที่ผ่านมา +2

    Copy move forgery detection in video using machine learning.
    Use dataset casia
    Model yolo

    • @fatima-arbab
      @fatima-arbab 12 วันที่ผ่านมา

      Please make video

    • @knowledge53343
      @knowledge53343 12 วันที่ผ่านมา +1

      Yes please

    • @CodeWithAarohi
      @CodeWithAarohi  12 วันที่ผ่านมา +2

      I will try!

    • @fatima-arbab
      @fatima-arbab 11 วันที่ผ่านมา

      @@CodeWithAarohi thank u so much 💕

    • @Robasdelight
      @Robasdelight 11 วันที่ผ่านมา

      How much time you can upload this vedio?
      Please must share vedio on this topic

  • @arshmaanali714
    @arshmaanali714 12 วันที่ผ่านมา

    Plz make videos on gen ai

    • @CodeWithAarohi
      @CodeWithAarohi  12 วันที่ผ่านมา

      Yes, I will continue that soon.

  • @antukhan5592
    @antukhan5592 5 วันที่ผ่านมา

    after 11:41 my camera still turn on, I cant turn it off. how should I turn my camera off with code?

    • @CodeWithAarohi
      @CodeWithAarohi  4 วันที่ผ่านมา

      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()