Socket
Socket
Sign inDemoInstall

facial-finder

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    facial-finder

Simple tool for Face Detection on Image or Video, realtime detection support.


Maintainers
1

Readme

Face Detection with OpenCV

Very simple tool for face detection on Image or Video

Services

  • ImageDetection

    • Instance Methods
      • .show() show of detection result on window (with your params)
      • .detect() write new file with detected faces (with your params)
    • Instance Attributes
      • path: path to file (.png, .jpeg, .jpg, ...) REQUIRED
      • scale_factor: (Read the OpenCV docs) REQUIRED
      • min_neighbors: (Read the OpenCV docs) REQUIRED
      • rect_color: color of rectangle (detected objects) must be tuple (B, G, R)
      • text: title of detected objects
      • text_color: color of text (detected objects) must be tuple (B, G, R)
      • show_title: title of detected objects window
      • delay: cv2.waitKey(delay)
      • output_path: if you call .detect() method, you must set result file path
  • VideoDetection

    • Instance Methods
      • .show() show of detection result on window (with your params)
      • .detect() write new video with detected faces (with your params)
    • Instance Attributes
      • src: path to video or index of camera REQUIRED
      • scale_factor: (Read the OpenCV docs) REQUIRED
      • min_neighbors: (Read the OpenCV docs) REQUIRED
      • rect_color: color of rectangle (detected objects) must be tuple (B, G, R)
      • rect_thickness: rectangle thickness must be integer
      • text: title of detected objects
      • text_color: color of text (detected objects) must be tuple (B, G, R)
      • show_title: title of detected objects window
      • delay: cv2.waitKey(delay)
      • fourcc: format of saving video with detected objects, default=mp4v for .mp4 files
        use with cv2.VideoWriter (PS: read the OpenCV docs)
      • output_path: if you call .detect() method, you must set result file path

Examples

  • ImageDetection

    • .detect()
    • Before Face Detection image
    • After Face Detection image
  • VideoDetection

    • .detect()
    • Before Face Detection video
    • After Face Detection video

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc