{"id":371,"date":"2024-11-09T19:30:00","date_gmt":"2024-11-09T19:30:00","guid":{"rendered":"https:\/\/www.lystface.com\/blog\/?p=371"},"modified":"2024-11-11T01:50:30","modified_gmt":"2024-11-11T01:50:30","slug":"face-detection-algorithm","status":"publish","type":"post","link":"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/","title":{"rendered":"Face Detection Algorithm"},"content":{"rendered":"\n<h1 id='face-detection-algorithm-how-does-it-work-for-facial-biometrics'  id=\"boomdevs_1\" class=\"wp-block-heading\" >Face Detection Algorithm: How Does It Work for Facial Biometrics?<\/h1>\n\n\n\n<p align=\"justify\">You just whip out your smartphone, aim the camera, and capture that happy-go-lucky face of yours, complete with shiny eyes or perfectly applied makeup. And voil\u00e0! In just a second, you\u2019re detected!<\/p>\n\n\n\n<p align=\"justify\">Everyone loves this feature because there\u2019s no need to awkwardly poke and prod at the screen\u2014Of course, I\u2019m a fan too!<\/p>\n\n\n\n<p align=\"justify\">Want to try out some virtual cosmetics for that nude look? Use face detection-powered lifelike filters.<\/p>\n\n\n\n<p align=\"justify\">Need to tone face muscles with some face yoga for sharp jawlines or to tackle pigmentation? There are apps that give spot-on recommendations using facial detection.<\/p>\n\n\n\n<p align=\"justify\">Look around, and you\u2019ll find a ton of mind-blowing applications out there! But have you ever wondered what magic happens behind the scenes with face detection?<\/p>\n\n\n\n<p align=\"justify\">If not, no worries! Today, you\u2019re in for a treat with a detailed overview of face detection algorithms that won\u2019t be too technical for you. Get ready to dive in!<\/p>\n\n\n\n<h2 id='best-algorithms-that-work-behind-face-detection-technology'  id=\"boomdevs_2\" class=\"wp-block-heading\" >Best Algorithms that Work Behind Face Detection Technology<\/h2>\n\n\n\n<p align=\"justify\">There are various algorithm components that make face detection more smoother and simply reliable. However, this list is curated the most popular and convenient one:<\/p>\n\n\n\n<h3 id='eigenfaces'  id=\"boomdevs_3\" class=\"wp-block-heading\" >Eigenfaces<\/h3>\n\n\n\n<p align=\"justify\">Let&#8217;s first start with the Eigenfaces face detection algorithm that acts on face variances in image data sets to encode and decode those faces. While it uses mathematical values to process statistical databases, it doesn&#8217;t use any digital images. And, each facial image in the dataset is treated as a high-dimensional vector, where each pixel represents a feature.<\/p>\n\n\n\n<p align=\"justify\">This works best for the small dataset and under controlled conditions where no sensitive changes are present, likely in position, occlusion, lighting, etc.<\/p>\n\n\n\n<h3 id='fisherfaces'  id=\"boomdevs_4\" class=\"wp-block-heading\" >Fisherfaces<\/h3>\n\n\n\n<p align=\"justify\">The Fisherfaces facial detection algorithm is the upgraded version of Eigenfaces, which uses Linear Discriminant Analysis (LDA<strong>)<\/strong> instead of Principal Component Analysis (PCA). It was developed to address some of the limitations of Eigenfaces, particularly sensitivity to lighting and facial expression variations.<\/p>\n\n\n\n<p align=\"justify\">Fisherfaces provides better class separability with 93% accuracy, making it more effective at distinguishing between faces of different individuals under varying conditions.<\/p>\n\n\n\n<h3 id='adaptive-neuro-fuzzy-inference-system-anfis'  id=\"boomdevs_5\" class=\"wp-block-heading\" >Adaptive Neuro-Fuzzy Inference System (ANFIS)&nbsp;<\/h3>\n\n\n\n<p align=\"justify\">The ANFIS algorithm for face detection is the combination of a hybrid approach, including Artificial Neural Networks (ANN) with fuzzy logic principles in a single structure. ANFIS is particularly useful in tasks that require flexible and adaptive systems. And, if we look at its accuracy rate, it falls somewhere around 97.1% after feature extraction with 2D principal component analysis.<\/p>\n\n\n\n<h3 id='viola-jones'  id=\"boomdevs_6\" class=\"wp-block-heading\" >Viola-Jones<\/h3>\n\n\n\n<p align=\"justify\">The Viola-Jones face detection algorithm is one of the most old-school but widely used and classic methods to detect faces from images and videos. This algorithm is painfully slow to train but can detect faces in real time with impressive speed.<\/p>\n\n\n\n<p><strong>This algorithm follows four main steps to work &#8211;\u00a0<\/strong><\/p>\n\n\n\n<p>1. Haar feature selection to represent patterns commonly found in faces,&nbsp;<\/p>\n\n\n\n<p>2. Integral image representation to calculate the sum of all pixels in a rectangle face region,&nbsp;<\/p>\n\n\n\n<p>3. AdaBoost to distinguish between faces and non-faces, and&nbsp;<\/p>\n\n\n\n<p>4. Cascade structure to reject most non-face regions very quickly.<\/p>\n\n\n\n<h3 id='haar-cascade'  id=\"boomdevs_7\" class=\"wp-block-heading\" >Haar Cascade<\/h3>\n\n\n\n<p align=\"justify\">The Haar Cascade face detection algorithm is a machine learning-based approach used for real-time object detection, most commonly applied to face detection. This algorithm is usually trained to understand a large number of positive (faces) and negative samples (non-faces). It uses edge or line detection features to find edges or lines in the image, identify sudden changes in pixel intensities, and detect facial structures.<\/p>\n\n\n\n<p align=\"justify\">While it can boost the speed of face detection, it struggles with rotated faces or faces that are not perfectly aligned (non-frontal).<\/p>\n\n\n\n<h3 id='convolutional-neural-network-cnn'  id=\"boomdevs_8\" class=\"wp-block-heading\" >Convolutional Neural Network (CNN)<\/h3>\n\n\n\n<p align=\"justify\">CNN algorithm just revolutionized old-age facial detection with its ability to automatically learn complex features from data while using multiple layers. CNN can have dozens and hundreds of these layers, and each of them learns to detect different imaging features.<\/p>\n\n\n\n<p><strong>However, here&#8217;s a quick go-through to understand some of them-<\/strong><\/p>\n\n\n\n<ul>\n<li>It uses convolutional layer to learn visual patterns in an image, such as edges, shapes, and textures,<\/li>\n\n\n\n<li>Next, it uses a pooling layer to reduce the spatial size of the feature maps,&nbsp;<\/li>\n\n\n\n<li>Its fully connected layers help consolidate the detected features and make a final classification, and<\/li>\n\n\n\n<li>Finally, the bounding box regression refines these initial predictions, accurately frames the detected face, and provides a confidence score, indicating the likelihood of a face being present in the detected region.<\/li>\n<\/ul>\n\n\n\n<h3 id='single-shot-detector-ssd'  id=\"boomdevs_9\" class=\"wp-block-heading\" >Single Shot Detector (SSD)<\/h3>\n\n\n\n<p align=\"justify\">While object detection is required and it becomes a critical task, the SSD face detection algorithm enables it, making it well-suited for real-time applications like video surveillance and mobile-based face detection.<\/p>\n\n\n\n<p align=\"justify\">To process this task, it follows some steps, likely, input image resizing and feature extraction, multi-scale facial feature mapping, bounding box regression, and confidence scoring. This approach not only speeds up the detection process but also maintains high accuracy, making SSD a popular choice for real-time applications.<\/p>\n\n\n\n<h2 id='3-different-example-to-understand-real-time-use-cases-of-face-detection'  id=\"boomdevs_10\" class=\"wp-block-heading\" >3 Different Example to Understand Real-time Use Cases of Face Detection&nbsp;<\/h2>\n\n\n\n<p align=\"justify\">Today, almost all applications are built-in with face detection techniques and keeping that in mind, we\u2019ve highlighted various types of practical utilization of face detection.<\/p>\n\n\n\n<h3 id='lystface-location-based-facial-attendance'  id=\"boomdevs_11\" class=\"wp-block-heading\" >Lystface \u2014 Location based facial attendance&nbsp;<\/h3>\n\n\n\n<p align=\"justify\"><a href=\"https:\/\/www.lystloc.com\/lystface\">Lystface<\/a> is a facial detection based attendance platform powered by location intelligence that tracks who enters and exits a space, including the time and location. It utilizes facial detection technology, making it suitable for both workplaces and residential buildings, and allows for remote surveillance. The application is impressive because it can effectively recognize faces even when individuals are wearing masks or are beyond certain age restrictions.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"237\" height=\"512\" src=\"https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/ezgif-4-07eaad305a.webp\" alt=\"Lystface\" class=\"wp-image-372\" srcset=\"https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/ezgif-4-07eaad305a.webp 237w, https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/ezgif-4-07eaad305a-139x300.webp 139w\" sizes=\"(max-width: 237px) 100vw, 237px\" \/><\/figure>\n\n\n\n<h3 id='mastercard-face-recognized-payment-mode'  id=\"boomdevs_12\" class=\"wp-block-heading\" >Mastercard&nbsp; \u2014&nbsp; Face recognized payment mode<\/h3>\n\n\n\n<p align=\"justify\">The popular name in the payment industry, Matercard, uses face detection technology in their pilot program \u201csmile-to-pay\u201d to increase merchants as well as consumer experience. Customers need only to wave or smile in front of the camera to process the payment, making the task accomplished within a fraction of a second. Also, as the software only verifies people whose images are already present in the database, security remains at its best.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"932\" height=\"665\" src=\"https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/face-recognized-payment-mode.webp\" alt=\"\" class=\"wp-image-373\" srcset=\"https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/face-recognized-payment-mode.webp 932w, https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/face-recognized-payment-mode-300x214.webp 300w, https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/face-recognized-payment-mode-768x548.webp 768w\" sizes=\"(max-width: 932px) 100vw, 932px\" \/><\/figure>\n\n\n\n<h3 id='clash-of-streamers-top-grossing-mobile-nft-game'  id=\"boomdevs_13\" class=\"wp-block-heading\" >Clash of Streamers \u2014 Top-grossing mobile NFT game<\/h3>\n\n\n\n<p align=\"justify\">With over 4 million installs on Android and iOS, Clash of Streamers stands as the world\u2019s leading blockchain-powered mobile game and the highest-grossing in its category. A core feature is its ability to make characters uniquely personal by using player selfies. This is achieved through selfie segmentation and AR masks, both of which rely on an initial face detection stage to bring the characters to life.<\/p>\n\n\n\n\n\n<h2 id='use-lystface-api-to-implement-smart-face-detection-that-works-for-you'  id=\"boomdevs_14\" class=\"wp-block-heading\" >Use Lystface API to Implement Smart Face Detection that Works for You!&nbsp;<\/h2>\n\n\n\n<p align=\"justify\">You\u2019ve found tip-to-toe face detection algorithms and most importantly various applications that you can think of.<\/p>\n\n\n\n<p align=\"justify\">So, when face detection is catering all over the business verticals, why not integrate it? After all, your business should also be updated with this techies potential and benefits.<\/p>\n\n\n\n<p align=\"justify\">Keeping that in mind, we provide you with the<a href=\"https:\/\/www.lystface.com\/\"> Lystface API<\/a>. And, why should you watch out for it?<\/p>\n\n\n\n<p align=\"justify\">It provides detailed<a href=\"https:\/\/apidocs.lystface.com\/\"> API documentation<\/a> that breaks down its integration process and hardly eats your excessive busiest minutes. Also, it comes with easy navigation, the highest security, and a free trial to test whether it suits your requirements.<\/p>\n\n\n\n<p align=\"justify\"><em>So, if you want to create a shield against fraudsters without compromising it, you must<\/em><a href=\"https:\/\/app.lystface.com\/signup?\"><em> <\/em><em>Sign up with Lystface API<\/em><\/a><em>!<\/em><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Face Detection Algorithm: How Does It Work for Facial Biometrics? You just whip out your smartphone, aim the camera, and capture that happy-go-lucky face of yours, complete with shiny eyes or perfectly applied makeup. And voil\u00e0! In just a second, you\u2019re detected! Everyone loves this feature because there\u2019s no need to awkwardly poke and prod&hellip; <a class=\"more-link\" href=\"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/\">Continue reading <span class=\"screen-reader-text\">Face Detection Algorithm<\/span><\/a><\/p>\n","protected":false},"author":3,"featured_media":375,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[15],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Face Detection Algorithm - Lystface<\/title>\n<meta name=\"description\" content=\"The guide to face detection algorithm covers the best algorithm components, their working procedure &amp; real-time use cases to give you overall understanding.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Face Detection Algorithm - Lystface\" \/>\n<meta property=\"og:description\" content=\"The guide to face detection algorithm covers the best algorithm components, their working procedure &amp; real-time use cases to give you overall understanding.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/\" \/>\n<meta property=\"og:site_name\" content=\"Lystface\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-09T19:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-11T01:50:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/Face-Detection-Algorithm-How-Does-It-Work-for-Facial-Biometrics.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1138\" \/>\n\t<meta property=\"og:image:height\" content=\"380\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Mousumi Paul\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mousumi Paul\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/\",\"url\":\"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/\",\"name\":\"Face Detection Algorithm - Lystface\",\"isPartOf\":{\"@id\":\"https:\/\/www.lystface.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/Face-Detection-Algorithm-How-Does-It-Work-for-Facial-Biometrics.webp\",\"datePublished\":\"2024-11-09T19:30:00+00:00\",\"dateModified\":\"2024-11-11T01:50:30+00:00\",\"author\":{\"@id\":\"https:\/\/www.lystface.com\/blog\/#\/schema\/person\/3308aa353601e2349e3964ab485642f8\"},\"description\":\"The guide to face detection algorithm covers the best algorithm components, their working procedure & real-time use cases to give you overall understanding.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/#primaryimage\",\"url\":\"https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/Face-Detection-Algorithm-How-Does-It-Work-for-Facial-Biometrics.webp\",\"contentUrl\":\"https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/Face-Detection-Algorithm-How-Does-It-Work-for-Facial-Biometrics.webp\",\"width\":1138,\"height\":380,\"caption\":\"Face Detection Algorithm: How Does It Work for Facial Biometrics?\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.lystface.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Face Detection Algorithm\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.lystface.com\/blog\/#website\",\"url\":\"https:\/\/www.lystface.com\/blog\/\",\"name\":\"Lystface\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.lystface.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.lystface.com\/blog\/#\/schema\/person\/3308aa353601e2349e3964ab485642f8\",\"name\":\"Mousumi Paul\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.lystface.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b6e16513d94f08a2c67cb79835909c22?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b6e16513d94f08a2c67cb79835909c22?s=96&d=mm&r=g\",\"caption\":\"Mousumi Paul\"},\"url\":\"https:\/\/www.lystface.com\/blog\/author\/mousumi-paul\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Face Detection Algorithm - Lystface","description":"The guide to face detection algorithm covers the best algorithm components, their working procedure & real-time use cases to give you overall understanding.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/","og_locale":"en_US","og_type":"article","og_title":"Face Detection Algorithm - Lystface","og_description":"The guide to face detection algorithm covers the best algorithm components, their working procedure & real-time use cases to give you overall understanding.","og_url":"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/","og_site_name":"Lystface","article_published_time":"2024-11-09T19:30:00+00:00","article_modified_time":"2024-11-11T01:50:30+00:00","og_image":[{"width":1138,"height":380,"url":"https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/Face-Detection-Algorithm-How-Does-It-Work-for-Facial-Biometrics.webp","type":"image\/webp"}],"author":"Mousumi Paul","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Mousumi Paul","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/","url":"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/","name":"Face Detection Algorithm - Lystface","isPartOf":{"@id":"https:\/\/www.lystface.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/#primaryimage"},"image":{"@id":"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/#primaryimage"},"thumbnailUrl":"https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/Face-Detection-Algorithm-How-Does-It-Work-for-Facial-Biometrics.webp","datePublished":"2024-11-09T19:30:00+00:00","dateModified":"2024-11-11T01:50:30+00:00","author":{"@id":"https:\/\/www.lystface.com\/blog\/#\/schema\/person\/3308aa353601e2349e3964ab485642f8"},"description":"The guide to face detection algorithm covers the best algorithm components, their working procedure & real-time use cases to give you overall understanding.","breadcrumb":{"@id":"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/#primaryimage","url":"https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/Face-Detection-Algorithm-How-Does-It-Work-for-Facial-Biometrics.webp","contentUrl":"https:\/\/www.lystface.com\/blog\/wp-content\/uploads\/2024\/11\/Face-Detection-Algorithm-How-Does-It-Work-for-Facial-Biometrics.webp","width":1138,"height":380,"caption":"Face Detection Algorithm: How Does It Work for Facial Biometrics?"},{"@type":"BreadcrumbList","@id":"https:\/\/www.lystface.com\/blog\/face-detection-algorithm\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.lystface.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Face Detection Algorithm"}]},{"@type":"WebSite","@id":"https:\/\/www.lystface.com\/blog\/#website","url":"https:\/\/www.lystface.com\/blog\/","name":"Lystface","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.lystface.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.lystface.com\/blog\/#\/schema\/person\/3308aa353601e2349e3964ab485642f8","name":"Mousumi Paul","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.lystface.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b6e16513d94f08a2c67cb79835909c22?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b6e16513d94f08a2c67cb79835909c22?s=96&d=mm&r=g","caption":"Mousumi Paul"},"url":"https:\/\/www.lystface.com\/blog\/author\/mousumi-paul\/"}]}},"_links":{"self":[{"href":"https:\/\/www.lystface.com\/blog\/wp-json\/wp\/v2\/posts\/371"}],"collection":[{"href":"https:\/\/www.lystface.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.lystface.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.lystface.com\/blog\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.lystface.com\/blog\/wp-json\/wp\/v2\/comments?post=371"}],"version-history":[{"count":1,"href":"https:\/\/www.lystface.com\/blog\/wp-json\/wp\/v2\/posts\/371\/revisions"}],"predecessor-version":[{"id":376,"href":"https:\/\/www.lystface.com\/blog\/wp-json\/wp\/v2\/posts\/371\/revisions\/376"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.lystface.com\/blog\/wp-json\/wp\/v2\/media\/375"}],"wp:attachment":[{"href":"https:\/\/www.lystface.com\/blog\/wp-json\/wp\/v2\/media?parent=371"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.lystface.com\/blog\/wp-json\/wp\/v2\/categories?post=371"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.lystface.com\/blog\/wp-json\/wp\/v2\/tags?post=371"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}