资源简介
通过django搭建的人脸检测web平台,以单独的api接口形式对外提供调用
代码片段和文件信息
#!/usr/bin/env python
import os
import sys
if __name__ == “__main__“:
os.environ.setdefault(“DJANGO_SETTINGS_MODULE“ “facedetection.settings“)
try:
from django.core.management import execute_from_command_line
except ImportError:
# The above import may fail for some other reason. Ensure that the
# issue is really that Django is missing to avoid masking other
# exceptions on Python 2.
try:
import django
except ImportError:
raise ImportError(
“Couldn‘t import Django. Are you sure it‘s installed and “
“available on your PYTHONPATH environment variable? Did you “
“forget to activate a virtual environment?“
)
raise
execute_from_command_line(sys.argv)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2110 2019-04-07 13:48 facedetection\.vscode\launch.json
文件 66 2019-04-07 12:46 facedetection\app\admin.py
文件 86 2019-04-07 12:46 facedetection\app\apps.py
文件 0 2019-04-07 12:46 facedetection\app\migrations\__init__.py
文件 154 2019-04-07 13:28 facedetection\app\migrations\__pycache__\__init__.cpython-36.pyc
文件 60 2019-04-07 12:46 facedetection\app\models.py
文件 63 2019-04-07 12:46 facedetection\app\tests.py
文件 2525 2019-04-07 13:47 facedetection\app\views.py
文件 0 2019-04-07 12:46 facedetection\app\__init__.py
文件 184 2019-04-07 13:28 facedetection\app\__pycache__\admin.cpython-36.pyc
文件 181 2019-04-07 13:28 facedetection\app\__pycache__\models.cpython-36.pyc
文件 1690 2019-04-07 13:47 facedetection\app\__pycache__\views.cpython-36.pyc
文件 143 2019-04-07 13:28 facedetection\app\__pycache__\__init__.cpython-36.pyc
文件 12288 2019-04-07 13:28 facedetection\db.sqlite3
文件 3272 2019-04-07 12:49 facedetection\facedetection\settings.py
文件 885 2019-04-07 13:22 facedetection\facedetection\urls.py
文件 420 2019-04-07 12:43 facedetection\facedetection\wsgi.py
文件 0 2019-04-07 12:43 facedetection\facedetection\__init__.py
文件 2289 2019-04-07 13:28 facedetection\facedetection\__pycache__\settings.cpython-36.pyc
文件 1035 2019-04-07 13:28 facedetection\facedetection\__pycache__\urls.cpython-36.pyc
文件 569 2019-04-07 13:28 facedetection\facedetection\__pycache__\wsgi.cpython-36.pyc
文件 153 2019-04-07 12:45 facedetection\facedetection\__pycache__\__init__.cpython-36.pyc
文件 930127 2018-02-12 00:37 facedetection\haarcascade_frontalface_default.xm
文件 833 2019-04-07 12:43 facedetection\manage.py
文件 444889 2018-02-12 00:37 facedetection\temp.jpg
文件 627 2019-04-07 13:58 facedetection\test_run.py
目录 0 2019-04-07 13:28 facedetection\app\migrations\__pycache__
目录 0 2019-04-07 13:28 facedetection\app\migrations
目录 0 2019-04-07 13:47 facedetection\app\__pycache__
目录 0 2019-04-07 13:28 facedetection\facedetection\__pycache__
............此处省略7个文件信息
- 上一篇:tdms文件转为txt文件
- 下一篇:Project2007项目案例MPP源文件
相关资源
- NVIDIAOpticalFlowSDK-79c6cee80a2df9a196f20afd6
- opencv_contrib-3.4.0.zip
- opencv2.4.9源码分析——SIFT
- 用两个摄像头实现,双目标定,双目
- 论文研究-基于肤色和AdaBoost算法的彩
- opencv_traincascade训练分类器,手势识别
- opencv3.0交叉编译用parallel.cpp
- 基于opencv的图像识别识别图像中的色
- 基于openCV的识别特定颜色区域
- 基于OpenCV的分水岭算法实现
- QT+opencv+OCR 身份证号码,银行卡号识别
- opencv视频特定颜色区域识别
- 把RGB转换为HSV和HSI然后根据黄色和蓝
- opencv视觉测距
- 基于Qt和opencv的身份证号码识别系统
- opencv_ffmpeg249.dll
- SfM稀疏三维点云重建--完整工程文件
- 基于opencv的数人头程序源代码
- Emgu.CV 打开视频与人脸检测
- 利用OpenCV中的Stitcher类实现全景图像拼
- opencv实现的sift算法源码,包含了图像
- openCV 上的小波变换
- 基于OPENCV的车牌识别系统设计
- iOS平台下人脸识别系统实现研究
- 617张国内车牌60-17bmp图片用于OpenCV正样
- hog特征提取,c版本代码
- 基于Qt5.8+OpenCV3.2的Basler多相机触发开
- 基于Opencv实现的图像纠偏
- ImageWatch2019.vsix
- SIFT特征提取+匹配
评论
共有 条评论