face-recognition.js/public_html/js/action-script.js

35 lines
597 B
JavaScript

var DOM = {
body: $('body'),
img: $('img')
};
var Controller = new dat.GUI();
/* [1] Initialisation
=========================================================*/
var init = function(){
this.src = 'front:male:1.jpg';
Controller.add(this, 'src', this._images);
};
/* [2] Routine principale
=========================================================*/
var process = function(){
console.warn('PROCESS');
// TODO: Code here
log('Image loaded');
};
/* [x] Chargement image
=========================================================*/
var iL = new ImageLoader( DOM.img, init, process );