laravel 检测sql_在Laravel PHP应用程序中轻松进行面部检测

laravel 检测sql

by Darren Chowles

达伦·乔尔斯(Darren Chowles)

在Laravel PHP应用程序中轻松进行面部检测 (Easy facial detection in your Laravel PHP application)

使用Google Cloud Vision API检测图像中的人脸 (Detect faces in images using the Google Cloud Vision API)

You’ve probably seen facial detection before. As soon as you upload that family photo to Facebook, you’ll notice the boxes around all detected faces. And with facial recognition, it sometimes even auto-tags the correct friend too. It’s not always 100% accurate, but it’s still some great engineering!

您可能以前曾经看过面部检测。 将家庭照片上传到Facebook后,您会注意到所有检测到的脸Kong周围的方框。 有了面部识别功能 ,它有时甚至还会自动标记正确的朋友。 它并不总是100%准确,但是仍然是一些很棒的工程!

面部检测应用 (Applications for facial detection)

In this article, we’ll get up and running using the Google Cloud Vision API to detect faces. We’ll be using an existing image and we’ll draw a box around each detected face.

在本文中,我们将使用Google Cloud Vision API进行检测并开始运行。 我们将使用现有图像,并在每个检测到的脸部周围绘制一个方框。

There are several real-world use cases for facial detection. Some of these include:

有几种现实世界的面部检测用例。 其中一些包括:

  • detecting whether an uploaded image has any faces. This might be a screening step as part of a “know your customer” identification workflow.

    检测上传的图像是否有脸Kong。 这可能是“了解您的客户”识别工作流程一部分的筛选步骤。
  • image moderation for applications that allow user-generated content.

    允许用户生成内容的应用程序的图像审核。
  • the ability to provide tagging, in the same way social networks do.

    具有与社交网络相同的方式提供标记的功能。

Cloud Vision API中可用的其他功能 (Other functionality available in the Cloud Vision API)

Facial detection is only one of the many functions available in this API. It supports the following additional functionality:

面部检测只是此API中可用的众多功能之一。 它支持以下附加功能:

  • detection of popular logos.

    检测流行徽标。
  • the ability to detect all categories applicable to an image. For example, a photo of a cat might produce the categories: cat, mammal, vertebrate, and Persian.

    检测适用于图像的所有类别的能力。 例如,猫的照片可能会产生以下类别:猫,哺乳动物,脊椎动物和波斯。
  • detecting popular natural and man-made landmarks.

    检测流行的自然和人造地标。
  • extracting text from images.

    从图像中提取文本。
  • running Safe Search Detection to flag images that contain adult content or violence.

    运行安全搜索检测以标记包含成人内容或暴力内容的图像。

Google Cloud Platform设定 (Google Cloud Platform setup)

The first step involves creating a new project in the Google Cloud Platform console.

第一步涉及在Google Cloud Platform控制台中创建一个新项目。

Head over to the dashboard and create a new project.

转到仪表板并创建一个新项目 。

Once your project is created, keep the Project ID handy.

创建项目后,请随时保留项目ID。

Follow these steps:

跟着这些步骤:

  • once you have your project, go to the Create service account key page.

    完成项目后,转到“ 创建服务帐户密钥”页面。

  • ensure your Facial Detection project is selected at the top.

    确保在顶部选择了面部检测项目。
  • under “Service account, select “New service account”.

    在“服务帐户”下 ,选择“新服务帐户”。

  • enter a name in the “Service account name”.

    在“服务帐户名称”中输入名称。
  • under “Role”, select “Project” > “Owner”.

    在“角色”下,选择“项目”>“所有者”。
  • Finally, click “Create” to have the JSON credentials file downloaded automatically.

    最后,单击“创建”以自动下载JSON凭证文件。

You may also need to Enable the Cloud Vision API via the API Library section.

您可能还需要通过“ API库”部分启用Cloud Vision API。

Laravel项目设置 (Laravel project setup)

The next step involves setting up a new Laravel project. If you have an existing Laravel project, you can skip this step.

下一步涉及建立一个新的Laravel项目。 如果您已经有一个Laravel项目,则可以跳过此步骤。

