$lang_tmp = explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']);
$lang_tmp = strtolower(substr(chop($lang_tmp[0]),0,2));
if($lang_tmp=="fr") $lang=fr; else $lang=en;
if(isset($_GET["lang"]))
if($_GET["lang"]=="fr") $lang = "fr"; else $lang = "en";
require_once("utils/lang.php");
?>
if(isset($_GET["lang"]))
if($_GET["lang"]=="fr") $lang = "fr"; else $lang = "en";
require_once("utils/lang.php");
?>
OpenKraken Library
OpenKraken is an open source library developed by our team. It contains a lot of different parts, for different purposes: computer vision, image processing, computer graphics, graphs, ....
Automatic Initialization
Here is an implementation of my method of automatic initialization for motion capture. It contains:
- source code of the isthmus based thinning algorithm used for the skeletonization step
- source code of the homeomorphic alignement algorithm used for the matching step
- the parts of the OpenKraken library I use are include in the archive (no need to install it)
- a full example of how to use it (main.cpp)
- examples of model description
- example of 3D shape
Feel free to use this code at your convenience.
$lang_tmp = explode(',',$_SERVER['HTTP_ACCEPT_LANGUAGE']);
$lang_tmp = strtolower(substr(chop($lang_tmp[0]),0,2));
if($lang_tmp=="fr") $lang=fr; else $lang=en;
if(isset($_GET["lang"]))
if($_GET["lang"]=="fr") $lang = "fr"; else $lang = "en";
require_once("utils/lang.php");
?>