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

Поделиться
HTML-код
  • Опубликовано: 21 ноя 2024

Комментарии • 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 Месяц назад +1

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

  • @soravsingla8782
    @soravsingla8782 Месяц назад

    Excellent work

  • @arpitsharma6055
    @arpitsharma6055 Месяц назад

    Really Insightful Ma'am

  • @Sunil-ez1hx
    @Sunil-ez1hx Месяц назад

    Excellent content

  • @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  Месяц назад +1

      Email me at aarohisingla1987@gmail.com

  • @nayanbaishya4077
    @nayanbaishya4077 24 дня назад

    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  20 дней назад +1

      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 20 дней назад

      @@CodeWithAarohi Thank you...🙏🙏. Your videos are very informative.

  • @khushbukhushbu1363
    @khushbukhushbu1363 Месяц назад

    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  Месяц назад

      This is the only information I found about YOLO11: docs.ultralytics.com/models/yolo11/

  • @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.

  • @ahmadtubaishat1597
    @ahmadtubaishat1597 27 дней назад

    which yolo i should used to detect the swimming pools ?

    • @CodeWithAarohi
      @CodeWithAarohi  26 дней назад

      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.

  • @aneerimmco
    @aneerimmco Месяц назад

    Thank you :)

  • @fatima-arbab
    @fatima-arbab Месяц назад +2

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

  • @brpatil_007
    @brpatil_007 Месяц назад

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

  • @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.

  • @KumarShiva-n8r
    @KumarShiva-n8r Месяц назад

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

  • @arshmaanali714
    @arshmaanali714 Месяц назад

    Plz make videos on gen ai

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