Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtschirs committed Feb 8, 2015
1 parent a208ec4 commit 372777f
Show file tree
Hide file tree
Showing 31 changed files with 2,172 additions and 0 deletions.
Binary file added bedifferent/img/axolotl-back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/axolotl.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/bg_xhdpi.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/camera.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/fish-back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/fish-board.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/fish.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/frankenstein-board.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/frankenstein.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/left.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/loading.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/orange-back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/orange-board.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/orange.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/right.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/strawberry-back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/strawberry.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/text.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/transparent.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/webcam.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/zombie-back.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/zombie-board.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added bedifferent/img/zombie.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
644 changes: 644 additions & 0 deletions bedifferent/index.htm

Large diffs are not rendered by default.

644 changes: 644 additions & 0 deletions bedifferent/index_en.htm

Large diffs are not rendered by default.

47 changes: 47 additions & 0 deletions bedifferent/js/compatibility.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/**
* @namespace Allows access to webRTC and other features for browsers that are
* not conforming to the latest standard (yet). Supported Browsers are:
* Chrome, Opera and Firefox (soon).
*/
var compatibility = (function() {
var lastTime = 0,

URL = window.URL || window.webkitURL,

requestAnimationFrame = function(callback, element) {
var requestAnimationFrame =
window.requestAnimationFrame ||
window.webkitRequestAnimationFrame ||
window.mozRequestAnimationFrame ||
window.oRequestAnimationFrame ||
function(callback, element) {
var currTime = new Date().getTime();
var timeToCall = Math.max(0, 16 - (currTime - lastTime));
var id = window.setTimeout(function() {
callback(currTime + timeToCall);
}, timeToCall);
lastTime = currTime + timeToCall;
return id;
};

return requestAnimationFrame.call(window, callback, element);
},

getUserMedia = function(options, success, error) {
var getUserMedia =
window.navigator.getUserMedia ||
window.navigator.mozGetUserMedia ||
window.navigator.webkitGetUserMedia ||
function(options, success, error) {
error();
};

return getUserMedia.call(window.navigator, options, success, error);
};

return {
URL: URL,
requestAnimationFrame: requestAnimationFrame,
getUserMedia: getUserMedia
};
})();
7 changes: 7 additions & 0 deletions bedifferent/js/objectdetect.eye.js

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions bedifferent/js/objectdetect.frontalface.js

Large diffs are not rendered by default.

Loading

0 comments on commit 372777f

Please sign in to comment.