Skip to content
Youths Forum Youths Forum Youths Forum

Tech Blogs & Programming Tutorials

Youths Forum Youths Forum Youths Forum

Tech Blogs & Programming Tutorials

  • Blog
  • News
  • Programming
    • PHP
    • JavaScript
    • JQuery
    • CSS
    • HTML
    • API
  • Stock Market Live
  • Automobiles
    • Cars
  • Gadgets
    • Phones
    • Android Phones

Categories

  • Artificial Intelligence (1)
  • Automobiles (12)
    • Cars (7)
  • Blog (104)
    • Poems (2)
    • Space (2)
  • Command (2)
  • Education (2)
  • Entertainment (4)
  • Gadgets (9)
    • Phones (8)
      • Android Phones (4)
  • HTML Templates (11)
  • IT Training Institutes (1)
  • Lifestyle (4)
  • News (178)
  • Others (23)
  • Programming (296)
    • API (16)
    • CSS (83)
    • Database (4)
    • Hosting (1)
    • HTML (37)
    • JavaScript (117)
      • JQuery (27)
      • ReactJS (7)
    • PHP (116)
  • Python (3)
  • recipes (1)
  • SEE Result (1)
  • Server (3)
  • Blog
  • News
  • Programming
    • PHP
    • JavaScript
    • JQuery
    • CSS
    • HTML
    • API
  • Stock Market Live
  • Automobiles
    • Cars
  • Gadgets
    • Phones
    • Android Phones
Close

Search

Easy Face Detection with JQuery
JavaScript

Easy Face Detection Using JQuery

By Admin
January 25, 2020 2 Min Read
0

Face detection is a computer technology being used in a variety of applications that identifies human faces in digital images.

There are a number of approaches and techniques to achieve face detection. In this post, we will be dealing with one of the easiest and simplest way of detecting face in an image, video or canvas using facedetect plugin.

Easy Face Detection with JQuery
Easy Face Detection with JQuery

Firstly, you need to get the JQuery plugin facedetection.min.js from here : Get facedetection.min.js

Include JQuery and facedetection plugin in the webpage.

<script type="text/javascript" src="https://code.jquery.com/jquery-latest.min.js"></script>
<script type="text/javascript" src="facedetection.min.js"></script>

Source Code for Face Detection using JQuery Plugin

Use CSS as follows:

<style>
.face{
  position: absolute;
  border: 2px solid #009900;
}
#detect{
  margin-left: 15%;
  cursor: pointer;
  cursor: hand;
}
</style>

The HTML would be as follows:

<img src="images/2.jpg" class="pic" width="50%">
<h2 id="detect">Detect Face</h2>

The JavaScript code to detect the face:

$("#detect").click(function(){
  alert("Detecting Face ..............");
  $(".pic").faceDetection({
    complete:function(faces){
      alert("Detection Complete");
      for(var i=0;i<faces.length;i++){
        $('<div>',{
          'class':'face',
          'css':{
            'position':'absolute',
            'left':faces[i].x*faces[i].scaleX+'px',
            'top':faces[i].y*faces[i].scaleY+'px',
            'width':faces[i].width*faces[i].scaleX+'px',
            'height':faces[i].height*faces[i].scaleY+'px'
          }
        })
        .insertAfter(this);
      }
    },
    error:function(code,message){
      alert("Error: "+message);
    }
  });
});

The faceDetection method returns an array object and coords variables becomes an array. Following is the result of array elements.

x: Y coord of the face
y: Y coord of the face
width: Width of the face
height: Height of the face
positionX: X position relative to the document
positionY: Y position relative to the document
offsetX: X position relative to the offset parent
offsetY: Y position relative to the offset parent
confidence: Level of confidence

For visual guide, here is video for you

If you want to learn how to make your own face recognition application using python, here is a nice tutorial series at pytorials.com.

Tags:

Face Detection
Author

Admin

Follow Me
Other Articles
Previous

Disable Landscape View in Mobile View Using JavaScript and CSS

Next

Generate random integer between two numbers using JavaScript

No Comment! Be the first one.

Leave a Reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • NADA Auto Show 2026: Over a dozen new two-wheelers, including Nepal-made Yatri scooter, to be unveiled
  • Nepal Electric, Power, Light and Nepal Consumer Electronics and Home Appliances International Exhibition 2083 to be Held
  • 5 Decades of Automobile Industry in Nepal: The Story from 5.5 Million Vehicles to the ‘Made in Nepal’ Pavilion
  • New Nami Box Coming Soon – To Be Unveiled at NADA Auto Show 2026
  • 18th NADA Auto Show 2026: Stall Construction Rapid in Bhrikutimandap, Preparations in Final Stage

Tags

adsense ai animate animation animation using HTML and CSS API blog calculator chatgpt Cryptocurrency CSS css animation design Email Facebook featured filemanager file manager free template google htaccess HTML image Instagram interview javascript JQuery jquery ui NADA AutoShow NADA Auto Show 2024 password PHP Progressive Web App PWA QR random react reactjs Rotate travel Twitter vpn youthforum youthsforum youtube

About Us

At Youths Forum, we are passionate about sharing knowledge that empowers students, educators, professionals, and technology enthusiasts.

Our Mission

Our mission is simple: to make technology and education accessible, understandable, and beneficial for everyone. We strive to create content that helps our readers learn new skills and stay updated with industry developments.

RSS RSS

  • NADA Auto Show 2026: Over a dozen new two-wheelers, including Nepal-made Yatri scooter, to be unveiled Admin
  • Nepal Electric, Power, Light and Nepal Consumer Electronics and Home Appliances International Exhibition 2083 to be Held Admin
  • 5 Decades of Automobile Industry in Nepal: The Story from 5.5 Million Vehicles to the ‘Made in Nepal’ Pavilion Admin

Quick Links

  • Stock Market Live
  • Parliament Election 2082
Copyright 2026 — Youths Forum. All rights reserved. Blogsy WordPress Theme