All Projects → TBWAShanghai → quantum-face-register

TBWAShanghai / quantum-face-register

Licence: other
face register with three.js and tracking.js

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to quantum-face-register

realtime-facereccpp
Real time face recognition with tracking (mtcnn detection, kcf tracker, arcface loss)
Stars: ✭ 32 (-27.27%)
Mutual labels:  tracking, face-recognition
Agamari
🍙 Katamari × Agar.io
Stars: ✭ 46 (+4.55%)
Mutual labels:  threejs, socket-io
Bombanauts
Bombanauts, inspired by the original Bomberman game, is a 3D multiplayer online battle arena (MOBA) game where players can throw bombs at each other, make boxes explode, and even other players!
Stars: ✭ 54 (+22.73%)
Mutual labels:  threejs, socket-io
Jeelizweboji
JavaScript/WebGL real-time face tracking and expression detection library. Build your own emoticons animated in real time in the browser! SVG and THREE.js integration demos are provided.
Stars: ✭ 835 (+1797.73%)
Mutual labels:  tracking, threejs
Jeelizfacefilter
Javascript/WebGL lightweight face tracking library designed for augmented reality webcam filters. Features : multiple faces detection, rotation, mouth opening. Various integration examples are provided (Three.js, Babylon.js, FaceSwap, Canvas2D, CSS3D...).
Stars: ✭ 2,042 (+4540.91%)
Mutual labels:  tracking, threejs
ARFaceFilter
Javascript/WebGL lightweight face tracking library designed for augmented reality webcam filters. Features : multiple faces detection, rotation, mouth opening. Various integration examples are provided (Three.js, Babylon.js, FaceSwap, Canvas2D, CSS3D...).
Stars: ✭ 72 (+63.64%)
Mutual labels:  tracking, threejs
EduSmart
It utilizes 3D, Augmented reality to give real-life simulations or feels of various models and make the learning process more impactful and fascinating. With an interactive live feature, students can ask the teacher their doubts instantly and also discuss.
Stars: ✭ 23 (-47.73%)
Mutual labels:  threejs, socket-io
TweetMigration
A WebGL heatmap of global Twitter activity
Stars: ✭ 42 (-4.55%)
Mutual labels:  threejs, socket-io
boltly
Boltly: The complete Socket.io test client!
Stars: ✭ 16 (-63.64%)
Mutual labels:  socket-io
Whatsapp-Clone-Flutter
The Repository of Chat App development UI PART using Flutter (Youtube Series)
Stars: ✭ 275 (+525%)
Mutual labels:  socket-io
XREngine
Immersive infrastructure for everyone. Everything you need to build and deploy scalable realtime 3D social apps and more. 🤖 🚀 👓 🚀 🕹️ 🚀 🧑🏿‍🚀
Stars: ✭ 423 (+861.36%)
Mutual labels:  threejs
swetrix-js
The JavaScript analytics client for Swetrix Analytics
Stars: ✭ 28 (-36.36%)
Mutual labels:  tracking
chattt-backend
🖥 Backend for chattt
Stars: ✭ 17 (-61.36%)
Mutual labels:  socket-io
vue-element-admin-fastapi
vue-element-admin-fastapi
Stars: ✭ 145 (+229.55%)
Mutual labels:  socket-io
Face-Recognition-Class-Attendance-System
基于人脸识别的课堂考勤系统v2.0
Stars: ✭ 129 (+193.18%)
Mutual labels:  face-recognition
myChat
MyChat es una aplicación de mensajería en tiempo real con servidores de Discord (similar a un canal de Discord).
Stars: ✭ 30 (-31.82%)
Mutual labels:  socket-io
v chat sdk
official sdk for v chat this is a complete chat ecosystem use flutter for clint node js and socket io for server side flutter chat v chat sdk and flutter group chat
Stars: ✭ 25 (-43.18%)
Mutual labels:  socket-io
Attendance-Portal
We have developed a cutting-edge attendance recorder. Using face recognition, you can easily record attendance and have access to in-depth analysis and a wide range of functionalities. Because of the covid-19 pandemic, stringent guidelines have been established, and precautions must be made to minimise unnecessary physical encounters. As a resul…
Stars: ✭ 20 (-54.55%)
Mutual labels:  face-recognition
Pepaverse
Pepaverse is an open source social network build with nodejs, mongoDB, passportjs and socket.io
Stars: ✭ 16 (-63.64%)
Mutual labels:  socket-io
stereo-panorama-viewer
View stereoscopic panoramas in your browser!
Stars: ✭ 23 (-47.73%)
Mutual labels:  threejs

人脸签到(trakcing.js+three.js+anime.js)

  1. 微信注册: https://wechat.mynecis.cn/face/register

  2. 手机浏览器打开人脸识别(iphone需要ios11,微信不支持): https://wechat.mynecis.cn/face/showmobile/

  3. 电脑打开:https://wechat.mynecis.cn/face/screen/

掘金文章 https://juejin.im/post/5b3d8662e51d45191b60f817

项目说明

##目录结构

	├── .gitignore 							//git忽略文件
	├── README.md 							//项目说明
	├── back-end/ 							//后端文件
	| ├── app.js 							//项目启动文件
	| ├── config.json 						//项目配置文件
	| ├── package-lock.json 					//node依赖配置
	| ├── package.json 						//node配置
	| ├── node_modules/ 						//node包
	| ├── utils 							//工具文件
	| |	└── utils.js						//工具文件
	| |── website/
	| |	├── db.js 						//连接数据库
	| |	├── models/
	| |	| └── schema.js 					//schema
	| |	└── datas/						//获取数据
	| |	  └──site.js 						//api function
	| └── rigister 						    	//注册图片
	└── front-end/							//前端文件
	  ├── register/							//注册
	  |	├── images/ 						//图片
	  |	├── index.html						//主文件
	  |	├── styles 						//样式
	  |	└── scripts/						//脚本文件
	  ├── screen/							//大屏
	  |	├── images/ 						//图片
	  |	├── index.html						//主文件
	  |	├── styles 						//样式
  	  |	├── libs/						//库文件
	  |	└── scripts/						//脚本文件
	  ├── showmobile/						//人脸识别手机
	  |	├── index.html						//主文件
	  |	├── styles 						//样式
	  |	└── scripts/						//脚本文件
  	  └── show/						        //人脸识别pc
	  	├── index.html						//主文件
	  	├── styles 						//样式
	  	└── scripts/						//脚本文件

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].