I’m using Laravel 5.5 LTS for this article. In the command line, run the following Composer command to create a new project (you can also use the Laravel installer):

我在本文中使用Laravel 5.5 LTS。 在命令行中,运行以下Composer命令以创建一个新项目(您也可以使用Laravel安装程序 ):

composer create-project --prefer-dist laravel/laravel sample "5.5.*"

If you used Composer, rename the .env.example file to .env and run the following command afterwards to set the application key:

如果您使用的作曲家,重命名.env.example文件.ENV事后运行以下命令来设置应用程序键:

php artisan key:generate

添加Google Cloud-vision软件包 (Add the Google cloud-vision package)

Run the following command to add the google/cloud-vision package to your project:

运行以下命令以将google/cloud-vision包添加到您的项目中:

composer require google/cloud-vision

You can place the downloaded JSON credentials file in your application root. Don’t place it in your public directory. Feel free to rename it. Don’t commit this file to your code repo. One option is to add it to the server manually.

您可以将下载的JSON凭证文件放置在应用程序根目录中。 不要将其放在您的公共目录中。 随时重命名。 不要将此文件提交到您的代码存储库中。 一种选择是将其手动添加到服务器。

最后,让我们开始编码! (Finally, let’s start coding!)

Firstly, ensure you have the GD library installed and active. Most platforms have this enabled by default.

首先,请确保已安装并激活了GD库 。 大多数平台默认情况下都启用了此功能。

I’ll be adding the following route to my “routes/web.php” file:

我将以下路由添加到“ routes / web.php”文件中:

Route::get('/', 'SampleController@detectFaces');

I’ve created a simple controller to house the code. I’ll be adding all the code within the controller. In a production application, I strongly suggest using separate service classes for any business logic. This way, controllers are lean and stick to their original intention: controlling the input/output.

我创建了一个简单的控制器来存放代码。 我将在控制器中添加所有代码。 在生产应用程序中,我强烈建议对任何业务逻辑使用单独的服务类。 这样,控制器就会精简并坚持其原始意图:控制输入/输出。

We’ll start with a simple controller, adding a use statement to include the Google Cloud ServiceBuilder class:

我们将从一个简单的控制器开始,添加一个use语句以包括Google Cloud ServiceBuilder类:

