Take Automatic Selfie Using Python || Become a Selfie Start Using Python || Python Project

Поделиться
HTML-код
  • Опубликовано: 5 окт 2024
  • code: github.com/Pro...
    Credit for this video goes to Geeks for Geeks(www.geeksforgeeks.org/python-smile-detection-using-opencv), Minhaj, Mujahid, Sufi, Nur, OBS (please don't sue us).
    If you face any coding related issues or anything, just join our Discord server and we're waiting for you:
    / discord

Комментарии • 913

  • @Akshaya_H
    @Akshaya_H 3 года назад +55

    From ur crazy explanation now I am the intermediate level of python😃started love programming

  • @ianisabastard
    @ianisabastard 3 года назад +10

    this guy every single day: let's do a fun project and have a lot of fun while making this very very fun project that will be fun!

  • @shakibrajmimit
    @shakibrajmimit 3 года назад +24

    14:34 what a smile dudu 😂

    • @QuantumInsaanEdits
      @QuantumInsaanEdits 3 года назад

      Bruh his face duh i would not smile a happy hulk with big neck and broken teeth

    • @Jose-qk3di
      @Jose-qk3di 3 года назад

      😂 😂 😂

    • @nicrodigital
      @nicrodigital 3 года назад

      😂😆🤣

  • @ChineseDeshiivai
    @ChineseDeshiivai 3 года назад

    আপনার সহজ সাবলীল উপস্থাপনা দেখে মুগ্ধ হই সব সময়। শুভকামনা রইল।
    আমি যদিও চীনা নাগরিক বাংলা মোটামুটি বুঝি, তারপর ও আপনার উপস্থাপনার তুলনা নেই!!!

  • @akshatjha8172
    @akshatjha8172 3 года назад +6

    I made this and this was amazing. It was a bit slow but perfect.
    Thanks Programming Hero

    • @atiaakhtar1059
      @atiaakhtar1059 2 года назад

      kindly can you send main it's github file to me. it not Download to me Plzzz help me because I'm doing project on it.and I have no time to complete it

    • @smallzebra19
      @smallzebra19 2 года назад

      @@atiaakhtar1059 import cv2
      import datetime
      cap = cv2.VideoCapture(1)
      face_cascade = cv2.CascadeClassifier('haarcascade_frontalface_default.xml')
      smile_cascade = cv2.CascadeClassifier('haarcascade_smile.xml')
      while True:
      _, frame = cap.read()
      original_frame = frame.copy()
      gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
      face = face_cascade.detectMultiScale(gray, 1.3, 5)
      for x, y, w, h in face:
      cv2.rectangle(frame, (x, y), (x + w, y + h), (0, 255, 255), 2)
      face_roi = frame[y:y+h, x:x+w]
      gray_roi = gray[y:y+h, x:x+w]
      smile = smile_cascade.detectMultiScale(gray_roi, 1.3, 25)
      for x1, y1, w1, h1 in smile:
      cv2.rectangle(face_roi, (x1, y1), (x1+w1, y1+h1), (0, 0, 255), 2)
      time_stamp = datetime.datetime.now().strftime('%Y-%m-%d-%H-%M-%S')
      file_name = f'selfie-{time_stamp}.png'
      cv2.imwrite(file_name, original_frame)
      cv2.imshow('cam star', frame)
      if cv2.waitKey(10) == ord('q'):
      break

  • @footballbestmomentsclip
    @footballbestmomentsclip 3 года назад +32

    Next vdo:make pyscript(new language) using 100 lines of python codes 😂

  • @rvn4
    @rvn4 3 года назад +20

    Please make some more videos with python, I love your projects!

  • @saikushalanu7254
    @saikushalanu7254 3 года назад +1

    by your teaching i had made all of my python projects sucessfull

  • @dhruvgupta812
    @dhruvgupta812 3 года назад +3

    Bro please start uploading more frequently like once a week, btw loved the vid!

  • @DaniruDEV
    @DaniruDEV 3 года назад +2

    without knowing we have done a simple machine learning project. Thanks alot. ❤️❤️❤️

  • @syedashelima8545
    @syedashelima8545 3 года назад +8

    Please also include c# with unity course in Programming Hero.
    PLEASE 🥺🥺
    This request is from Grandkids 🥺🥺

  • @guddugaming5196
    @guddugaming5196 3 года назад

    You are a very intelligent and real hero of python coding i am big fan you

  • @priyanshubasu14
    @priyanshubasu14 3 года назад +5

    Sir please please make an OS with GUI or else grandma will be angry.

  • @lifelibrary7033
    @lifelibrary7033 3 года назад

    My favourite 🤩 RUclips channel...

  • @SK-qs1cr
    @SK-qs1cr 3 года назад +5

    Sir Please tell me truly
    From where do you get these ideas of python.
    It is a request

  • @SeferDöngel
    @SeferDöngel 3 года назад +1

    I hit the like button before I've watch. We all love grandma :D

  • @neelbanga
    @neelbanga 3 года назад +3

    I love your channel, I was wondering if you had any tips for a small RUclips channel like myself ? Thanks and happy coding!

    • @ProgrammingHero
      @ProgrammingHero  3 года назад +3

      Take love!

    • @ProgrammingHero
      @ProgrammingHero  3 года назад +3

      Be consistent and never compromise your content quality!

    • @neelbanga
      @neelbanga 3 года назад +2

      @@ProgrammingHero Okay then you for the advice! It means a lot!

    • @zenkaiproductions3804
      @zenkaiproductions3804 3 года назад

      @@neelbanga I looked at your channel and you make discord bots,could you teach me how I can make an economy bot?

  • @Jfkckjsnnclskbc
    @Jfkckjsnnclskbc 2 года назад

    This one is Funny and exciting to watching , very effective to learn.

  • @codewithraiju1424
    @codewithraiju1424 3 года назад +3

    Hello Sir, great video..
    Can I share my java gui projects with source code at your discord server? The main project is an IDE which supports 4 programming languages with indendation and text highliting..

  • @jaffer1022
    @jaffer1022 3 года назад +1

    REALLY REALLY YOU ARE A TRUE PROGRAMMING HERO!!!!😌 I'VE BECOME YOUR FAN AFTER WATCHING ALL YOU VIDEOS LITERALLY!! THANKS MAN ✌🏻:-)❤️

  • @someone-fc5yj
    @someone-fc5yj 3 года назад +3

    Can you do mobile app tutorial pls?

  • @techgaming8517
    @techgaming8517 3 года назад +2

    Your videos are so awsome that my AI teacher ask me to teach him how to make audio book in python

  • @musnadinfotech2668
    @musnadinfotech2668 3 года назад +1

    Grandma boy, your a legend and we learn alot from you, we can just say thank you and keep helping and doing the good work, can you kindly make a tutorial on how to create an Images forgery detector using python. If you do that Grandma will be happy with us.

  • @DhlaminiCreations
    @DhlaminiCreations 3 года назад

    This is my new favourite channel

    • @ProgrammingHero
      @ProgrammingHero  3 года назад

      thank you so much for your supports you guys rock.

  • @saifhasan2097
    @saifhasan2097 3 года назад

    I was just wondering that why it seems like I saw you somewhere before. But then I realized. WOW man, proud of you. Love from BD!!💖💖✨

  • @sreeharsha2560
    @sreeharsha2560 3 года назад +2

    Love the Programming hero app
    Thank you for teaching us coding in a simple enjoyable way
    Truely thank you

    • @ProgrammingHero
      @ProgrammingHero  3 года назад

      Glad you liked it. Let's get connected through our discord server. Link given in the description!

    • @sreeharsha2560
      @sreeharsha2560 3 года назад

      @@ProgrammingHero I'm already in
      But not feeling much helpful
      Do even official members from programming hero app present there in that discord server who clear our doubts

  • @satyam5465
    @satyam5465 3 года назад +1

    From you I learn python deeply thank 😊

  • @_digi_arts3533
    @_digi_arts3533 3 года назад +2

    This guy is a hero afterall

  • @prabinsubedi5742
    @prabinsubedi5742 3 года назад

    I will watch all your videos now.

  • @prabinsubedi5742
    @prabinsubedi5742 3 года назад

    I got your channel just now and i am in love with your videos
    So much understanding and helpful.

  • @Serean_Miles
    @Serean_Miles 3 года назад

    I don't code any more but came back in your channel as I was missing your sweet voice sir🤗🤗

  • @DailyBread_HQ
    @DailyBread_HQ 3 года назад +1

    As always very brilliant

  • @mankeshmeena9106
    @mankeshmeena9106 3 года назад

    Amazing ! !!!! Video 🔥🔥🔥
    I love Hackers 💕

  • @abidapon7977
    @abidapon7977 3 года назад +1

    Love you boss...I'm a student of batch 4🥰

  • @anonymously_elite
    @anonymously_elite 3 года назад +2

    Thanks a lot you are amazing 😉.... Pleases make a video on how to make python code to exe... please, hope you make it... 🙏

  • @googleservices3889
    @googleservices3889 3 года назад

    Man I never commented but your channel is the best keep working

  • @SAIKIRAN-SKY
    @SAIKIRAN-SKY 3 года назад

    Good job friend all the best 👍

  • @-legendarygamer-
    @-legendarygamer- 3 года назад

    You are really hero of programming love you

  • @nezarshamea6991
    @nezarshamea6991 3 года назад

    Thanks programming hero. Your application gave me a certificate that made me so so so proud of my self!!! Thanks man

  • @shreshthsharma5535
    @shreshthsharma5535 3 года назад +1

    Awesome content dude

  • @Rc-bp6ih
    @Rc-bp6ih 3 года назад

    Hello sir
    I watched our video and it is really helpful

  • @Nemiyt
    @Nemiyt 3 года назад

    Dude us a living legend, just discovered your channel lol keep it up
    *Fun*

  • @reviewfanta
    @reviewfanta 2 года назад

    I love jhonkar brother... ❣️❣️❣️

  • @kalpanashende8055
    @kalpanashende8055 2 года назад

    You are awesome sir please start a python complete course on RUclips ☺️☺️

  • @nithinmathewjoji7471
    @nithinmathewjoji7471 3 года назад +1

    thanks dude because of u i started loving python and the grand maaa of urs

    • @ProgrammingHero
      @ProgrammingHero  3 года назад +1

      Happy to hear that!

    • @nithinmathewjoji7471
      @nithinmathewjoji7471 3 года назад +1

      Sir it would be helpful if u could tell me how to download those cascade files
      I searched a lot and cannot find any legit sources

  • @zenkaiproductions3804
    @zenkaiproductions3804 3 года назад +2

    Could you teach us how to make more games with pygame,I still dont quite get it?

  • @_Jitesh_
    @_Jitesh_ 2 года назад +1

    Interviewer: what is python?
    Me: It .. It .... Is a romantic lang.. aa.. I mean my grandma uses it so...it is..
    **"Selected"**

  • @erawanthewise8227
    @erawanthewise8227 3 года назад +1

    This is amazing, a fun way to learn Python!

    • @ProgrammingHero
      @ProgrammingHero  3 года назад

      Thank you so much for your support really glad that you think like that.

  • @rashadtanjim
    @rashadtanjim 3 года назад +1

    Wow. It's a great lesson! Thanks, brother.

  • @teunstegeman8212
    @teunstegeman8212 3 года назад

    Yay the best programmer in the world is back!!!!!!

  • @one-shotff3183
    @one-shotff3183 3 года назад +1

    Where does our legend go😴😴
    We want back our legend 💕💕💕

    • @ProgrammingHero
      @ProgrammingHero  3 года назад +2

      Legend is taking time to make a legendary comeback.

    • @one-shotff3183
      @one-shotff3183 3 года назад +1

      @@ProgrammingHero Yeeeeee
      Bro
      You wins my heart 💕💕💕

  • @jasrajacharya7061
    @jasrajacharya7061 3 года назад +1

    Sir your video is superb please make a video how to make calculator

    • @ProgrammingHero
      @ProgrammingHero  3 года назад

      Thank you so much for the love. We will surely try to make a video on that.

  • @dennisamtit
    @dennisamtit 3 года назад

    Thank u bro for bring this project I was getting little difficult to understand python but with project I can understand and I can learn alot thank u so much andJesus bless grow more ❤️

  • @opgamer-uq9vm
    @opgamer-uq9vm 3 года назад

    Love from nepal your new subscriber🙏❤

  • @V_Eedits
    @V_Eedits 3 года назад

    I'm so excited see your next video bro 😎

  • @meranameshubham
    @meranameshubham 3 года назад +2

    Sir i have written the program of tesla car but how do i set that program in my car

  • @parnilvyawahare9808
    @parnilvyawahare9808 3 года назад

    please make a video on : create our own online lecture bot and helper. which would save our time table of online lecture ,remember which lecture to join when give you reminders and such interesting features etc. and also has a feature of voice control and in case teacher ask you a question and you don't know the answer it will help you doing it . please make it

  • @yadavsfilm530
    @yadavsfilm530 3 года назад +1

    Plz make a video on search engine
    (Biggest fan)

  • @nezarshamea6991
    @nezarshamea6991 3 года назад +1

    This is insane. Keep the great work ♥️♥️♥️🤘🏻👍🏻

  • @mr.anonymous6640
    @mr.anonymous6640 3 года назад +2

    Why grandma gone in hibernation from a month 🤔😂😂

  • @anantchandak9574
    @anantchandak9574 3 года назад

    The best python thing for me

  • @Kensingtonhawk
    @Kensingtonhawk 3 года назад

    Pls make a bug bounty course as well.
    I have ur app and im loving the ethical hacking, python and web development course.

  • @mrkartik7597
    @mrkartik7597 3 года назад

    10:29 Vey funny😂😂

  • @rachanajain4816
    @rachanajain4816 3 года назад +1

    Sir you are awesome

  • @vaishaliraut3939
    @vaishaliraut3939 3 года назад +1

    Yesss

    • @ProgrammingHero
      @ProgrammingHero  3 года назад

      here you goooooooooooo thanks for your support.Means a lot.

  • @rscgaming8673
    @rscgaming8673 3 года назад +1

    Lovely

  • @_KS_99
    @_KS_99 3 года назад

    i need more tutorial good job broh

  • @i_am__naveen_kumar
    @i_am__naveen_kumar 3 года назад

    Do a video, how to hit first like and first comment after uploading a video, that I have subscribed on the RUclips channel. Simply to be the first commenter and first liker. Using python.

  • @shilpask9601
    @shilpask9601 2 года назад

    stunning explanation..!

  • @jitheshkurian4161
    @jitheshkurian4161 3 года назад

    I love your all projects

    • @ProgrammingHero
      @ProgrammingHero  3 года назад

      Thanks man! join our discord server, and lets stay connected. Link given in the description!

  • @annatalkshow
    @annatalkshow 3 года назад +1

    I clicked the 1k like button now grand ma will send me gifts 😁

    • @ProgrammingHero
      @ProgrammingHero  3 года назад

      yeah, to claim your gift, join our discord server!! Link given in the description

  • @peaceforever3661
    @peaceforever3661 3 года назад

    Programming Hero is LOVE ❤️❤️❤️❤️

  • @blackendgamer6984
    @blackendgamer6984 3 года назад +1

    Boss of python

  • @p_pro2301
    @p_pro2301 3 года назад +1

    Sir I love your videos
    But Iam having a question that weather buying pycharm professional nesessary for a beginner
    Please reply

  • @jasrajacharya7061
    @jasrajacharya7061 3 года назад +1

    Please make more videos

  • @manansinfotech2414
    @manansinfotech2414 3 года назад

    OP Bro You have full support from me!!!!!!!!

  • @mr.anonymous8410
    @mr.anonymous8410 3 года назад

    Lol the description was nice ..

  • @minusharma1738
    @minusharma1738 3 года назад

    Lol I follow your GitHub and get what you are making 😂 few days ago

  • @noob5032
    @noob5032 2 года назад

    Please make videos on opencv and mediapipe for detection of objects,hands,or face etc

  • @ajaysinha1422
    @ajaysinha1422 Год назад

    Just amazing

  • @saadahmedkhan3897
    @saadahmedkhan3897 3 года назад

    This guy after 1 year: Make Ultrone with 10000 lines of python

  • @Saikiran-nr5wl
    @Saikiran-nr5wl 3 года назад +1

    Bro in screen recording software, the playback speed is not normal speed, instead it's 1.5x speed more... Why so??????
    Please reply.. 🙏🙏

    • @codewithraiju1424
      @codewithraiju1424 3 года назад +1

      Use obs software for screen recording. Most people use it

  • @aseemgupta3364
    @aseemgupta3364 3 года назад +1

    Hi Sir,
    I am a student applying for college and I am very much confused should I take admission in college or enroll myself in a other cs (python , django) course as it has more benefits and can be done in a short period of time as compared of college.
    But just these courses do not provide you a degree, what should I do please help I'm very much confused
    Please help

    Sir Your answer matter to me a lot
    some related questions to this are
    is degree the only way I can get a job in programming
    can the other online course will provide me a job
    (I'm very much interested in python I have learned a lot from you and have explore many library and packages,modules)
    what should I do please help

  • @khalidhasan2624
    @khalidhasan2624 8 месяцев назад

    That was extraordinary

  • @venkateshk788
    @venkateshk788 3 года назад +1

    Hello Sir, hope you are fine... Could you make the ditch chrome and create own browser part 2? As you mentioned in that video. Please make it...thanks

    • @ProgrammingHero
      @ProgrammingHero  3 года назад +1

      We're trying our best! Keep watching!

    • @venkateshk788
      @venkateshk788 3 года назад

      @@ProgrammingHero 😊 Thanks for replying...You are the best i am also using your App it’s quite amazing 😉... It’s me who have reported a bug in Python Code playground... Thanks for everything... Sorry 😐 if I’ve disturbed 😦 you... Again thank you 😊 so much...
      * I didn’t expect that you’ll reply to my comment 😝 *

  • @arponmondal1680
    @arponmondal1680 3 года назад

    Vai ajke programming hero fb page er top fan badge paici❤️

    • @ProgrammingHero
      @ProgrammingHero  3 года назад

      Alhamdulillah really happy for you , keep learning and help others to learn. Thank you so much for your efforts.

  • @sarath9129
    @sarath9129 3 года назад

    Crazy explanation bro

  • @introvertvsextrovert747
    @introvertvsextrovert747 Год назад +1

    Hey, life saver can please add GUI in this code like an app type structure, instead of code alone

  • @thenewworld5964
    @thenewworld5964 3 года назад

    keep up ur great work,good luck, when u will do a video with this title: Dont search for a girl friend build ur own | making an AI Doll using python

  • @techcrafts6157
    @techcrafts6157 3 года назад

    Wow you make a Camera without numpy

  • @techwithrg45
    @techwithrg45 3 года назад +2

    Sir what is scale factor ?

  • @silumilustatus
    @silumilustatus 3 года назад +1

    Sir when i copy the pip file the msg is occur " 'pip' is not recognized as an internal or external command, operable program or batch file. "

    • @ProgrammingHero
      @ProgrammingHero  3 года назад

      You can join our discord channel for any kind of code related help the link is in the description box. Thanks

  • @kavithar1518
    @kavithar1518 3 года назад +1

    Sir you have created a ide but it is not taking inputs do you have any solution

  • @chandusmarttechtuts1557
    @chandusmarttechtuts1557 3 года назад +1

    Sir how can you swipe an object in pygame with touch event in mobile sir, please tell me sir I am strucked to do this key event sir.

  • @techwithrg45
    @techwithrg45 3 года назад +2

    Sir pls make snake 🐍 game using python pygame
    Pls upload new videos

  • @YashGupta-yj9nm
    @YashGupta-yj9nm 3 года назад

    u R god level youtuber ur videos are amazing love from india

  • @strongcitytv6686
    @strongcitytv6686 2 года назад +2

    Where are you bro
    Am waiting for next video 😩

  • @BatMan-mk8tf
    @BatMan-mk8tf 3 года назад +1

    Sir put some machine learning projects

    • @ProgrammingHero
      @ProgrammingHero  3 года назад +1

      sure wll do, thanks for the suggestions. You guys are awesome.

  • @hmrocky45
    @hmrocky45 3 года назад

    Glad to C U again!!! And after all the video is awesome

  • @xakepmandy
    @xakepmandy 3 года назад

    Great Job Brother 👌👌👌👌👌