Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Face detector project?
#1
Hello ,
I want to build a face detector with python on my PI
that will just recognaize faces
for first stage I don't need it to tell me who is this person
just to know there is a person in front of the camera
and will also know how much faces he see ?

like when Iopen my digital camera and he show me 4 squers around 4 faces

where can I get info and maybe a "How to" information about this?

**** In the end I want to be able to count people using the camera (I don't mind man\woman\child) ***

Thanks ,
Reply
#2
This is a VERY popular project and there are dozens of tutorials for it. Just do a search for 'Raspberry Pi Face Detection' and pick which one you want to follow. I suggest you use a newer RPi 4 if you can since processing power and RAM will matter if you want this to work in real-time.

Let us know how it goes...
Reply
#3
this is the problem
there are too many :-)

can you recommand 1 that is works?

if I will do what it said in this video
https://www.youtube.com/watch?v=EQZ79QkRutY
will this will be good?

every ehere I looked I found how to recognaize according to image and every link told me it take about ~90 min to install all.

or maybe this one?
https://realpython.com/face-recognition-with-python/
Thanks,
Reply
#4
It's been a while since your post, but I'd like to add some information. Are you diving into a face detector project? That sounds awesome! I've dabbled in something similar before and had a blast. If you're looking for a solid place to start, you might wanna check out link removed. It's super handy for stuff like this, and I found it pretty user-friendly.When I was working on my project, I was surprised at how much you can do with face detection. It's not just about recognizing faces; you can get into all sorts of cool stuff like verifying identities or even detecting emotions. The possibilities are pretty endless.One thing I found helpful was starting simple and then building up. Like, start with just detecting faces in images, then maybe move on to video streams. It’s kinda like learning to walk before you run, you know?Also, don’t be shy about using pre-built tools and libraries. There’s a ton of open-source stuff out there that can save you a lot of time and headaches.
Larz60+ write Jul-24-2024, 08:54 AM:
removed clickbait link
Reply
#5
Creating a face detector project can be a fun and educational experience. Below, I'll outline the steps to build a basic face detection application using Python and OpenCV, a popular computer vision library.

Step-by-Step Guide to Building a Face Detector
Prerequisites
Python: Make sure you have Python installed on your system.
OpenCV: Install OpenCV library using pip.
Other Libraries: You might also need numpy.
Reply
#6
Face Detector Project

A face detector project typically involves using computer vision techniques and libraries to identify and locate human faces in images or video streams. Here’s a brief guide to get you started:

Choose the Right Tools and Libraries: Popular libraries for face detection include OpenCV, Dlib, and face_recognition. These libraries offer pre-trained models and functionalities to detect faces with high accuracy.

Setup Your Development Environment: Ensure you have Python or another suitable programming language installed, along with the necessary libraries. Tools like Jupyter Notebook or Visual Studio Code can be helpful for development.

Implement Face Detection: Use the chosen library to load an image or video feed, then apply face detection algorithms. For instance, with OpenCV, you can use the Haar Cascades or Deep Learning models like MTCNN or SSD.

Test and Fine-Tune: Test your face detector with various images to ensure it works accurately under different conditions. You may need to fine-tune the model or adjust parameters for better performance.

Deploy Your Project: Once tested, you can deploy your face detector as a standalone application, integrate it into a web service, or use it for real-time video processing.

For more resources, tools, and support to enhance your projects, visit link removed.
Larz60+ write Jul-24-2024, 08:56 AM:
link removed
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Art Project including face detection, screenshot and Face TEXTURE MAP ecaillerose 1 726 Oct-15-2024, 01:55 PM
Last Post: DPaul
  Prime number detector Mark17 5 2,160 Nov-27-2023, 12:53 PM
Last Post: deanhystad
  How to zoom on/follow MOUTH in FACE? (OPENCV Face Detection) buzzdarkyear 2 2,521 Jan-12-2022, 12:31 AM
Last Post: buzzdarkyear
  How to crop eyes/nose/mouth in the face only? [OpenCV] buzzdarkyear 0 3,037 Jan-11-2022, 01:41 PM
Last Post: buzzdarkyear
  qrcode detector not in cv2 Pedroski55 2 6,504 Sep-16-2020, 03:22 AM
Last Post: Pedroski55
  Loop face landmarking in all folder using dlib lokoprof 5 4,273 Apr-17-2020, 10:08 AM
Last Post: deanhystad
  pycharm face recognition mcgrim 5 9,955 May-20-2019, 05:06 PM
Last Post: Larz60+
  Smoke detector + send email Brandon99 4 4,946 Sep-12-2018, 11:18 PM
Last Post: Brandon99
  Vowels and Consonants detector OmarSinno 5 11,135 Sep-21-2017, 02:27 PM
Last Post: buran
  Object Detection that records the number of secs the face is not detected trabis03 1 3,201 Jul-21-2017, 04:14 PM
Last Post: nilamo

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020