Face Recognition With Python 3.10 Tutorial (Webcam)

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

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

  • @Hackerzx
    @Hackerzx ปีที่แล้ว +49

    There is no source code in description !!!

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

    Firstly an excellent tutorial, very well presented. I had a couple of issues with the code and I offer solutions for these in case anyone has the same. Firstly I added the following line of code to remove the file extension for a nicer display:
    name = self.known_face_names[best_match_index]
    # remove the file extension for a neater display
    name = name.split('.')[0]
    I also found with more than one face it would call everyone by the same name. This is because the zip line repeats until the shortest tuple is completed then stops. If a single face is in frame for a while before a second face appears only the first will be annotated. To fix this I reversed the names and location lists to give a last in first out solution. Change line to: for (top, right, bottom, left), name in zip(reversed(self.face_location), reversed(self.face_names)):
    I hope this helps someone.

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

      can you provide us with the code , thanks :)

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

      You said "firstly" twice and had no "secondly."

  • @BeckyBenton
    @BeckyBenton ปีที่แล้ว +36

    Lovely tutorial. I did have a bit of a problem at runtime with small_frame[:, :, ::-1]. I fixed it by calling this, instead: cv2.cvtColor(small_frame, cv2.COLOR_BGR2RGB)

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

      I had the same problem, thanks!

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

      Same 🤝

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

      Thank you ! You saved me !

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

      can u share the source code I m having trouble running in mine

    • @AbhishekSingh-xg3zj
      @AbhishekSingh-xg3zj 8 หลายเดือนก่อน

      Thanks a lot Becky. I wasn't getting any fix for this and I got it from you. Thanks a lot once again.

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

    Hi! when run face_encodings in the while, my fps dorops to 3-4, can i imporove or optimize this function?

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

    Apparently the source code mentioned near 5:00 in video is well hidden. Otherwise, the video is informative. At 75, I like to follow along with the code. Sometimes I do try the code and sometimes not. The source code does make it handy for me when it isn't so well hidden.

  • @swiftt3942
    @swiftt3942 ปีที่แล้ว +9

    where is the code in the description?

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

    such a fun and to-the-point tutorial, thanks so much!

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

    thank you so much for such a huge effort, when trying recognition, it is lagging too much, do you have any idea about what is the problem? thanks in advance

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

    Is it possible to dynamically add photos to the faces folder? For instance, if a face is detected that is not recognized, could the user possibly be promoted to take a screenshot and that picture will be saved to the faces folder and encoded like the others?

  • @가라세상의미사일공방
    @가라세상의미사일공방 ปีที่แล้ว

    You're amazing. No one has ever described it so easily and so succinctly. Thank you.

  • @nordinedanielkebir194
    @nordinedanielkebir194 7 ชั่วโมงที่ผ่านมา

    Hello, I have an error I wanted to test line 41: for image in os.listdir('Faces')
    SyntaxError: expected ':'

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

    getting this error
    error: subprocess-exited-with-error
    × Building wheel for dlib (pyproject.toml) did not run successfully.

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

      same error here...

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

      @@rileymchugh5316 you have to import cmake. Google it online if you need specifics on how to do it. I think I got it from some stack overflow page after a few minutes of searching.

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

      If you are using VS Code on Windows, you have to download dependencies

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

    I dont know why but it says that the face recognition module is not able to be found, Even when I try to import the Face Recongition again it still just wont work. And all I did was try the first part. Is this a version issue or is this something else. Please check out this comment if you have time. Thanks!

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

    Mine its saying dlib cannot be downloaded because there's no project.toml-based projects. Please help😢

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

      hey, i got the same issue. Did yours get solved?

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

    I changed the line and it worked for me
    rgb_small_frame = small_frame[:, :, ::-1]
    rgb_small_frame = cv2.cvtColor(small_frame, cv2.COLOR_BGR2RGB)

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

    Hi Author Its a great article...
    with perfection...
    1) If a show a pic consisting of multiple faces then it only detect just one face at a time...What is the reason for it?
    2) Its quite slow as well...
    Can you guide on these two aspects.
    A great video.

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

    Instead of web cam I wants to use live desktop screen to detect objects, is it possible? And show in desktop rectangle itself?

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

    I got this:
    cv2.error: OpenCV(4.7.0) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src
    esize.cpp:4062: error: (-215:Assertion failed) !ssize.empty() in function 'cv::resize'
    in line 51

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

      eu consegui resolver esse erro agorinha

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

      @@askelardd What language is that...

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

    sir, when i try to running that using my web cam, nothing happen, camera on but no windows show the face recognition, the pop up windows doesn't show image read well

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

    Hi, i have been getting this error: RuntimeError: Unsupported image type, must be 8bit gray or RGB image. I cant find a way to fix it beacause if i use RGB format it tells me that it has to be jpg, png...

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

      I had the same issue and I'm STUCK

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

      this because you don't have setuptools, to solve this open cmd and write this pip install setuptools , if this doesn't solve, then check your numpy version, to check it open cmd write pip list then check numpy version in the list, if it's greater than 1.26.4, then uninstall numpy like this, pip uninstall numpy and then open cmd write pip install numpy==1.26.4

  • @RashedUlIslam-zx5fy
    @RashedUlIslam-zx5fy 2 ปีที่แล้ว

    It's Awesome!! You are great Boss!! ❤❤

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

    So can you only train it on one image per unique face? You can't give it multiple angles of the same face to help it recognize it better?

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

    Hi, I get an error when trying to run the script IndexError: list index out of range. The script finds 2 faces in the faces dir. What can I do solve this error? Thank you in advance

  • @shahnewazparvez4502
    @shahnewazparvez4502 2 ปีที่แล้ว

    Huge help, learned a lot, thank you.

  • @rayendammak7303
    @rayendammak7303 11 หลายเดือนก่อน +2

    thank you , i have a small problem the cam opens just for a second then disappear , any solution please :)

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

      i have the same problem, did you see any solution?

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

      same problem

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

      @@dabeerahmed4802 any solution?

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

    can i make it that when the program sees a new face it saves it and then when it sees it again it remembers it perhaps using a database i dont know?

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

    Great video, but I have a problem: my video crashes as soon as a face gets detected :(
    Im told that the line
    "self.face_encodings = face_recognition.face_encodings(rgb_small_frame, self.face_locations)" is the problem but i have no clue why
    please help because i really want this programm to work because its pretty cool

    • @Loopyengineeringco
      @Loopyengineeringco 2 ปีที่แล้ว

      Same problem... 😢

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

      if you change "rgb_small_frame" to just "small_frame" on that line, it works. Not 100% sure why, maybe Python doesn't like the rgb_small_frame = small_frame[:, :, ::-1] bit at the end '::-1'

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

      ​@@Loopyengineeringco you are right i had the same problem, i solved by changing "rgb_small_frame = small_frame[:, :, ::-1]" with "rgb_small_frame = cv2.cvtColor(small_frame, cv2.COLOR_BGR2RGB)" i hope it will solve your problem as well

  • @RnRSolutions-xp2nh
    @RnRSolutions-xp2nh ปีที่แล้ว +1

    are there any specific version that we need to install Eg : Python , opencv?

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

    great tutorial!!❤

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

    Thank you very much for the tutorial! I have a question, is it still accurate for 50 faces? I am working on a project that needs to distinguish the unknown faces but I find it hard to do because of many encoded faces

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

    Looks like it should run, but when I run the selection from a MacBook, the program doesn't launch, nor do I get an error message.

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

    hey there, i love your tutorial because it is simple and easily understandable.. one question? can we make this as an .exe file and then install it through setup.exe in other computer?

  • @mpoltav2
    @mpoltav2 2 ปีที่แล้ว

    Cool lesson. Thanks!

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

    pls where is the source code i cant find it anywhere

  • @very-very-bored
    @very-very-bored หลายเดือนก่อน

    What is cmake and why can't I install any of this without it?

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

    thanks for the tutorial. it was very helpful.

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

    self.faceEncodings = face_recognition.face_encodings(rgbSmallFrame, self.faceLocations) I keep getting a type error

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

    small_frame = cv2.resize(frame, (1, 1), fx=0.35, fy=0.35)
    how to fix this?

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

    thanks dude it works perfectly

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

    I'm on Windows, and the program runs very slowly and laggy when it detects my face. Is there a way to improve the performance? I notice that your Mac system is running very smoothly. Maybe it's an OS thing? I hope you can reply, thank you~!!

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

      problem is your pc rams, to solve then increase your rams or use good perforce rams at least 8GB

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

    There is no such thing in the tutorial like Training the model? what else if I Want to use it using a trained model?
    kindly brief on this.

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

      Start by learning machine learning

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

      @@Indently Ok I will start to convert it to the machine learning model...thankx for your support.

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

    Hello , where can I download this code?

  • @ديارقاسممحمدعزيز
    @ديارقاسممحمدعزيز ปีที่แล้ว

    Hi bro which algorithm you used?

  • @drewchua6861
    @drewchua6861 2 ปีที่แล้ว

    hello, how can I add some checker in the form of a txt or csv file?

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

    Any option how to recongnize only live faces. I want to make attendance management and dont want some one to show other person pic from mobile and mark attendance

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

      Have you done any progress on that? I am thinking in the same direction...
      How to stop somebody showing the picture for the attendance?

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

      @@asifrehman4214 i am thinking to use windows tab and use this application on windows tab.

  • @namtruong4071
    @namtruong4071 2 ปีที่แล้ว

    I encountered some problems when using this system. If the people are captured in the dataset, face detection is correct. But when there is an unknown person who is not captured in the dataset, face detection is not detected unknow label, it show name of someone in dataset. Can you give me solution ?

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

    my cv2 keeps crashing?

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

    hi i just want to ask how can fix this because im using window 10
    "in run recognition small frame = cv2.resize(frame, (0, 0), fx=0.25, fy=0.25) cv2.error: OpenCV(4.8.1) D:\a\opencv-python\opencv-python\opencv\modules\imgproc\src
    esize.cpp:4062: error: (-215:Assertion failed) !ssize.empty() in function 'cv::resize'"

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

      need help , i fixed

  • @Kiotenhariyo
    @Kiotenhariyo 2 ปีที่แล้ว

    Great presentation - very much appreciated. I am a noob hack messing with python and esp32-cams. Any easy/quick suggestions/references for using this with multiple video streams?

  • @NurAsifAs-Sulaiman
    @NurAsifAs-Sulaiman 11 หลายเดือนก่อน

    may I have the code/github link ?

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

    I think you got left and right mixed up as well. Left is y. Right is the width.

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

    where is code?

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

    does it works with 3.11 python version?

  • @AhmadBakdash07
    @AhmadBakdash07 2 ปีที่แล้ว

    Using Tensorflow isn't better than python face dedication dependencies?

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

    Great tutorial, but where's the source code you mentioned ?

  • @Austin-vz9rt
    @Austin-vz9rt ปีที่แล้ว

    why do i get "cannot find reference 'videocapture' in '__init__.py | __init__.py' " i had to downgrade opencv to get other references to cv2 operational. It didn't fix the video capture issue though. using windows 11, x64 if that makes a difference.

    • @Austin-vz9rt
      @Austin-vz9rt ปีที่แล้ว

      i have no idea what fixed this because i did a million things, but it works now. i downgraded opencv, numpy and imported cv2 as cv2 for starters. i also had to clear open cv cache with some pip command that i already forgot lmao

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

      ​@@Austin-vz9rt hey man, can you please help me on this issue😢

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

    Hello! What app are you using for writting the code?

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

    which version python are you using ?

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

    Thank you so much , everything work with me from the first time without any error 😍

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

      Can you please help me too?
      I'm having couple of issues

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

    I tried to add a face into the folder and got the error IndexError: list index out of range. whats happening?

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

      i had also gotten the same error, its because it can't locate the face from your database of photos. Try uploading a clear photo with a clear background.

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

      When i tried to add a face, it says permission denied. How to tackle that issue?

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

    How to train the model bro for a set of images

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

    thiis really nice. i intend to put this on A web aopp as interface. any idea how?

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

    Thank you so much, my program ran. But it is slow and I want it run fresher and faster. I need the help 😮

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

    My webcam sometimes Not responding how can i solve the problem. but the cam working good.the recognition is strucked sometimes

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

      same issue

  • @flm_thunder.8597
    @flm_thunder.8597 ปีที่แล้ว

    will this work on LFW datasets?

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

    can we implement this in website? if yes..how to?

  • @benjamincorneliojr.8099
    @benjamincorneliojr.8099 10 หลายเดือนก่อน

    the camera opens and working, but after it detects face it stops or lag. HElp

  • @AVTerrorX
    @AVTerrorX 2 ปีที่แล้ว

    I'm getting one problem, an error just occurred, saying 'no module named face_recognition'. How can I solve this problem?

    • @Indently
      @Indently  2 ปีที่แล้ว

      th-cam.com/video/7xbRHiYNSds/w-d-xo.html

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

      ​@@Indently i also need help. My webcam is starting but not showing the names

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

    Could I take more pictures of me, from different angles to make the detection better, also could I use this to detect or even Recognize my cats? Thanks in advance🎉

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

    Hello, I followed your tutorial, but my camera is capturing my face with noticeable lag. Could this be due to my camera's high 1080-pixel resolution, also I'm using the "hog" model for the face.location function?

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

      Same here even after I commented out "self.process_current_frame = not self.process_current_frame"

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

    Hello. I found your video is very important. Thank you for the tutorial. Now my question is I don't want to recognize the static images like photo copy or something else that is static because any person can recognize the face by scanning the static photo copy. So, is there any way to recognize only the live face? Like in your case, obama's photo is recognized but it should not be because any person can get the photo of obama from internet and he/she can just scan it.I hope you understood my question.

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

    can i use vs code rather than pycharm

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

      You can

  • @AhmadBakdash07
    @AhmadBakdash07 2 ปีที่แล้ว

    Can you make it to detect what is on the screen like a dog, cat, human etc. 🤔

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

    I faild to install dlib

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

      Did you manage to fix it?

  • @yourname-scorpion
    @yourname-scorpion 7 หลายเดือนก่อน

    thank you so much!
    it's worked for me.. however, i need to update some config to adapt from my laptop..

  • @anushamarts
    @anushamarts 2 ปีที่แล้ว

    Getting index out of range error can someone help?

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

    very cool video, Please make a tutorial how to install dlib in windows 10 and specify version of python.❤❤

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

      Did you manage to fix it?

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

    Getting error in installing dlib

  • @erikrex0073
    @erikrex0073 2 ปีที่แล้ว

    your tut are soooooooooooooo cool I love

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

      Thanks buddy!

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

    Hey great video! I wrote it on my machine and it worked, just one question tho - I tried to convert the same program to do face detection on a video file instead of the camera stream, but the video plays extremely slowly when its running in the face detection program, like 1/50th the normal speed. Is there anyway you know of to fix this?

    • @RnRSolutions-xp2nh
      @RnRSolutions-xp2nh ปีที่แล้ว

      what versions of python and opencv did you use

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

      Run recognition process in other thread and that's it

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

    Can you do a tutorial for python 3.12

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

    Sir One Question:
    After 05 minutes of working; the system stops detecting images...No detection on the camera.
    Plz can you guide ?

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

    I do not see the code in description 😭😭

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

    thank u so much bro
    heartlyllove u

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

    its so annoyed ! it getting eror! not detecting faces . what u skiped in his video nothing is working as excepted

  • @Sebastian.200x
    @Sebastian.200x ปีที่แล้ว

    Can you make a face recognition tutorial using flask?

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

    How to make web application, where to store data

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

    I can't find the source code !!!!!!!!!

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

    Dlib will not install for me

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

      We’re sorry to hear that you’re facing trouble with this tutorial. We have some suggestions for you:
      1. Try watching the tutorial again to check if you missed something (remember that programming languages are strict, and that uppercase & lowercase characters are completely different.) 

      2. If you’re facing an error, try copying and pasting it into the Google search engine, it’s the fastest way to find the best response for the issue you are facing. 

      3. If it’s still too confusing for you, try taking a step back and working on an easier project to try to improve your programming skills before tackling the project in this video.
      We wish you the best of luck with your project!

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

      If you still need help, reply.

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

      @@fernandez06 Still trying to download dlib but it seems impossible to do :(

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

      @@ano0os050 ok, did you try deleting and downloading it again?

  • @dahiya-vc6xs
    @dahiya-vc6xs ปีที่แล้ว +1

    Where is source code ?

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

    Did not work. I keep getting type errors.

  • @loanpia7718
    @loanpia7718 2 ปีที่แล้ว

    hi, your tutorial so good, I hope the next time you gonna post up about face_Encoding and compare them in the database...~

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

    where is the source code

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

    hi good video but i cant seem to get the source code guthub link an you please share that. Thanks so much would appreciate

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

    I've been trying to instal dlib for so long!! Ugh

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

    Great video....i do not see the source code, can you please add a link?

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

    its just not detecting my face

  • @SUHARTONOSKomMKomUNM
    @SUHARTONOSKomMKomUNM 26 วันที่ผ่านมา

    very good, can you share the code please!

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

    does this work in vs code

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

      Mine worked fine in VS Code, only issue I ran into was that rgb_small_frame would crash my system whenever it detected a face.
      Fixed by rgb_small_frame = cv2.cvtColor(small_frame, cv2.COLOR_BGR2RGB)

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

    its not working