php人脸识别代码,PHP实现人脸识别技术

【实例简介】

PHP实现人脸识别技术

【实例截图】

【核心代码】

PHP实现人脸识别技术

└── PHP实现人脸识别技术

├── PHP实现人脸识别技术

│   └── wx_face

│   ├── test.php

│   ├── token.php

│   ├── upload

│   │   ├── 364010.jpg

│   │   ├── 624348.jpg

│   │   ├── 801363.jpg

│   │   └── 917281.jpg

│   ├── upload.html

│   ├── up.php

│   └── weui

│   ├── bower.json

│   ├── CHANGELOG.md

│   ├── dist

│   │   ├── example

│   │   │   ├── example.css

│   │   │   ├── example.js

│   │   │   ├── images

│   │   │   │   ├── icon_nav_actionSheet.png

│   │   │   │   ├── icon_nav_article.png

│   │   │   │   ├── icon_nav_button.png

│   │   │   │   ├── icon_nav_cell.png

│   │   │   │   ├── icon_nav_dialog.png

│   │   │   │   ├── icon_nav_icons.png

│   │   │   │   ├── icon_nav_msg.png

│   │   │   │   ├── icon_nav_toast.png

│   │   │   │   └── vcode.jpg

│   │   │   ├── index.html

│   │   │   ├── snapshot

│   │   │   │   ├── actionSheet.png

│   │   │   │   ├── button.png

│   │   │   │   ├── cell.png

│   │   │   │   ├── dialog1.png

│   │   │   │   ├── dialog2.png

│   │   │   │   ├── grid.png

│   │   │   │   ├── icons.png

│   │   │   │   ├── progress.png

│   │   │   │   ├── qrcode.png

│   │   │   │   ├── result.png

│   │   │   │   ├── text.png

│   │   │   │   ├── toast1.png

│   │   │   │   └── toast2.png

│   │   │   └── zepto.min.js

│   │   └── style

│   │   ├── weui.css

│   │   └── weui.min.css

│   ├── gulpfile.js

│   ├── package.json

│   ├── README.md

│   └── src

│   ├── example

│   │   ├── example.js

│   │   ├── example.less

│   │   ├── fragment

│   │   │   ├── actionsheet.html

│   │   │   ├── article.html

│   │   │   ├── button.html

│   │   │   ├── cell.html

│   │   │   ├── dialog.html

│   │   │   ├── home.html

│   │   │   ├── icons.html

│   │   │   ├── msg.html

│   │   │   ├── progress.html

│   │   │   └── toast.html

│   │   ├── images

│   │   │   ├── icon_nav_actionSheet.png

│   │   │   ├── icon_nav_article.png

│   │   │   ├── icon_nav_button.png

│   │   │   ├── icon_nav_cell.png

│   │   │   ├── icon_nav_dialog.png

│   │   │   ├── icon_nav_icons.png

│   │   │   ├── icon_nav_msg.png

│   │   │   ├── icon_nav_toast.png

│   │   │   └── vcode.jpg

│   │   ├── index.html

│   │   ├── snapshot

│   │   │   ├── button.png

│   │   │   ├── cell.png

│   │   │   ├── dialog1.png

│   │   │   ├── dialog2.png

│   │   │   ├── grid.png

│   │   │   ├── icons.png

│   │   │   ├── progress.png

│   │   │   ├── qrcode.png

│   │   │   ├── result.png

│   │   │   ├── text.png

│   │   │   ├── toast1.png

│   │   │   └── toast2.png

│   │   └── zepto.min.js

│   └── style

│   ├── base

│   │   ├── fn.less

│   │   ├── mixin

│   │   │   ├── mobile.less

│   │   │   ├── setArrow.less

│   │   │   ├── setChecked.less

│   │   │   ├── setOnepx.less

│   │   │   └── text.less

│   │   ├── reset.less

│   │   └── variable

│   │   ├── global.less

│   │   ├── monokai.less

│   │   ├── weui_button.less

│   │   ├── weui_cell.less

│   │   ├── weui_grid.less

│   │   ├── weui_msg.less

│   │   └── weui_progress.less

│   ├── icon

│   │   ├── weui_font.less

│   │   └── weui_icon_font.less

│   ├── weui.less

│   └── widget

│   ├── weui_button

│   │   ├── weui_btn_default.less

│   │   ├── weui_btn_disabled.less

│   │   ├── weui_btn_global.less

│   │   ├── weui_btn_plain.less

│   │   ├── weui_btn_primary.less

│   │   ├── weui_btn_warn.less

│   │   └── weui_button.less

│   ├── weui_cell

│   │   ├── weui_access.less

│   │   ├── weui_cell_global.less

│   │   ├── weui_check

│   │   │   ├── weui_checkbox.less

│   │   │   ├── weui_check_common.less

│   │   │   └── weui_radio.less

│   │   ├── weui_check.less

│   │   ├── weui_form

│   │   │   ├── weui_form_common.less

│   │   │   ├── weui_select_after.less

│   │   │   ├── weui_select_before.less

│   │   │   ├── weui_select.less

│   │   │   └── weui_vcode.less