<?php
namespace App\Http\Controllers;
use Google\Cloud\Core\ServiceBuilder;
class SampleController extends Controller{    public function detectFaces()    {        // Code will be added here    }}

The first thing we’ll do is create an instance of the ServiceBuilder class so we can specify our Project ID and JSON credentials.

我们要做的第一件事是创建ServiceBuilder类的实例,以便我们可以指定项目ID和JSON凭据。

$cloud = new ServiceBuilder([     'keyFilePath' => base_path('fda.json'),     'projectId' => 'facial-detection-app' ]);

You specify the location of the JSON file using the keyFilePath key. I’ve used the Laravel base_path() helper to refer to the fully qualified app root path.

您可以使用keyFilePath键指定JSON文件的位置。 我使用了Laravel base_path()帮助器来引用完全限定的应用程序根路径。

The next option is the projectId. This is the value you grabbed when you created the project in the GCP console.

下一个选项是projectId 。 这是在GCP控制台中创建项目时获取的值。

Next, we’ll create an instance of the VisionClient class. The ServiceBuilder class makes it easy by exposing various factory methods which grant access to services in the API.

接下来,我们将创建VisionClient类的实例。 通过公开各种工厂方法(可授予对API中服务的访问权限), ServiceBuilder类可轻松实现。

$vision = $cloud->vision();

Now that we have an instance of the class, we can start making use of the Vision API. We’ll be using the following image as the example. Feel free to download this image, name it “friends.jpg” and place it in your “public” folder.

现在我们有了该类的实例,我们可以开始使用Vision API。 我们将使用以下图像作为示例。 可以免费下载此图像,将其命名为“ friends.jpg”,并将其放置在“ public”文件夹中。

We’ll first create a new image using the GD imagecreatefromjpeg() function. We’ll use the public_path() Laravel helper to refer to our image placed in the “public” folder.

我们将首先使用GD imagecreatefromjpeg()函数创建一个新图像。 我们将使用public_path() Laravel帮助器来引用放置在“ public”文件夹中的图像。

$output = imagecreatefromjpeg(public_path('friends.jpg'));

Next, we’ll create a Cloud Vision Image object with this same image and specify that we want to run facial detection:

接下来,我们将使用相同的图像创建一个Cloud Vision Image对象,并指定我们要运行面部检测:

$image = $vision->image(file_get_contents(public_path('friends.jpg')), ['FACE_DETECTION']);

You’ll notice a slight change here. Instead of providing the path to the image, we’re supplying the actual image as a string using file_get_contents().

您会在这里看到一些细微的变化。 除了提供图像的路径,我们使用file_get_contents()将实际图像作为字符串提供。

Then we run the annote() method on the image:

然后,在图像上运行annote()方法:

$results = $vision->annotate($image);

Now that we have the results, we simply need to loop through the found faces and draw boxes around the them using the vertices supplied in the result:

现在我们有了结果,我们只需要遍历找到的面并使用结果中提供的顶点在它们周围画框:

foreach ($results->faces() as $face) {    $vertices = $face->boundingPoly()['vertices'];
$x1 = $vertices[0]['x'];    $y1 = $vertices[0]['y'];    $x2 = $vertices[2]['x'];    $y2 = $vertices[2]['y'];
imagerectangle($output, $x1, $y1, $x2, $y2, 0x00ff00);}

Once this is done, we can output the image and destroy it to free up the memory:

完成此操作后,我们可以输出图像并销毁它以释放内存:

header('Content-Type: image/jpeg'); imagejpeg($output); imagedestroy($output);

And this is the result:

结果如下:

Here is the final controller class code:

这是最终的控制器类代码:

<?php
namespace App\Http\Controllers;
use Google\Cloud\Core\ServiceBuilder;
class SampleController extends Controller{    public function detectFaces()    {        $cloud = new ServiceBuilder([            'keyFilePath' => base_path('fda.json'),            'projectId' => 'facial-detection-app'        ]);
$vision = $cloud->vision();
$output = imagecreatefromjpeg(public_path('friends.jpg'));        $image = $vision->image(file_get_contents(public_path('friends.jpg')), ['FACE_DETECTION']);        $results = $vision->annotate($image);
foreach ($results->faces() as $face) {            $vertices = $face->boundingPoly()['vertices'];
$x1 = $vertices[0]['x'];            $y1 = $vertices[0]['y'];            $x2 = $vertices[2]['x'];            $y2 = $vertices[2]['y'];
imagerectangle($output, $x1, $y1, $x2, $y2, 0x00ff00);        }
header('Content-Type: image/jpeg');
imagejpeg($output);        imagedestroy($output);    }}

附加功能 (Additional functionality)

In addition to grabbing the vertices, the response also includes a trove of useful information. This includes the locations of mouths, eyes, eyebrows, noses, etc. Simply print_r() the $face variable for a quick peek into the available data.

除了获取顶点之外,响应还包括大量有用的信息。 这包括嘴巴,眼睛,眉毛,鼻子等的位置。只需print_r() $face变量,即可快速浏览可用数据。

Another great feature is checking whether the detected face is happy, sad, angry, or surprised. You can even detect whether the face is blurry or underexposed, and whether they’re wearing headwear.

另一个重要功能是检查检测到的脸部是高兴,悲伤,生气还是惊讶。 您甚至可以检测出脸部是否模糊或曝光不足,以及他们是否戴着头饰。

If you use this and end up doing something cool as a result, please let me know!

如果您使用它并最终做一些很酷的事情,请告诉我!

升级您的Web开发技能! (Upgrade your web dev skills!)

Sign up to my newsletter where I’ll share insightful web development articles to supercharge your skills.

注册我的时事通讯 ,我将在其中分享有见地的Web开发文章,以增强您的技能。

Originally published at www.chowles.com on July 6, 2018.

最初于2018年7月6日发布在www.chowles.com上。

翻译自: https://www.freecodecamp.org/news/easy-facial-detection-in-your-laravel-php-application-11664ac9c9b9/

laravel 检测sql

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/393747.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

mysql学习笔记-insert扩展

1、创建表 -利用已有表&#xff0c;创建表 这样创建的缺点-- 主键会丢失 -- 创建表&#xff0c;表结构与数据与t_emptest 一致 CREATE TABLE t_emptest1 AS SELECT * FROM t_emptest ;-- 创建空表&#xff0c;表结构与t_emptest 一致 CREATE TABLE t_emptest1 AS SELECT * FRO…

linux 调用外部变量,sed当中使用变量替换以及执行外部命令

转自&#xff1a;http://blog.csdn.net/linwhwylb/article/details/7184748在使用sed对日志或者其它文本进行parse的过程当中&#xff0c;有时候我们需要引用外部变量的值&#xff0c;或者获取一个shell命令执行的结果&#xff0c;以便达到更加可观的输出结果。这里介绍如何做到…

golang 结构体断言_Golang中的reflect原理

反射&#xff08;reflect&#xff09;是在计算机程序运行时&#xff0c;访问&#xff0c;检查&#xff0c;修改它自身的一种能力&#xff0c;是元编程的一种形式。在Java等语言中都很好地支持了反射。Golang也实现了反射&#xff0c;主要核心位于reflect包&#xff0c;官方文档…

「hadoop」cdh5.12离线安装(未完成)

cdh 5.12.1 安装 目前还未成功&#xff0c;仅供个人记录。【下载必备工具】当前系统为win7_x641、vmware虚拟机12.52、ubuntu16.04服务器版本3、windows下的ssh工具&#xff0c;采用git bash4、jdk安装包jdk-8u144-linux-x64.tar.gz5、mysql java驱动包 mysql-connector-java-5…

转载 JDK + Android-SDK + Python + MonkeyRunner 的安装

转载来自&#xff1a; 小海豚的博客 http://blog.sina.com.cn/u/1295334083 我只是搬运工。。。 JDK Android-SDK Python MonkeyRunner 的安装 1. Android-SDK介绍2. 安装 JDK, Android-SDK&#xff08;包含MonkeyRunner) , Python 3. 设置环境变量4. 验证是否安装成功1. …

跟随器反馈回路电阻_如何将短反馈回路设置为单独编码器

跟随器反馈回路电阻I’ve spent the last couple years as a solo freelance developer. Comparing this experience to previously working in companies, I’ve noticed that those of us who work alone can have fewer iterative opportunities for improvement than devel…

leetcode991. 坏了的计算器(贪心)

在显示着数字的坏计算器上&#xff0c;我们可以执行以下两种操作&#xff1a; 双倍&#xff08;Double&#xff09;&#xff1a;将显示屏上的数字乘 2&#xff1b; 递减&#xff08;Decrement&#xff09;&#xff1a;将显示屏上的数字减 1 。 最初&#xff0c;计算器显示数字…

模块怎么用_Android 组件化/模块化 的理解!

作者&#xff1a;前行的乌龟到现在组件化真的不是什么新鲜东西了&#xff0c;大公司都用的滚瓜烂熟&#xff0c;龙飞凤舞了&#xff0c;也就是现在部分中型项目和小项目在组件化的路上努力。所以同志们&#xff0c;组件化没玩过的&#xff0c;不熟悉的赶紧搞起来&#xff0c;说…

操作系统基础

操作系统基础一个完整的操作系统包括 &#xff08; kernel application&#xff09;内核 应用程序而我们要学习操作系统&#xff1a;Linux操作系统我们平时所用的WINDOWS和MS-DOS都是微软出的&#xff0c;而Linux不是微软出的&#xff0c;Linux的最大好处是非商业软件&#x…

leetcode1247. 交换字符使得字符串相同(贪心)

有两个长度相同的字符串 s1 和 s2&#xff0c;且它们其中 只含有 字符 “x” 和 “y”&#xff0c;你需要通过「交换字符」的方式使这两个字符串相同。 每次「交换字符」的时候&#xff0c;你都可以在两个字符串中各选一个字符进行交换。 交换只能发生在两个不同的字符串之间…

interop_如何在Blazor中实现JavaScript Interop

interop介绍 (Introduction) In this article, we will learn about JavaScript Interop in Blazor. We will understand what JavaScript Interop is and how we can implement it in Blazor with the help of a sample application.在本文中&#xff0c;我们将学习Blazor中Ja…

Centos 7和 Centos 6开放查看端口 防火墙关闭打开

Centos 7 firewall 命令&#xff1a; 查看已经开放的端口&#xff1a; firewall-cmd --list-ports 开启端口 firewall-cmd --zonepublic --add-port80/tcp --permanent 命令含义&#xff1a; –zone #作用域 –add-port80/tcp #添加端口&#xff0c;格式为&#xff1a;端口/通讯…

和get redis_SpringBoot整合Redis,你get了吗?

Our-task介绍本篇博客是我github上our-task&#xff1a;一个完整的清单管理系统的配套教程文档&#xff0c;这是SpringBootVue开发的前后端分离清单管理工具&#xff0c;仿滴答清单。目前已部署在阿里云ECS上&#xff0c;可进行在线预览&#xff0c;随意使用&#xff08;附详细…

linux课程设计qq,仿QQ聊天系统课程设计.doc

目录绪论1一&#xff0e;需求分析11.1软件功能需求分析21.2 安全需求分析2二&#xff0e;总体设计32.1 软件结构图32.2 功能描述32.2.1注册功能概要42.2.2登录功能概要42.2.3聊天功能概要52.3 安全设计6三&#xff0e;数据库设计63.1概念结构设计63.2逻辑结构设计73.3物理结构设…

ocp linux 基础要点

基本命令&#xff1a; 创建/修改/删除用户 useradd/usermod/userdel 创建/修改/删除用户组 groupadd/groupmod/groupdel 修改所属用户/所属用户组 chown/chgrp 修改权限 chmod 创建文件夹 mkdir 创建文件 touch 切换目录 …

leetcode1386. 安排电影院座位(贪心)

如上图所示&#xff0c;电影院的观影厅中有 n 行座位&#xff0c;行编号从 1 到 n &#xff0c;且每一行内总共有 10 个座位&#xff0c;列编号从 1 到 10 。 给你数组 reservedSeats &#xff0c;包含所有已经被预约了的座位。比如说&#xff0c;researvedSeats[i][3,8] &…

首席技术执行官_如何在几分钟内找到任何首席执行官的电子邮件地址

首席技术执行官by Theo Strauss由西奥斯特劳斯(Theo Strauss) 如何在几分钟内找到任何首席执行官的电子邮件地址 (How to find any CEO’s email address in minutes) 银河电子邮件指南&#xff1a;第一部分 (The Emailer’s Guide To The Galaxy: Part I) I’m 17, so my net…

Linux 查看磁盘或文件夹及文件大小

当磁盘大小超过标准时会有报警提示&#xff0c;这时如果掌握df和du命令是非常明智的选择。 df可以查看一级文件夹大小、使用比例、档案系统及其挂入点&#xff0c;但对文件却无能为力。 du可以查看文件及文件夹的大小。 两者配合使用&#xff0c;非常有效。比如用df查看哪个…

Python列表基础

列表&#xff1a;创建列表:list[] 注意&#xff1a;列表里面类型可以是不同的类型 取值&#xff1a;list[2]   替换&#xff1a;注意不要越界(下表超出了可表示范围) 操作&#xff1a; 合并列表&#xff1a;   list3list2list1 列表的重复:   (list8*3)   判断元素是否…

树莓派 触摸屏_如何用树莓派搭建一个颗粒物(PM2.5)传感器

用树莓派、一个廉价的传感器和一个便宜的屏幕监测空气质量。-- Stephan Tetzel(作者)大约一年前&#xff0c;我写了一篇关于如何使用树莓派和廉价传感器测量 空气质量 的文章。我们这几年已在学校里和私下使用了这个项目。然而它有一个缺点&#xff1a;由于它基于无线/有线网&a…