Our AI Exam Proctor is meticulously crafted to leverage the power of artificial intelligence, meticulously monitoring exam activities and safeguarding the sanctity of your assessments. With its sophisticated algorithms and real-time detection capabilities, our AI proctor acts as a vigilant guardian, deterring and identifying potential cheating attempts.
-
Suspicious Movement Detection
Leverage AI to identify irregular head and eye movements that indicate potential cheating behavior.
-
Multi-Face Detection
Employ advanced facial recognition technology to detect multiple faces within the webcam's field of view, flagging potential assistance during exams.
-
Object Detection
Automatically identify prohibited objects like mobile phones, often used for illicit exam activities.
-
Comprehensive Reports
Generates detailed reports on exam activities, including potential cheating incidents for post-exam review.
- Browser:
Compatible with both desktop and mobile platforms
Compatible with WebView
npm install --save ion-smile
Example usage:
import 'ion-smile/style.css';
import ionSmile from 'ion-smile';
const config = {
credential:{
host : "https://example.com/",
token : "example-token",
userkey : "example-user",
session : "example-session"
},
dom:{
embed: document.querySelector("#div-element"), // default embed to body
fit: true, // fit width & height to div embeded, default false
moveable:true // default false
}
}
const smile = new ionSmile(config);
smile.init();
smile.on("ready",(e)=>{
if(e.module="ai" && e.status){
smile.start()
}
});
smile.on("alert",(e)=>{
if(e.status){ // status = true, if fraud detected
alert(e.description)
}
});