ultralytics / ultralytics

Ultralytics YOLO11 🚀
https://docs.ultralytics.com
GNU Affero General Public License v3.0
31.12k stars 5.99k forks source link

online Attandance from live cctv camera #7337

Closed Margishnextbrain closed 8 months ago

Margishnextbrain commented 9 months ago

Search before asking

Question

hi @plashchynski @akx @CySlider @nihui project : attendance management system using live cctv camera
I have 1000 users. then i will trained the 1000 images then detect the face recognition from live cctv camera so it possible yolo8 model for trained the 1000 images for face recognition using cctc camera ?

Additional

No response

github-actions[bot] commented 9 months ago

👋 Hello @Margishnextbrain, thank you for your interest in Ultralytics YOLOv8 🚀! We recommend a visit to the Docs for new users where you can find many Python and CLI usage examples and where many of the most common questions may already be answered.

If this is a 🐛 Bug Report, please provide a minimum reproducible example to help us debug it.

If this is a custom training ❓ Question, please provide as much information as possible, including dataset image examples and training logs, and verify you are following our Tips for Best Training Results.

Join the vibrant Ultralytics Discord 🎧 community for real-time conversations and collaborations. This platform offers a perfect space to inquire, showcase your work, and connect with fellow Ultralytics users.

Install

Pip install the ultralytics package including all requirements in a Python>=3.8 environment with PyTorch>=1.8.

pip install ultralytics

Environments

YOLOv8 may be run in any of the following up-to-date verified environments (with all dependencies including CUDA/CUDNN, Python and PyTorch preinstalled):

Status

Ultralytics CI

If this badge is green, all Ultralytics CI tests are currently passing. CI tests verify correct operation of all YOLOv8 Modes and Tasks on macOS, Windows, and Ubuntu every 24 hours and on every commit.

Margishnextbrain commented 9 months ago

@UltralyticsAssistant please help me on this

glenn-jocher commented 9 months ago

@Margishnextbrain Using YOLOv8 for a face recognition task in an attendance management system with a live CCTV camera is feasible, but it's important to understand the strengths and limitations of YOLO models in the context of face recognition.

  1. Strengths of YOLOv8 for Face Detection:

    • Speed and Efficiency: YOLO models are known for their fast processing speed, making them suitable for real-time applications like live CCTV footage analysis.
    • Accuracy: YOLOv8, being an advanced version, likely offers improved accuracy and performance in object detection.
  2. Considerations for Face Recognition:

    • Face Detection vs. Recognition: YOLO models, including YOLOv8, are primarily designed for object detection (identifying the presence and location of faces in this case), not for face recognition (identifying who the face belongs to).
    • Training on Faces: While you can train YOLO models on face datasets, the model would excel in detecting faces but not in distinguishing between different individuals' faces.
  3. Suggested Approach for Your Project:

    • Use YOLOv8 for Face Detection: Employ YOLOv8 to detect faces in the live CCTV footage efficiently.
    • Combine with a Face Recognition System: After detecting faces, use a specialized face recognition system to identify the individuals. Systems like FaceNet, DeepFace, or custom-trained models on frameworks like TensorFlow or PyTorch can be used for this.
    • Dataset Size and Quality: Ensure your dataset is diverse and robust, covering various angles, lighting conditions, and facial expressions for better accuracy.
    • Privacy and Ethics: Implementing such a system involves sensitive privacy considerations. Ensure compliance with relevant data protection and privacy laws.

In summary, YOLOv8 can be an excellent tool for the face detection part of your attendance management system. However, for the face recognition component, integrating a specialized face recognition model would be necessary to identify the individuals from the detected faces.

github-actions[bot] commented 8 months ago

👋 Hello there! We wanted to give you a friendly reminder that this issue has not had any recent activity and may be closed soon, but don't worry - you can always reopen it if needed. If you still have any questions or concerns, please feel free to let us know how we can help.

For additional resources and information, please see the links below:

Feel free to inform us of any other issues you discover or feature requests that come to mind in the future. Pull Requests (PRs) are also always welcomed!

Thank you for your contributions to YOLO 🚀 and Vision AI ⭐

arad2022 commented 8 months ago

@UltralyticsAssistant please help me on this

I have the same question. Did you find any solution for that or did you use any other face recognition methods?