找传奇、传世资源到传世资源站!

人脸识别课堂管理

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

人脸识别课堂管理
from clipboard
.
├── smart_classroom_demo-master
│   ├── README.md
│   ├── __pycache__
│   │   ├── alphapose.cpython-37.pyc
│   │   ├── smart_classroom_app.cpython-37.pyc
│   │   └── smart_classroom_rc.cpython-37.pyc
│   ├── alphapose.py
│   ├── face_recog
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── data
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── config.cpython-37.pyc
│   │   │   └── config.py
│   │   ├── layers
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   └── __init__.cpython-37.pyc
│   │   │   ├── functions
│   │   │   │   ├── __pycache__
│   │   │   │   │   └── prior_box.cpython-37.pyc
│   │   │   │   └── prior_box.py
│   │   │   └── modules
│   │   │       ├── __init__.py
│   │   │       ├── __pycache__
│   │   │       │   ├── __init__.cpython-37.pyc
│   │   │       │   └── multibox_loss.cpython-37.pyc
│   │   │       └── multibox_loss.py
│   │   ├── main.py
│   │   ├── models
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── face_boxes_location.cpython-37.pyc
│   │   │   │   ├── face_recog.cpython-37.pyc
│   │   │   │   └── faceboxes.cpython-37.pyc
│   │   │   ├── face_boxes_location.py
│   │   │   ├── face_location_scanner.py
│   │   │   ├── face_recog.py
│   │   │   └── faceboxes.py
│   │   ├── people
│   │   │   └── worlds-largest-selfie.jpg
│   │   ├── register_face.py
│   │   ├── register_face_webcam.py
│   │   ├── roll_call.py
│   │   ├── test.py
│   │   └── utils
│   │       ├── __init__.py
│   │       ├── __pycache__
│   │       │   ├── __init__.cpython-37.pyc
│   │       │   └── box_utils.cpython-37.pyc
│   │       ├── box_utils.py
│   │       ├── build.py
│   │       ├── face_bank.py
│   │       ├── nms
│   │       │   ├── __init__.py
│   │       │   ├── __pycache__
│   │       │   │   ├── __init__.cpython-37.pyc
│   │       │   │   └── py_cpu_nms.cpython-37.pyc
│   │       │   ├── cpu_nms.pyx
│   │       │   ├── gpu_nms.hpp
│   │       │   ├── gpu_nms.pyx
│   │       │   ├── nms_kernel.cu
│   │       │   └── py_cpu_nms.py
│   │       ├── nms_wrapper.py
│   │       └── timer.py
│   ├── main_test.py
│   ├── models
│   │   ├── __pycache__
│   │   │   ├── action_analysis.cpython-37.pyc
│   │   │   ├── classroom_action_classifier.cpython-37.pyc
│   │   │   ├── concentration_evaluator.cpython-37.pyc
│   │   │   ├── face_aligner.cpython-37.pyc
│   │   │   ├── fatigue_monitor.cpython-37.pyc
│   │   │   ├── pose_estimator.cpython-37.pyc
│   │   │   ├── slient_face_detector.cpython-37.pyc
│   │   │   └── yolo_detector.cpython-37.pyc
│   │   ├── action_analysis.py
│   │   ├── classroom_action_classifier.py
│   │   ├── concentration_evaluator.py
│   │   ├── face_aligner.py
│   │   ├── fatigue_monitor.py
│   │   ├── pose_estimator.py
│   │   ├── slient_face_detector.py
│   │   └── yolo_detector.py
│   ├── pipeline_module
│   │   ├── __pycache__
│   │   │   ├── classroom_action_module.cpython-37.pyc
│   │   │   ├── face_detection_module.cpython-37.pyc
│   │   │   ├── face_encoding_module.cpython-37.pyc
│   │   │   ├── face_match_module.cpython-37.pyc
│   │   │   ├── pose_modules.cpython-37.pyc
│   │   │   ├── video_modules.cpython-37.pyc
│   │   │   ├── vis_modules.cpython-37.pyc
│   │   │   └── yolo_modules.cpython-37.pyc
│   │   ├── classroom_action_module.py
│   │   ├── core
│   │   │   ├── __pycache__
│   │   │   │   ├── base_module.cpython-37.pyc
│   │   │   │   └── task_solution.cpython-37.pyc
│   │   │   ├── base_module.py
│   │   │   └── task_solution.py
│   │   ├── face_detection_module.py
│   │   ├── face_encoding_module.py
│   │   ├── face_match_module.py
│   │   ├── pose_modules.py
│   │   ├── video_modules.py
│   │   ├── vis_modules.py
│   │   └── yolo_modules.py
│   ├── remember
│   ├── requirements.txt
│   ├── resource
│   │   ├── font
│   │   │   └── NotoSansCJKkr-Black.otf
│   │   ├── ico
│   │   │   ├── edit.ico
│   │   │   ├── multimedia.ico
│   │   │   ├── qr-code-scan.ico
│   │   │   ├── refresh.ico
│   │   │   ├── scan.ico
│   │   │   ├── smart_classroom.qrc
│   │   │   ├── video-player.ico
│   │   │   ├── web-camera.ico
│   │   │   └── webcam.ico
│   │   ├── pic
│   │   │   └── human_boarder.png
│   │   └── video_sources.csv
│   ├── silent_face
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── README_EN.md
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── datasets
│   │   │   └── README.md
│   │   ├── images
│   │   │   ├── demo.gif
│   │   │   ├── framework.jpg
│   │   │   ├── logo.jpg
│   │   │   ├── patch_demo.png
│   │   │   ├── sample
│   │   │   │   ├── image_F1.jpg
│   │   │   │   ├── image_F1_result.jpg
│   │   │   │   ├── image_F2.jpg
│   │   │   │   ├── image_F2_result.jpg
│   │   │   │   ├── image_T1.jpg
│   │   │   │   └── image_T1_result.jpg
│   │   │   ├── 设置阈值.png
│   │   │   └── 静默活体APK.jpeg
│   │   ├── requirements.txt
│   │   ├── runs
│   │   │   ├── Jun11_16-18-35_LAPTOP-GJLJI8Q3MiniFASNetV2
│   │   │   │   └── events.out.tfevents.1623399515.LAPTOP-GJLJI8Q3
│   │   │   └── Jun11_16-25-49_LAPTOP-GJLJI8Q3MiniFASNetV1SE
│   │   │       └── events.out.tfevents.1623399949.LAPTOP-GJLJI8Q3
│   │   ├── saved_logs
│   │   │   └── jobs
│   │   │       └── Anti_Spoofing_1_80x80
│   │   │           └── Jul08_12-51-18
│   │   │               └── events.out.tfevents.1594183888.old01
│   │   ├── src
│   │   │   ├── __pycache__
│   │   │   │   ├── anti_spoof_predictor.cpython-37.pyc
│   │   │   │   └── utility.cpython-37.pyc
│   │   │   ├── anti_spoof_predict.py
│   │   │   ├── anti_spoof_predictor.py
│   │   │   ├── data_io
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── functional.cpython-37.pyc
│   │   │   │   │   └── transform.cpython-37.pyc
│   │   │   │   ├── dataset_folder.py
│   │   │   │   ├── dataset_loader.py
│   │   │   │   ├── functional.py
│   │   │   │   └── transform.py
│   │   │   ├── default_config.py
│   │   │   ├── generate_patches.py
│   │   │   ├── model_lib
│   │   │   │   ├── MiniFASNet.py
│   │   │   │   ├── MultiFTNet.py
│   │   │   │   └── __pycache__
│   │   │   │       └── MiniFASNet.cpython-37.pyc
│   │   │   ├── train_main.py
│   │   │   └── utility.py
│   │   ├── test.py
│   │   ├── train.py
│   │   └── watch_tensor.py
│   ├── smart_classroom
│   │   ├── __pycache__
│   │   │   ├── cheating_detection_app.cpython-37.pyc
│   │   │   ├── class_concentration_app.cpython-37.pyc
│   │   │   ├── dynamic_attendance_app.cpython-37.pyc
│   │   │   ├── face_register_app.cpython-37.pyc
│   │   │   └── list_items.cpython-37.pyc
│   │   ├── cheating_detection_app.py
│   │   ├── class_concentration_app.py
│   │   ├── dynamic_attendance_app.py
│   │   ├── face_register_app.py
│   │   ├── list_items.py
│   │   └── my_combox.py
│   ├── smart_classroom_app.py
│   ├── smart_classroom_rc.py
│   ├── ui
│   │   ├── __pycache__
│   │   │   ├── attendance_item.cpython-37.pyc
│   │   │   ├── cheating_detection.cpython-37.pyc
│   │   │   ├── cheating_list_item.cpython-37.pyc
│   │   │   ├── class_concentration.cpython-37.pyc
│   │   │   ├── dynamic_attendance.cpython-37.pyc
│   │   │   ├── face_list_item.cpython-37.pyc
│   │   │   ├── face_register.cpython-37.pyc
│   │   │   ├── real_time_catch.cpython-37.pyc
│   │   │   └── smart_classroom.cpython-37.pyc
│   │   ├── attendance_item.py
│   │   ├── attendance_item.ui
│   │   ├── cheating_detection.py
│   │   ├── cheating_detection.ui
│   │   ├── cheating_list_item.py
│   │   ├── cheating_list_item.ui
│   │   ├── class_concentration.py
│   │   ├── class_concentration.ui
│   │   ├── dynamic_attendance.py
│   │   ├── dynamic_attendance.ui
│   │   ├── face_list_item.py
│   │   ├── face_list_item.ui
│   │   ├── face_register.py
│   │   ├── face_register.ui
│   │   ├── real_time_catch.py
│   │   ├── real_time_catch.ui
│   │   ├── smart_classroom.py
│   │   └── smart_classroom.ui
│   └── utils
│       ├── __pycache__
│       │   ├── common.cpython-37.pyc
│       │   ├── general.cpython-37.pyc
│       │   ├── google_utils.cpython-37.pyc
│       │   ├── img_cropper.cpython-37.pyc
│       │   ├── metrics.cpython-37.pyc
│       │   ├── simple_transform.cpython-37.pyc
│       │   ├── torch_utils.cpython-37.pyc
│       │   └── vis.cpython-37.pyc
│       ├── alphapose
│       │   ├── __pycache__
│       │   │   ├── bbox.cpython-37.pyc
│       │   │   └── transforms.cpython-37.pyc
│       │   ├── bbox.py
│       │   └── transforms.py
│       ├── common.py
│       ├── general.py
│       ├── google_utils.py
│       ├── img_cropper.py
│       ├── metrics.py
│       ├── simple_transform.py
│       ├── torch_utils.py
│       └── vis.py
└── 人脸识别课堂管理.zip

55 directories, 204 files

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复