Easy to make Keylogger in Python
11:42
Text Recognition from Images
6:54
2 жыл бұрын
Deepfake Voice Clone AI - No Code
1:43
Build a AI ChatBot in Python - EASY
17:36
How to make SMART BOTS to play games!
12:29
How to make a progress bar in Python
6:32
Пікірлер
@savemysoul4112
@savemysoul4112 21 күн бұрын
Thank you sir! I currently worked in similar project. Now for further analysis, how do i record EAR reading and store it into CSV?
@spoornachandra8744
@spoornachandra8744 26 күн бұрын
Read the readme file and use conda prompt
@arunprogramer5577
@arunprogramer5577 Ай бұрын
HELLO 25th comment
@antoninotroisi6585
@antoninotroisi6585 Ай бұрын
To fast say it slow, i am French talking!!
@shibainuit2159
@shibainuit2159 Ай бұрын
No link
@God_OfGame
@God_OfGame Ай бұрын
thank you bro
@kathirVel-du6pj
@kathirVel-du6pj 2 ай бұрын
where is tamil
@thomas-nk7kx
@thomas-nk7kx 2 ай бұрын
Where can I find the next upload of these series? :)
@The-Void-Show-
@The-Void-Show- 2 ай бұрын
Hey man there's no module named recognize_google plz tell me how to fix it
@saadlasharii
@saadlasharii 2 ай бұрын
lem me know if you got the solution!
@antoj1360
@antoj1360 2 ай бұрын
For those who are looking for the code correction on the video part, here is the updated code guys I've tried and got the input import cv2 import os from tensorflow.keras.preprocessing.image import img_to_array from tensorflow.keras.models import load_model from tensorflow.keras.applications.mobilenet_v2 import preprocess_input import numpy as np # Load the face cascade and the mask detection model faceCascade = cv2.CascadeClassifier("haarcascade_frontalface_alt2.xml") model = load_model("mask_recog.h5") def face_mask_detector(frame): gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) faces = faceCascade.detectMultiScale(gray, scaleFactor=1.1, minNeighbors=5, minSize=(60, 60), flags=cv2.CASCADE_SCALE_IMAGE) faces_list = [] preds = [] for (x, y, w, h) in faces: face_frame = frame[y:y+h, x:x+w] face_frame = cv2.cvtColor(face_frame, cv2.COLOR_BGR2RGB) face_frame = cv2.resize(face_frame, (224, 224)) face_frame = img_to_array(face_frame) face_frame = np.expand_dims(face_frame, axis=0) face_frame = preprocess_input(face_frame) faces_list.append(face_frame) if len(faces_list) > 0: preds = model.predict(np.vstack(faces_list)) for i, (pred, (x, y, w, h)) in enumerate(zip(preds, faces)): (mask, withoutMask) = pred label = "Mask" if mask > withoutMask else "No Mask" color = (0, 255, 0) if label == "Mask" else (0, 0, 255) label = "{}: {:.2f}%".format(label, max(mask, withoutMask) * 100) cv2.putText(frame, label, (x, y - 10), cv2.FONT_HERSHEY_SIMPLEX, 1, color, 2) cv2.rectangle(frame, (x, y), (x + w, y + h), color, 3) return frame # Set up video capture and output cap = cv2.VideoCapture('video.mp4') if not cap.isOpened(): print("Error: Could not open video.") exit() ret, frame = cap.read() if not ret: print("Error: Could not read the first frame.") cap.release() exit() frame_height, frame_width, _ = frame.shape out = cv2.VideoWriter('output.avi', cv2.VideoWriter_fourcc('M', 'J', 'P', 'G'), 10, (frame_width, frame_height)) print("Processing Video...") while cap.isOpened(): ret, frame = cap.read() if not ret: break output = face_mask_detector(frame) out.write(output) # Release resources cap.release() out.release() print("Done processing video.") you can copy it and can use it on the colab
@mr_timuchin674
@mr_timuchin674 2 ай бұрын
я тебя люблю, ты лучшее, что происходило в этом мире, желаю счастья и здоровья тебе и всей твоей семье,❤❤❤❤
@Shiftready
@Shiftready 3 ай бұрын
Oh my God replace your smoke detector batteries FFS!!!!
@danieldare2640
@danieldare2640 3 ай бұрын
Liked and subscribed awesome work thank you very much for the video and the channel
@aaditya9030
@aaditya9030 3 ай бұрын
from kerala💘
@SliserMusic
@SliserMusic 3 ай бұрын
If you run code on someone else's processor, the results of that execution are no longer yours. When something is "free", the product is you.
@alfandirifaul
@alfandirifaul 3 ай бұрын
is there any tutorial about that?
@NANDHAKUMAR-gm7vh
@NANDHAKUMAR-gm7vh 4 ай бұрын
how can i use this for an video source or web cam
@r.s.e.9846
@r.s.e.9846 4 ай бұрын
Thanks. Had to change up the code a little but works now!
@AvegailBarredo
@AvegailBarredo 2 ай бұрын
What code did you change it didnt work for me
@malcolmrainers
@malcolmrainers 4 ай бұрын
Pretty sure this is deepfake lip sync
@mahfoozcoachinggroup236
@mahfoozcoachinggroup236 5 ай бұрын
can i clone your project ?
@NinjaTTT
@NinjaTTT 5 ай бұрын
Why python, why??!
@KavyaRamakrishna-ou1dc
@KavyaRamakrishna-ou1dc 5 ай бұрын
I can't understand how to save extra file hand folder please help me
@spoornachandra8744
@spoornachandra8744 5 ай бұрын
numpy int error it is showing
@kareem_ahmed957
@kareem_ahmed957 Ай бұрын
did you managed to solve it or what did you do can you please help?
@spoornachandra8744
@spoornachandra8744 Ай бұрын
@kareem_ahmed957 use anaconda prompt
@spoornachandra8744
@spoornachandra8744 Ай бұрын
@@kareem_ahmed957 use conda prompt and the readme file
@rohanbhandari2192
@rohanbhandari2192 27 күн бұрын
How did you resolve the error? It'll be great if you respond
@spoornachandra8744
@spoornachandra8744 26 күн бұрын
@@rohanbhandari2192 read the readme file use conda prompt
@saranyasannu8256
@saranyasannu8256 5 ай бұрын
sir how to find accuracy of these recognizer
@animallovers4995
@animallovers4995 5 ай бұрын
bhi kuch acha ho ya na ho ending tune mzy ki ha
@sonalimodivlogs8801
@sonalimodivlogs8801 5 ай бұрын
can yo pls provide the link of colab
@MuhamadNoorIman
@MuhamadNoorIman 6 ай бұрын
hi, wanna ask, why the images are not appear, on cell 26? can you help me out?
@Inam-Rab
@Inam-Rab 6 ай бұрын
Have to checkout stack overflow after this
@yakshithsyyakshith7535
@yakshithsyyakshith7535 6 ай бұрын
its only showing surprice accurency level 38
@muhayminamazid9130
@muhayminamazid9130 6 ай бұрын
Can you Please help me? The picture you have uploaded the program can only detect those two. It doesn’t detect the pictures from outside.
@sayanidutta612
@sayanidutta612 7 ай бұрын
sir I am facing a problem , the code is compiling but it can't detect my voice. what should I do now?
@anirudhshreenivas3714
@anirudhshreenivas3714 7 ай бұрын
Can you make a video for the same project with new versions of module?
@mattvideoeditor
@mattvideoeditor 7 ай бұрын
"no code" lol
@HanumanCartoonforu
@HanumanCartoonforu 7 ай бұрын
Send source code
@paracastillo1
@paracastillo1 7 ай бұрын
Hi Misbah! Is there somewhere you share this and other codes that you use in your videos? Thanks! PS Or if anyone has these lines already transcribed toshare thanks in advanced!
@thanuvm7199
@thanuvm7199 7 ай бұрын
Hlo sir
@JoeDoeAppz
@JoeDoeAppz 7 ай бұрын
How can you select a region of interest with your mouse cursor and then save that selection to the clipboard, where you can paste it onto Microsoft Paint or Microsoft Word?
@abdulahadali32
@abdulahadali32 8 ай бұрын
github link plz
@archit_opo
@archit_opo 8 ай бұрын
We have enter the Google Account Password?
@ruhi-ic2cv
@ruhi-ic2cv 8 ай бұрын
where we can get this github link
@Slimchipmunk446
@Slimchipmunk446 9 ай бұрын
coolbeans
@ahmadxrizvi
@ahmadxrizvi 9 ай бұрын
I want to classify face shape for a school project but no one in my team knows ml, can you please guide me?
@iamdikshith
@iamdikshith 9 ай бұрын
is it optimal to do frame by frame?
@hemantchauhan6437
@hemantchauhan6437 9 ай бұрын
NEED HELP! I am making a website where user can upload a pdf but I want that pdf to upload only if that pdf has images of only HANDWRITTEN text. Thank you for reading.
@drm8164
@drm8164 9 ай бұрын
please, how to make a software with opencv applications and sell it to a custumer?
@LostPostProductions
@LostPostProductions 9 ай бұрын
For anyone running into a "No module named 'distutils'" Error try running the following: pip install setuptools This will install distutils which was removed from Python in version 3.12 apparently.
@my581c4
@my581c4 9 ай бұрын
Are u a care package? because u must've fallen from heaven
@IRAnimer
@IRAnimer 5 ай бұрын
Yeah i agree❤​@@my581c4
@UtterNoobness
@UtterNoobness 4 ай бұрын
I spent HOURS trying to figure out what was wrong 🥲
@yyyeo7276
@yyyeo7276 9 ай бұрын
hey brother thank you so much for everything, i tried using your code but right now I'm working on image instead of webcam video so I modified the code a little bit. I noticed that the code only work for pure horizontal text not even slightly slanted, the bounding box fail to locate the text correctly if the text is slanted a little...not sure is it the code issue or the frozen_east_text_detection.pb file issue result into this...
@priyankagoud3435
@priyankagoud3435 10 ай бұрын
Hloo actually I have a doubt in my laptop dlib is not installing it's showing that could not find a version could help me
@soorenapars
@soorenapars 10 ай бұрын
thanks,
@energytechautomação
@energytechautomação 10 ай бұрын
Amigo conte mais como que você fez, eu sempre tive vontade de algo assim só que não sei como começar.