│   │   ├── weui_form.less

│   │   ├── weui_switch.less

│   │   └── weui_uploader.less

│   ├── weui_grid

│   │   └── weui_grid.less

│   ├── weui_page

│   │   ├── weui_article.less

│   │   └── weui_msg.less

│   ├── weui_progress

│   │   └── weui_progress.less

│   └── weui_tips

│   ├── weui_actionsheet.less

│   ├── weui_dialog.less

│   ├── weui_mask.less

│   └── weui_toast.less

└── wx_face

├── test.php

├── token.php

├── upload

│   ├── 364010.jpg

│   ├── 624348.jpg

│   ├── 801363.jpg

│   └── 917281.jpg

├── upload.html

├── up.php

└── weui

├── bower.json

├── CHANGELOG.md

├── dist

│   ├── example

│   │   ├── example.css

│   │   ├── example.js

│   │   ├── images

│   │   │   ├── icon_nav_actionSheet.png

│   │   │   ├── icon_nav_article.png

│   │   │   ├── icon_nav_button.png

│   │   │   ├── icon_nav_cell.png

│   │   │   ├── icon_nav_dialog.png

│   │   │   ├── icon_nav_icons.png

│   │   │   ├── icon_nav_msg.png

│   │   │   ├── icon_nav_toast.png

│   │   │   └── vcode.jpg

│   │   ├── index.html

│   │   ├── snapshot

│   │   │   ├── actionSheet.png

│   │   │   ├── button.png

│   │   │   ├── cell.png

│   │   │   ├── dialog1.png

│   │   │   ├── dialog2.png

│   │   │   ├── grid.png

│   │   │   ├── icons.png

│   │   │   ├── progress.png

│   │   │   ├── qrcode.png

│   │   │   ├── result.png

│   │   │   ├── text.png

│   │   │   ├── toast1.png

│   │   │   └── toast2.png

│   │   └── zepto.min.js

│   └── style

│   ├── weui.css

│   └── weui.min.css

├── gulpfile.js

├── package.json

├── README.md

└── src

├── example

│   ├── example.js

│   ├── example.less

│   ├── fragment

│   │   ├── actionsheet.html

│   │   ├── article.html

│   │   ├── button.html

│   │   ├── cell.html

│   │   ├── dialog.html

│   │   ├── home.html

│   │   ├── icons.html

│   │   ├── msg.html

│   │   ├── progress.html

│   │   └── toast.html

│   ├── images

│   │   ├── icon_nav_actionSheet.png

│   │   ├── icon_nav_article.png

│   │   ├── icon_nav_button.png

│   │   ├── icon_nav_cell.png

│   │   ├── icon_nav_dialog.png

│   │   ├── icon_nav_icons.png

│   │   ├── icon_nav_msg.png

│   │   ├── icon_nav_toast.png

│   │   └── vcode.jpg

│   ├── index.html

│   ├── snapshot

│   │   ├── button.png

│   │   ├── cell.png

│   │   ├── dialog1.png

│   │   ├── dialog2.png

│   │   ├── grid.png

│   │   ├── icons.png

│   │   ├── progress.png

│   │   ├── qrcode.png

│   │   ├── result.png

│   │   ├── text.png

│   │   ├── toast1.png

│   │   └── toast2.png

│   └── zepto.min.js

└── style

├── base

│   ├── fn.less

│   ├── mixin

│   │   ├── mobile.less

│   │   ├── setArrow.less

│   │   ├── setChecked.less

│   │   ├── setOnepx.less

│   │   └── text.less

│   ├── reset.less

│   └── variable

│   ├── global.less

│   ├── monokai.less

│   ├── weui_button.less

│   ├── weui_cell.less

│   ├── weui_grid.less

│   ├── weui_msg.less

│   └── weui_progress.less

├── icon

│   ├── weui_font.less

│   └── weui_icon_font.less

├── weui.less

└── widget

├── weui_button

│   ├── weui_btn_default.less

│   ├── weui_btn_disabled.less

│   ├── weui_btn_global.less

│   ├── weui_btn_plain.less

│   ├── weui_btn_primary.less

│   ├── weui_btn_warn.less

│   └── weui_button.less

├── weui_cell

│   ├── weui_access.less

│   ├── weui_cell_global.less

│   ├── weui_check

│   │   ├── weui_checkbox.less

│   │   ├── weui_check_common.less

│   │   └── weui_radio.less

│   ├── weui_check.less

│   ├── weui_form

│   │   ├── weui_form_common.less

│   │   ├── weui_select_after.less

│   │   ├── weui_select_before.less

│   │   ├── weui_select.less

│   │   └── weui_vcode.less

│   ├── weui_form.less

│   ├── weui_switch.less

│   └── weui_uploader.less

├── weui_grid

│   └── weui_grid.less

├── weui_page

│   ├── weui_article.less

│   └── weui_msg.less

├── weui_progress

│   └── weui_progress.less

└── weui_tips

├── weui_actionsheet.less

├── weui_dialog.less

├── weui_mask.less

└── weui_toast.less

56 directories, 244 files

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值