Object Detection 101 Course - Including 4xProjects | Computer Vision

แชร์
ฝัง
  • เผยแพร่เมื่อ 19 ธ.ค. 2024

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

  • @murtazasworkshop
    @murtazasworkshop  ปีที่แล้ว +51

    If you are getting an error while installing requirement “lap==0.4.0” then try installing visual studio C++ complier as shown at 1:10:10.
    Let me know if that solves your issue.

    • @walidazerkane9430
      @walidazerkane9430 ปีที่แล้ว +1

      yes it's working thank you Murtaza

    • @nisr-gs7qe
      @nisr-gs7qe ปีที่แล้ว +2

      i don't have this problem just with lap but also the specific version of opencv-python and ultralytics. I still can't solve it.pls i need some help cause this is my second course iwan not to skip too because of the same problem that i found with pycocotools

    • @sameepshah3835
      @sameepshah3835 ปีที่แล้ว +2

      Please pin this comment my brother, thank you for the fix.

    • @sayyedasifrizvi3301
      @sayyedasifrizvi3301 ปีที่แล้ว

      thanks a lot it did help lots of love from Aligarh Muslim University Aligarh India

    • @atharvchauhan2648
      @atharvchauhan2648 ปีที่แล้ว

      aayin@@sayyedasifrizvi3301

  • @q.u.e.r.t.y
    @q.u.e.r.t.y 11 หลายเดือนก่อน +11

    59:23 You can also get the classnames from the results variable:
    class_names = results[0].names
    print(class_names)
    The only difference is that it will be a dict with index keys as ID numbers and that's probably what you want but can be turned into a list with:
    class_names = results[0].names
    print(list(class_names.values()))

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

      Can you send video file link please

  • @stonecorleone
    @stonecorleone ปีที่แล้ว +4

    59:20
    YOLO already have a name attribute:
    results = model.predict(stream=True, imgsz=512) # source already setup
    names = model.names
    for r in results:
    for c in r.boxes.cls:
    print(names[int(c)])

    • @maaleem90
      @maaleem90 ปีที่แล้ว

      Hi, just wanted to ask someone thing.
      I have learnt concepts like cnn, lstm. Should I learn this or should I learn something else before this?

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

      Can you send video file link please

  • @ayushbanerjee1187
    @ayushbanerjee1187 ปีที่แล้ว +20

    For anyone struggling with the requirements.txt, make sure you have Python 3.10 or above. I was trying to run it on Python 3.9, and it was saying there was some hardware error. I completely deleted and reinstalled python 3.10, and everything works perfectly. Besides that, this was a highly informative course on the YOLO algorithm and its applications. Thank you Murtaza.

    • @ryankomalley
      @ryankomalley 10 หลายเดือนก่อน +2

      This was the fix for me as well. I tried originally installed 3.12, and had tons of issues with the requirement packages. I even tried 3.11, and that was better, but still issues. Only after uninstalling everything and going with JUST 3.10, it worked!

  • @uzaylos
    @uzaylos 3 หลายเดือนก่อน

    You don't need to make 30 to 15 . You extract drawing line func. from second if loop and line will be there longer. 2:13:00
    if limits[0] < cx < limits[2] and limits[1] - 30 < cy < limits[1] + 30:
    if totalCount.count(id) == 0:
    totalCount.append(id)
    cv2.line(img, (limits[0], limits[1]), (limits[2], limits[3]), (0, 255, 0), 5)
    Thank you for everything by the way.

  • @sheikhabdulmunammateen779
    @sheikhabdulmunammateen779 9 หลายเดือนก่อน +2

    2:10:50 Please guide what should I do if I want to count each vehicle category separately. Like cars, bus, truck and motorbike...

  • @flyingmods9568
    @flyingmods9568 ปีที่แล้ว +19

    fantastic work Murtaza, thank you! This made me think of autonomous drones: if you combine Yolo object detection with the Tello camera input and make it go forward as long as it detects objects in the room and stop it, when no longer detecting, you would have a sort of lidar for free...

    • @Moon-D0G
      @Moon-D0G 8 หลายเดือนก่อน +4

      what if drone sees mirror

  • @adayinthelife5496
    @adayinthelife5496 ปีที่แล้ว +7

    You videos are super clean! Nice work.

  • @jimmyjujames
    @jimmyjujames หลายเดือนก่อน

    I made it through your 4:33 hour course in about 4 weeks probably more.
    "Object Detection 101 Course - Including 4xProjects | Computer Vision"
    Most everything worked with very little debugging needed.
    Did not find your bus picture, but google has hundreds of
    pictures of kids getting on a bus and they all worked with your object detection programs.
    I started learning Python this year on a Raspberry Pi5 connecting to various projects on a breadboard.
    When I learned how far object detection has come, I jumped in and was happily learning youtube python some days 13 hours.
    It was making sence and hard to stop learning.
    My goal is to track the ISS and guide my telescope with results.
    Thanks again for a pleasant object detection and tracking experience.
    This is a 5 star course in my opinion.

  • @TensorGrass
    @TensorGrass ปีที่แล้ว +3

    Hello Murtaza
    This is your best video.
    You are a great discloser.
    Thanks for everything

  • @muhammadzohaibhassan552
    @muhammadzohaibhassan552 ปีที่แล้ว +7

    Amazing tutorial, vey well explained. Highly recommended

  • @kagansenkeser4357
    @kagansenkeser4357 ปีที่แล้ว +3

    Ow yeah i was waiting for this thank u very much
    and for people who coulnd't install lap library like me
    in chapter 7 murtaza install visual studio packets it will fix the lap library problem

  • @OG_Truth_Teller
    @OG_Truth_Teller ปีที่แล้ว +5

    May God bless you brother, thanks for the free and helpful content

    • @Piyushraj-ry1kz
      @Piyushraj-ry1kz ปีที่แล้ว

      had you encountered error installing lap package

  • @KyukiBlade
    @KyukiBlade ปีที่แล้ว +10

    This is the best course for beginner like me !
    Awesome work ! Thanks 🙂

  • @joychen1285
    @joychen1285 ปีที่แล้ว +10

    The tutorials, are awesome and easy for beginners to follow up!

  • @gplgomes
    @gplgomes ปีที่แล้ว +25

    Thanks a lot. A very good course. Spread knowledge is humanitary.

    • @Piyushraj-ry1kz
      @Piyushraj-ry1kz ปีที่แล้ว

      had you encountered error installing lap package

  • @tyhaas3w
    @tyhaas3w ปีที่แล้ว

    Its was very helpful. Thank You Man. Im staisfed there is broccoli in classes because they are very helthy. btw. i found reasonable to set terminal shell to cmd.exe by default. Setting>Tools>Terminal > Shell path: switch to cmd.exe

  • @usmanumer9871
    @usmanumer9871 หลายเดือนก่อน +1

    Wow kya baat ha. Lahore ka munda goron ka ustad ban gaya Mashallah 🎉

  • @wassimhfayedh1126
    @wassimhfayedh1126 18 วันที่ผ่านมา

    Thank you, Murtaza Hassan, for sharing your knowledge and inspiring millions through your clear and impactful teachings in computer vision and robotics. Greetings to you from Tunisia!

    • @arhamburad1036
      @arhamburad1036 3 วันที่ผ่านมา

      can you help me with downloading the drivers so that i can use gpu??

  • @thewantedbullofwallstreet
    @thewantedbullofwallstreet ปีที่แล้ว +5

    Am in the right place at the right time. Thanks. i will be very greatful if you do another video with tensorflow ❤️❤️

  • @Abstract_Code
    @Abstract_Code ปีที่แล้ว +3

    I was waiting so long for this tutorial thank you so much!

    • @Piyushraj-ry1kz
      @Piyushraj-ry1kz ปีที่แล้ว

      had you encountered error installing lap package

  • @yoshirovilchez3392
    @yoshirovilchez3392 ปีที่แล้ว +1

    I love this. I think i can get a job finally with this

  • @APMusaafir
    @APMusaafir 11 หลายเดือนก่อน

    Best learning from best teacher !!! you are amazing man !! how easily u have explained everything. Thank you so much !!!1

    • @shyamalanaik8093
      @shyamalanaik8093 9 หลายเดือนก่อน

      In this video full code is explained and given or we have to buy code

  • @itaydagan7459
    @itaydagan7459 4 หลายเดือนก่อน +1

    in 44:46, why there are two loops? the results will show all the detections in some frame, and the boxes will do the same right?

  • @DavidGiannopoulos
    @DavidGiannopoulos ปีที่แล้ว +1

    Dude, i want an object detection / reader / scanner that works over a visor or glasses in real time. Could be very very basic at first but over time it would be an incredibly useful tool for the everyday human.

  • @amirphilip2234
    @amirphilip2234 2 หลายเดือนก่อน

    Man you just made learn the things in 2 hours, I have long been waiting to explore Yolo and today just did it and everything worked perfectly.

  • @bakarali1818
    @bakarali1818 หลายเดือนก่อน

    Completed the project
    What an amazing experience
    Thanks a lot for making this incredible course

    • @arhamburad1036
      @arhamburad1036 3 วันที่ผ่านมา

      can you help me with downloading the drivers so that i can use gpu??

    • @bakarali1818
      @bakarali1818 3 วันที่ผ่านมา

      @arhamburad1036 sorry but I had used CPU

    • @arhamburad1036
      @arhamburad1036 3 วันที่ผ่านมา

      @@bakarali1818 why did you use cpu??

    • @bakarali1818
      @bakarali1818 3 วันที่ผ่านมา

      @@arhamburad1036 due to unavailability of gpu

  • @fabriciomartins2734
    @fabriciomartins2734 11 หลายเดือนก่อน +1

    Congrats for the project! Really awsome.

    • @lishasaini6657
      @lishasaini6657 7 หลายเดือนก่อน

      Hi . Can you please help me with the installation of the nvidia drivers because I am not able to install the nvidia drivers but have successfully installed both toolkit and cudnn.
      It's showing that the NVIDIA installer cannot continue because no nvidia GPU is detected on your system.
      This graphics driver could not find compatible graphics hardware.

  • @newdetektive
    @newdetektive ปีที่แล้ว +1

    This course help me for my learning project. ❤
    Thank you sir.
    I need more specific counting for every class object. Could you make new video tutorials about it sir. Thank you again

  • @danielmichaelraj9665
    @danielmichaelraj9665 ปีที่แล้ว +4

    Murtaza you are doing a great job, its really helpfull for the beginners. To get an audio output what should we do with this coding?

  • @zaqai
    @zaqai ปีที่แล้ว +8

    How beautiful if I had seen your video earlier.
    I not only learned technology, but also practiced English.
    Thanks a lot for your efforts and I will continue to follow you.🥳

    • @Piyushraj-ry1kz
      @Piyushraj-ry1kz ปีที่แล้ว +1

      had you encountered error installing lap package

  • @地天-n7o
    @地天-n7o 11 หลายเดือนก่อน

    I would like to express my sincere thanks for your time, effort, and willingness to share your expertise with the online community. Your contributions have made a significant impact on my learning journey, and I am truly grateful for that.
    Once again, thank you for your exceptional work and for going above and beyond to educate and inspire others. I look forward to exploring more of your content in the future.,you are the best one

  • @iotwork9483
    @iotwork9483 ปีที่แล้ว +1

    amazing you are very professional,,and your teaching style is amazing I easily understand as a begginer😍🥰 ...

  • @users.anonymous
    @users.anonymous 10 หลายเดือนก่อน +1

    Thank you brother..
    Thank you very much 👍😊

  • @dlep9221
    @dlep9221 ปีที่แล้ว

    Thank you very much, your approach is exhaustive and very pedagogic.

    • @lishasaini6657
      @lishasaini6657 7 หลายเดือนก่อน

      Hi . Can you please help me with the installation of the nvidia drivers because I am not able to install the nvidia drivers but have successfully installed both toolkit and cudnn.
      It's showing that the NVIDIA installer cannot continue because no nvidia GPU is detected on your system.
      This graphics driver could not find compatible graphics hardware.

    • @lishasaini6657
      @lishasaini6657 7 หลายเดือนก่อน

      Due to which I am not able to proceed in this project.

  • @nhatpham5797
    @nhatpham5797 ปีที่แล้ว +1

    thank you, hope you make more courses on YOLOv8 like this, wish you a lot of health and happiness

    • @Piyushraj-ry1kz
      @Piyushraj-ry1kz ปีที่แล้ว +1

      had you encountered error installing lap package

    • @skripandthes
      @skripandthes ปีที่แล้ว

      @@Piyushraj-ry1kz what python version you have? i had issues while installing lap package and I downgrade the python version and it all works fine after that

    • @SwastikSaha1204
      @SwastikSaha1204 ปีที่แล้ว

      @@skripandthes Which version

    • @skripandthes
      @skripandthes ปีที่แล้ว +1

      @@SwastikSaha1204 Python 3.9.9, but you can ignore the lap package because it was never used in this course

  • @bozok1903
    @bozok1903 ปีที่แล้ว +1

    The tutorial was excellent, and I gained a wealth of knowledge. I greatly appreciate your dedication and hard work.

    • @BigDaddyRenny
      @BigDaddyRenny ปีที่แล้ว

      Good day, were you able to install lap?

    • @bozok1903
      @bozok1903 ปีที่แล้ว

      @@BigDaddyRenny Good day! Yes, I was able to install all dependencies.

    • @BigDaddyRenny
      @BigDaddyRenny ปีที่แล้ว

      @@bozok1903lap didn't install... I don't know why but I really want this to work.

    • @Santhandharma
      @Santhandharma ปีที่แล้ว +1

      Can I learn computer vision engineering from a laptop which has 4GB RAM and intel R HD 520 graphics card ?

    • @mohamedelmalah6716
      @mohamedelmalah6716 ปีที่แล้ว

      @@Santhandharma I think yes , try the code but I think the difference that as an example - the first project - the video and detection will be slow .

  • @MuhammadAdnan-tq3fx
    @MuhammadAdnan-tq3fx ปีที่แล้ว

    Thank you so much it will help the students specially researchers

  • @CarstenBukholdtAndersen
    @CarstenBukholdtAndersen ปีที่แล้ว +3

    Nice tutorial. The car count is not working 100% as expected - several vehicles change id number close to the red line. So there is a risk that a vehicle can be counted twice. You can see an example of this in the video around 2:17:29 where the red bus and the white truck beside it change ids just before the red line. Not sure if this can be corrected with the Sort parameters?

    • @mohamedelmalah6716
      @mohamedelmalah6716 ปีที่แล้ว

      please any help regarding this error
      mgRegion = cv2.bitwise_and(img, mask)
      cv2.error: OpenCV(4.5.4) D:\a\opencv-python\opencv-python\opencv\modules\core\src\arithm.cpp:214: error:
      -209:Sizes of input arguments do not match) The operation is neither 'array op array' (where arrays have the same size and type), nor 'array op scalar', nor 'scalar op array' in function 'cv::binary_op'

    • @tsh9487
      @tsh9487 ปีที่แล้ว

      @@mohamedelmalah6716 make sure the size of the mask and the video are the same (1280x720)

  • @WASDRGKER
    @WASDRGKER 6 หลายเดือนก่อน

    It's lucky for me to find this video!!! I can finish my homework with this video!

  • @miner_zm6171
    @miner_zm6171 ปีที่แล้ว

    thank you very much for this course it is realy helpfull

  • @kamilgasiorek8548
    @kamilgasiorek8548 ปีที่แล้ว

    great stuff man, cheers from Poland :)

  • @PakDaisy
    @PakDaisy ปีที่แล้ว

    Good Efforts.. Keep it up.. You are the champion

  • @walidkambagha7386
    @walidkambagha7386 7 หลายเดือนก่อน

    I don't know how to thank you but, you really helped me as I wanted a detailed tutorial on how to implement this step by step. Thank you, and keep up the good work.

  • @chibuikeokpala6064
    @chibuikeokpala6064 ปีที่แล้ว

    Thanks so much. this was really educating and interesting.

  • @gnanendrakumar2761
    @gnanendrakumar2761 ปีที่แล้ว

    Good work. Murtaza!. I would like to point one thing in car counter project. Instead of list for tracking counts, you might need to consider dictionary or a set for unique ids.

  • @pilotocomercial
    @pilotocomercial ปีที่แล้ว

    Congratulations!! Very good job!

  • @superheroesjazz2570
    @superheroesjazz2570 3 หลายเดือนก่อน +17

    how can i download th requirement.txt ,from your website, its just showing to copy the text , i mean i couldn't able to download the zip file,do pls help anyone

    • @anandchoubey4708
      @anandchoubey4708 หลายเดือนก่อน

      Just create a new file requirements.txt to that project folder and than copy paste

  • @JavidAhmed-d3d
    @JavidAhmed-d3d ปีที่แล้ว +6

    Hi Murtaza, I am unable to install the lap package and the error says its not a pip issue. A little help here please?

  • @Kalkiigm
    @Kalkiigm ปีที่แล้ว +2

    Also make videos on object segmentation and classification

  • @codingwithteam7262
    @codingwithteam7262 ปีที่แล้ว

    Registration Done 👍
    By the way wonderful course

  • @ibrahimcious
    @ibrahimcious ปีที่แล้ว

    It's really helpful. Thanks for the tutorial!

    • @Piyushraj-ry1kz
      @Piyushraj-ry1kz ปีที่แล้ว

      had you encountered error installing lap package

    • @vitdart
      @vitdart 11 หลายเดือนก่อน

      @@Piyushraj-ry1kz try before pip install wheel

  • @abutahar648
    @abutahar648 9 หลายเดือนก่อน +7

    in 26:42 you said -in your website there is a zip file . but i didn't find any zip file.please help me.also searched in object detection course.but nothing found to download.

  • @ch.minamotohidarii8338
    @ch.minamotohidarii8338 ปีที่แล้ว

    thank for the course ! very useful

  • @rayanali9737
    @rayanali9737 ปีที่แล้ว

    02:47:47 Bicycle at top right

  • @perseferandatakndare465
    @perseferandatakndare465 7 หลายเดือนก่อน

    It's so Details, Thanks Bro ...

  • @chalermgiatthee-asana512
    @chalermgiatthee-asana512 ปีที่แล้ว

    Very useful .Thank you sir

  • @matalomax
    @matalomax ปีที่แล้ว

    Thank a lot for the course!

  • @HarikrishnaNatrajan
    @HarikrishnaNatrajan 7 หลายเดือนก่อน +1

    Excellent video Murtaza. I think you should have figured out by now that in the x,y,w,h system, the x and y refer to the centre of the bounding box and not the top left. That's why you had the rectange starting from the centre of your torso in the initial webcam example with cvzone package.

  • @mohamedelmalah6716
    @mohamedelmalah6716 ปีที่แล้ว

    In Minute 1:42:20 after trying to see the mask worked or not, does any one encountered this error
    imgRegion = cv2.bitwise_and(img, mask)
    cv2.error: OpenCV(4.5.4) D:\a\opencv-python\opencv-python\opencv\modules\core\src\arithm.cpp:214: error:
    -209:Sizes of input arguments do not match) The operation is neither 'array op array' (where arrays have the same size and type), nor 'array op scalar', nor 'scalar op array' in function 'cv::binary_op'

    • @siddhengineer21
      @siddhengineer21 ปีที่แล้ว

      did you find any solution?

    • @delgrave4786
      @delgrave4786 10 หลายเดือนก่อน

      did you fix the error? i have the same issue

    • @qactus4031
      @qactus4031 3 หลายเดือนก่อน

      Image and video sizes do not match. If you're using the car video make sure image is 1280x720. When you download the mask image from the course site it doesn't have correct size, you need to resize it manually or create a mask with correct size yourself.

  • @clagoda
    @clagoda ปีที่แล้ว +6

    Thanks for this great course! However, I fail at installing "lap version 0.4.0". Any ideas? I have Python version 3.10.9. Any help is appreciated.

    • @AnkurSingh-kj9wu
      @AnkurSingh-kj9wu ปีที่แล้ว

      I'm also facing the same issue..
      Tried checking on google but didn't get issue resolved

    • @electroNmore
      @electroNmore ปีที่แล้ว

      Same here. Can't install "lap version 0.4.0" either.

    • @Chris-yq1fw
      @Chris-yq1fw ปีที่แล้ว

      same here, still have no idea how to fix it

    • @sandyshorts2540
      @sandyshorts2540 ปีที่แล้ว

      Is there any solution for this? I am also facing the issue: requirement “lap==0.4.0” not satisfied

    • @Chris-yq1fw
      @Chris-yq1fw ปีที่แล้ว

      reinstall python to ver 3.9.9, worked like a charm, credit to Daniarfa

  • @ZakariaLahcine
    @ZakariaLahcine 4 หลายเดือนก่อน +4

    where can I find the images you set in 26:00

  • @arthurgichuhi
    @arthurgichuhi ปีที่แล้ว

    Murtaza, love your content, and now I just want to know more and more.

  • @mikew2883
    @mikew2883 ปีที่แล้ว

    Excellent tutorial! 👍

  • @rfatozkan336
    @rfatozkan336 7 หลายเดือนก่อน +2

    i cant find images that you use at 26:50 please help me i couldn't find at your's website

  • @jaymehta9714
    @jaymehta9714 5 หลายเดือนก่อน +1

    hello Murtaza.
    firstly, great video. you have explained everything se well.
    in the poker hand project, you have labelled the Ace as 14, which will work fine for the upper straights.
    however for the straight Ace to 5, we need it as 1.
    so we need to write an extra line of code stating that if my list contains, 14, 5, 4, 3, 2 this is also a Straight and not a High Card.
    otherwise all's good.
    once again thank you for this amazing video!

  • @krs7936
    @krs7936 ปีที่แล้ว +3

    Is the project built in video pytorch or Tensorflow based?

  • @sachin2725
    @sachin2725 ปีที่แล้ว

    One more excellent project as usual....waiting for next

  • @ForTheEraOfLove
    @ForTheEraOfLove 7 หลายเดือนก่อน

    The amazing power of machine learning with the blooper@4:27:15 Now all you need is a program to find where a card is on your desk 😅

  • @artificialintelligence584
    @artificialintelligence584 ปีที่แล้ว +1

    Goood Job, Thanks tooo much!
    I Have a question sir, did you make cvzone library or not

  • @WilburNaike
    @WilburNaike ปีที่แล้ว +8

    I can't install with pip the last package (lap==0.4.0 )

    • @vitdart
      @vitdart 11 หลายเดือนก่อน

      error: metadata-generation-failed

    • @vetriselvan9807
      @vetriselvan9807 10 หลายเดือนก่อน +1

      Samer here

  • @pps21april
    @pps21april 15 วันที่ผ่านมา

    Thanks for the video
    It helped me a lot

    • @arhamburad1036
      @arhamburad1036 3 วันที่ผ่านมา

      can you help me with downloading the drivers so that i can use gpu??

    • @pps21april
      @pps21april 3 วันที่ผ่านมา

      @arhamburad1036 used colab to use GPU. Not downloaded any drivers

  • @nikbivation
    @nikbivation ปีที่แล้ว

    thank you so much for this!!

  • @hamdykouta
    @hamdykouta ปีที่แล้ว +2

    thanks a lot for your effort. it is really great work, please keep going

  • @omoklamok
    @omoklamok ปีที่แล้ว +1

    @39:48 how to use not web cam instead IP Cam

  • @shantilalzanwar8687
    @shantilalzanwar8687 ปีที่แล้ว +1

    Useful tutorial, thanks @murtaza. I truly wish the other courses were little inexpensive, so that we can learn from you.

  • @brunognoato8016
    @brunognoato8016 8 หลายเดือนก่อน

    Wow it's is amazing job 😮❤

  • @AviaGaming123
    @AviaGaming123 11 หลายเดือนก่อน +1

    Helpful. Thank you

    • @shyamalanaik8093
      @shyamalanaik8093 9 หลายเดือนก่อน

      In this complete code is explained or we have to buy code??

    • @shyamalanaik8093
      @shyamalanaik8093 9 หลายเดือนก่อน

      Please reply fast

  • @yukomahirobashi6084
    @yukomahirobashi6084 10 หลายเดือนก่อน

    Salam Brother... ❤ from Indonesia.

  • @紫斑蝶-g2j
    @紫斑蝶-g2j ปีที่แล้ว +9

    Not able to install lap = 0.4.0 . Anyone could help?

    • @deepankjadav3969
      @deepankjadav3969 ปีที่แล้ว

      Did you figure it out?

    • @tibrewa6879
      @tibrewa6879 ปีที่แล้ว

      ​@@deepankjadav3969i can fix it but i am facing a different problem

    • @sourabhchhipa9923
      @sourabhchhipa9923 ปีที่แล้ว +1

      ​@@deepankjadav3969 everything will run fine without lap
      Just follow exact steps shown in the video don't change a single thing in resource downloading

    • @hinazahid94
      @hinazahid94 ปีที่แล้ว +2

      3:08

    • @hinazahid94
      @hinazahid94 ปีที่แล้ว

      Good

  • @miyobakaswaya9893
    @miyobakaswaya9893 ปีที่แล้ว

    Excellent tutorial ❤

  • @chipngo9758
    @chipngo9758 ปีที่แล้ว

    Very useful lesson. 💯👍

  • @almosfekete8790
    @almosfekete8790 ปีที่แล้ว

    Can you help me with it? At 1:13:00 when installing CUDA. I have AMD GPU, but I guess thats not possible to use it. What can I do to run YOLO on my GPU?

    • @maaleem90
      @maaleem90 ปีที่แล้ว

      Hi, just wanted to ask someone thing.
      I have learnt concepts like cnn, lstm. Should I learn this or should I learn something else before this?

  • @saurabhsharma488
    @saurabhsharma488 ปีที่แล้ว

    Kindly make video on licence number plate recognition with already made model and custom model

  • @hussainaman1951
    @hussainaman1951 ปีที่แล้ว +3

    I am using python 3.10 but I am not able to download lap library , can someone help me ? or maybe it is not just compatible?

    • @elfincredible9002
      @elfincredible9002 2 หลายเดือนก่อน

      Did you solve this? I'm stuck.

    • @hussainaman1951
      @hussainaman1951 2 หลายเดือนก่อน

      ​@@elfincredible9002 Idk dude, but I am chilling my life right now and passed college.

    • @TheMattias99
      @TheMattias99 2 หลายเดือนก่อน

      @@elfincredible9002 me too

  • @umaissajjad1159
    @umaissajjad1159 ปีที่แล้ว

    Thank you sir it's amazing 🥰

  • @EM_Reviews
    @EM_Reviews 11 หลายเดือนก่อน

    imran khan in this video making me sooooooooo happyyyyyy😍😍🥰🥰

  • @welsonfy5246
    @welsonfy5246 ปีที่แล้ว

    Nice very good job. Possible tracking players football match pose estimation ?

  • @Alienvlg
    @Alienvlg ปีที่แล้ว

    Awesome tutorial! tnx a lot

    • @shyamalanaik8093
      @shyamalanaik8093 9 หลายเดือนก่อน

      In this video full code is explained and given or we have to buy code

  • @ipkeeau6303
    @ipkeeau6303 ปีที่แล้ว +4

    Hi There, I have problem of installing lap 0.4.0, hopefully someone can help. Much appreciated

    • @yonasun2987
      @yonasun2987 ปีที่แล้ว

      hey, i solved this issue. go through chapter 7 in the video and install visual studio the same way he does. that fixed it for me!

  • @3viveking29
    @3viveking29 ปีที่แล้ว +1

    Is people counter project work on real time cctv camera?

  • @mayankmalhotra3523
    @mayankmalhotra3523 ปีที่แล้ว +1

    Are you using any pretrained model or not?

  • @codingwithteam7262
    @codingwithteam7262 ปีที่แล้ว

    Sir I learned a lot of things from this platform😍 and I also did many projects but now I want to implement these things (AI, ML, CV) on Django python web framework
    Please guide us how we do that in Django please please please make a course for that

    • @Piyushraj-ry1kz
      @Piyushraj-ry1kz ปีที่แล้ว +1

      had you encountered error installing lap package

  • @ventilando254
    @ventilando254 11 หลายเดือนก่อน +1

    you can to make available de file dot pt in Project 4 - Poker Hand Detector ?

  • @viniciusnoyoutube
    @viniciusnoyoutube ปีที่แล้ว

    Very good work
    I hope for more :)

  • @johnkebadlejohn
    @johnkebadlejohn ปีที่แล้ว +1

    sir how to do Vehicle counting based on classification??

  • @Virtualik
    @Virtualik ปีที่แล้ว +1

    Хочу сказать тебе что ты молодец. Я однажды делал видеопокер и отдаю себе отчёт что значит кодировать логику работы автомата. Мне понравился твой подход к решению задачи. Молодец!

  • @joaopaulosanfelice
    @joaopaulosanfelice ปีที่แล้ว

    such a great video.

  • @1MS20CS08PawanKumar
    @1MS20CS08PawanKumar ปีที่แล้ว

    Best video on yolo , awesome

  • @sethuraman9884
    @sethuraman9884 ปีที่แล้ว +2

    Sir is it possible to controll my laptop operating system with hand gesture?

    • @murtazasworkshop
      @murtazasworkshop  ปีที่แล้ว +1

      yes possible. Check out our mouse gesture control video.