Adds FeedBack page to Ivolution website

This commit is contained in:
2012-10-03 14:25:12 +02:00
parent 268f6f0056
commit 8c1fe088f7
23 changed files with 1069 additions and 27 deletions

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href="./pages/About.html">About</a></li>
<li><a href="./pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>
@@ -107,6 +110,16 @@
<div class="page-header"><h1>Ivolution <small>[archive]</small></h1></div>
<h2>2010</h2>
<h3>December</h3>
<ul>
<li><a href="comments.html">Feedback</a></li>
</ul>
<footer>
<p> Website proudly powered by <a href="http://pelican.notmyidea.org/en/3.0/index.html">Pelican</a>. Theme by <a href="http://santini.di.unimi.it/">Massimo Santini</a>.</p>

View File

@@ -0,0 +1,159 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ivolution</title>
<meta name="description" content="">
<meta name="author" content="Julien Lengrand-Lambert">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src=".././theme/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href=".././theme/bootstrap.min.css" rel="stylesheet">
<link href=".././theme/local.css" rel="stylesheet">
<link href=".././theme/pygments.css" rel="stylesheet">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34919152-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="topbar">
<div class="topbar-inner">
<div class="container-fluid">
<a class="brand" href=".././index.html">Ivolution</a>
<ul class="nav">
<a href="https://github.com/jlengrand/FaceMovie">Take one picture of yourself a day, automatically generate a movie!</a>
</ul>
<p class="pull-right"><b><a href="https://github.com/jlengrand/Ivolution">[Fork me on GitHub]</a></b></p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="sidebar">
<div class="well">
<h3>Contents</h3>
<ul>
<li><a href=".././pages/Ivolution.html">Ivolution Project</a></li>
<li><a href=".././pages/OneMinuteTutorial.html">One minute tutorial</a></li>
<li><a href=".././pages/Downloads.html">Downloads</a></li>
<li><a href=".././pages/Installation.html">Installation</a></li>
<li><a href=".././pages/MainInterface.html">Main Interface</a></li>
<li><a href=".././pages/Settings.html">Settings</a></li>
<li><a href=".././pages/FAQ.html">FAQ</a></li>
<li><a href=".././pages/FutureDevelopments.html">Future Developments</a></li>
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
<li><a href="http://python.org">Python.org</a></li>
<li><a href="http://opencv.willowgarage.com/wiki/">OpenCV</a></li>
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>
<ul>
<li><a href="http://lengrand.fr">My website</a></li>
<li><a href="https://twitter.com/jlengrand">twitter</a></li>
<li><a href="https://plus.google.com/u/0/107343304730454368817/posts">Google+</a></li>
<li><a href="https://github.com/jlengrand">Github</a></li>
<li><a href="http://stackoverflow.com/users/282677/jlengrand">Stack Overflow</a></li>
<li><a href="http://nl.linkedin.com/pub/julien-lengrand-lambert/14/660/551/en">linkedin</a></li>
</ul>
</div>
</div>
</div>
<div class="content">
<div class='page'>
<div class="page-header"><h1>Ivolution Project</h1></div>
<div class="page-content"><h2>Welcome on the website of the Ivolution project !</h2>
<p>Ivolution is a <strong>face timelapse generator</strong>.
Feed it with a bunch of images and it will generate a movie with your face centered on the screen.</p>
<p>Here is a small demonstration of what Ivolution can achieve :</p>
<p><center><iframe width="420" height="315" src="http://www.youtube.com/embed/yBnsqYn9Vgg" frameborder="0" allowfullscreen></iframe></center></p>
<p>Ivolution uses <strong>face detection</strong> and modifies the images so that your face always keeps the same size and location over the movie.
Images are processed in <strong>chronological order</strong>, so that you can see your face evoluate over time !</p>
<p>Ivolution uses a really simple interface, so that you timelapse is only two clicks from being generated !
Here is what the current interface looks like :</p>
<p><center>
<p><img alt="Main interface" src="../theme/images/blog/mainpage1.png" /></p>
</center></p>
<p>Ivolution currently supports Windows and Linux and was successfully tested on Windows XP, 7 and Ubuntu 12.04.</p>
<p><strong>Ivolution is currently still in early development, and you may face bugs or feel like critical features are missing.</strong>
<strong>In this case, just let me know by <a href="../static/ivolution_app@gmail.com">sending me a mail</a> or by <a href="https://github.com/jlengrand/FaceMovie/issues?state=open">filing a bug here</a>. I'll be glad to help you !</strong></p></div>
</div>
<footer>
<p> Website proudly powered by <a href="http://pelican.notmyidea.org/en/3.0/index.html">Pelican</a>. Theme by <a href="http://santini.di.unimi.it/">Massimo Santini</a>.</p>
<p>&copy; Julien Lengrand-Lambert 2012</p>
</footer>
</div>
</div>
</body>
</html>

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href="./pages/About.html">About</a></li>
<li><a href="./pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>
@@ -108,6 +111,8 @@
<ul>
<li><a href="./category/misc.html">misc</a></li>
</ul>
<footer>

159
category/misc.html Normal file
View File

@@ -0,0 +1,159 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ivolution</title>
<meta name="description" content="">
<meta name="author" content="Julien Lengrand-Lambert">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src=".././theme/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href=".././theme/bootstrap.min.css" rel="stylesheet">
<link href=".././theme/local.css" rel="stylesheet">
<link href=".././theme/pygments.css" rel="stylesheet">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34919152-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="topbar">
<div class="topbar-inner">
<div class="container-fluid">
<a class="brand" href=".././index.html">Ivolution</a>
<ul class="nav">
<a href="https://github.com/jlengrand/FaceMovie">Take one picture of yourself a day, automatically generate a movie!</a>
</ul>
<p class="pull-right"><b><a href="https://github.com/jlengrand/Ivolution">[Fork me on GitHub]</a></b></p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="sidebar">
<div class="well">
<h3>Contents</h3>
<ul>
<li><a href=".././pages/Ivolution.html">Ivolution Project</a></li>
<li><a href=".././pages/OneMinuteTutorial.html">One minute tutorial</a></li>
<li><a href=".././pages/Downloads.html">Downloads</a></li>
<li><a href=".././pages/Installation.html">Installation</a></li>
<li><a href=".././pages/MainInterface.html">Main Interface</a></li>
<li><a href=".././pages/Settings.html">Settings</a></li>
<li><a href=".././pages/FAQ.html">FAQ</a></li>
<li><a href=".././pages/FutureDevelopments.html">Future Developments</a></li>
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
<li><a href="http://python.org">Python.org</a></li>
<li><a href="http://opencv.willowgarage.com/wiki/">OpenCV</a></li>
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>
<ul>
<li><a href="http://lengrand.fr">My website</a></li>
<li><a href="https://twitter.com/jlengrand">twitter</a></li>
<li><a href="https://plus.google.com/u/0/107343304730454368817/posts">Google+</a></li>
<li><a href="https://github.com/jlengrand">Github</a></li>
<li><a href="http://stackoverflow.com/users/282677/jlengrand">Stack Overflow</a></li>
<li><a href="http://nl.linkedin.com/pub/julien-lengrand-lambert/14/660/551/en">linkedin</a></li>
</ul>
</div>
</div>
</div>
<div class="content">
<div class='page'>
<div class="page-header"><h1>Ivolution Project</h1></div>
<div class="page-content"><h2>Welcome on the website of the Ivolution project !</h2>
<p>Ivolution is a <strong>face timelapse generator</strong>.
Feed it with a bunch of images and it will generate a movie with your face centered on the screen.</p>
<p>Here is a small demonstration of what Ivolution can achieve :</p>
<p><center><iframe width="420" height="315" src="http://www.youtube.com/embed/yBnsqYn9Vgg" frameborder="0" allowfullscreen></iframe></center></p>
<p>Ivolution uses <strong>face detection</strong> and modifies the images so that your face always keeps the same size and location over the movie.
Images are processed in <strong>chronological order</strong>, so that you can see your face evoluate over time !</p>
<p>Ivolution uses a really simple interface, so that you timelapse is only two clicks from being generated !
Here is what the current interface looks like :</p>
<p><center>
<p><img alt="Main interface" src="../theme/images/blog/mainpage1.png" /></p>
</center></p>
<p>Ivolution currently supports Windows and Linux and was successfully tested on Windows XP, 7 and Ubuntu 12.04.</p>
<p><strong>Ivolution is currently still in early development, and you may face bugs or feel like critical features are missing.</strong>
<strong>In this case, just let me know by <a href="../static/ivolution_app@gmail.com">sending me a mail</a> or by <a href="https://github.com/jlengrand/FaceMovie/issues?state=open">filing a bug here</a>. I'll be glad to help you !</strong></p></div>
</div>
<footer>
<p> Website proudly powered by <a href="http://pelican.notmyidea.org/en/3.0/index.html">Pelican</a>. Theme by <a href="http://santini.di.unimi.it/">Massimo Santini</a>.</p>
<p>&copy; Julien Lengrand-Lambert 2012</p>
</footer>
</div>
</div>
</body>
</html>

141
comments.html Normal file
View File

@@ -0,0 +1,141 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ivolution</title>
<meta name="description" content="">
<meta name="author" content="Julien Lengrand-Lambert">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="./theme/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href="./theme/bootstrap.min.css" rel="stylesheet">
<link href="./theme/local.css" rel="stylesheet">
<link href="./theme/pygments.css" rel="stylesheet">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34919152-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="topbar">
<div class="topbar-inner">
<div class="container-fluid">
<a class="brand" href="./index.html">Ivolution</a>
<ul class="nav">
<a href="https://github.com/jlengrand/FaceMovie">Take one picture of yourself a day, automatically generate a movie!</a>
</ul>
<p class="pull-right"><b><a href="https://github.com/jlengrand/Ivolution">[Fork me on GitHub]</a></b></p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="sidebar">
<div class="well">
<h3>Contents</h3>
<ul>
<li><a href="./pages/Ivolution.html">Ivolution Project</a></li>
<li><a href="./pages/OneMinuteTutorial.html">One minute tutorial</a></li>
<li><a href="./pages/Downloads.html">Downloads</a></li>
<li><a href="./pages/Installation.html">Installation</a></li>
<li><a href="./pages/MainInterface.html">Main Interface</a></li>
<li><a href="./pages/Settings.html">Settings</a></li>
<li><a href="./pages/FAQ.html">FAQ</a></li>
<li><a href="./pages/FutureDevelopments.html">Future Developments</a></li>
<li><a href="./pages/About.html">About</a></li>
<li><a href="./pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
<li><a href="http://python.org">Python.org</a></li>
<li><a href="http://opencv.willowgarage.com/wiki/">OpenCV</a></li>
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>
<ul>
<li><a href="http://lengrand.fr">My website</a></li>
<li><a href="https://twitter.com/jlengrand">twitter</a></li>
<li><a href="https://plus.google.com/u/0/107343304730454368817/posts">Google+</a></li>
<li><a href="https://github.com/jlengrand">Github</a></li>
<li><a href="http://stackoverflow.com/users/282677/jlengrand">Stack Overflow</a></li>
<li><a href="http://nl.linkedin.com/pub/julien-lengrand-lambert/14/660/551/en">linkedin</a></li>
</ul>
</div>
</div>
</div>
<div class="content">
<div class='article'>
<div class="page-header"><h1>Feedback</h1></div>
<div class="page-content"><p>If you tried Ivolution, or even use it regularly fell free to drop a feedback here !</p>
<p>I´ll be glad to read about your story !</p></div>
<div>
<script type="text/javascript">
var disqus_identifier = "comments.html";
(function() {
var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true;
dsq.src = 'http://ivolution-project.disqus.com/embed.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq);
})();
</script>
<div id="disqus_thread"></div>
<div>
</div>
<footer>
<p> Website proudly powered by <a href="http://pelican.notmyidea.org/en/3.0/index.html">Pelican</a>. Theme by <a href="http://santini.di.unimi.it/">Massimo Santini</a>.</p>
<p>&copy; Julien Lengrand-Lambert 2012</p>
</footer>
</div>
</div>
</body>
</html>

3
feeds/all-en.atom.xml Normal file
View File

@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Ivolution</title><link href="http://jlengrand.github.com/Ivolution/" rel="alternate"></link><link href="http://jlengrand.github.com/Ivolution/feeds/all-en.atom.xml" rel="self"></link><id>http://jlengrand.github.com/Ivolution/</id><updated>2010-12-03T00:00:00+01:00</updated><entry><title>Feedback</title><link href="http://jlengrand.github.com/Ivolution/comments.html" rel="alternate"></link><updated>2010-12-03T00:00:00+01:00</updated><author><name>Julien Lengrand-Lambert</name></author><id>tag:jlengrand.github.com/Ivolution,2010-12-03:comments.html</id><summary type="html">&lt;p&gt;If you tried Ivolution, or even use it regularly fell free to drop a feedback here !&lt;/p&gt;
&lt;p&gt;I´ll be glad to read about your story !&lt;/p&gt;</summary><category term="ivolution"></category><category term="face recognition"></category><category term="comments"></category></entry></feed>

View File

@@ -1,2 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Ivolution</title><link href="http://jlengrand.github.com/Ivolution/" rel="alternate"></link><link href="http://jlengrand.github.com/Ivolution/feeds/all.atom.xml" rel="self"></link><id>http://jlengrand.github.com/Ivolution/</id><updated>2012-09-25T13:11:11Z</updated></feed>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Ivolution</title><link href="http://jlengrand.github.com/Ivolution/" rel="alternate"></link><link href="http://jlengrand.github.com/Ivolution/feeds/all.atom.xml" rel="self"></link><id>http://jlengrand.github.com/Ivolution/</id><updated>2010-12-03T00:00:00+01:00</updated><entry><title>Feedback</title><link href="http://jlengrand.github.com/Ivolution/comments.html" rel="alternate"></link><updated>2010-12-03T00:00:00+01:00</updated><author><name>Julien Lengrand-Lambert</name></author><id>tag:jlengrand.github.com/Ivolution,2010-12-03:comments.html</id><summary type="html">&lt;p&gt;If you tried Ivolution, or even use it regularly fell free to drop a feedback here !&lt;/p&gt;
&lt;p&gt;I´ll be glad to read about your story !&lt;/p&gt;</summary><category term="ivolution"></category><category term="face recognition"></category><category term="comments"></category></entry></feed>

3
feeds/misc.atom.xml Normal file
View File

@@ -0,0 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom"><title>Ivolution</title><link href="http://jlengrand.github.com/Ivolution/" rel="alternate"></link><link href="http://jlengrand.github.com/Ivolution/feeds/misc.atom.xml" rel="self"></link><id>http://jlengrand.github.com/Ivolution/</id><updated>2010-12-03T00:00:00+01:00</updated><entry><title>Feedback</title><link href="http://jlengrand.github.com/Ivolution/comments.html" rel="alternate"></link><updated>2010-12-03T00:00:00+01:00</updated><author><name>Julien Lengrand-Lambert</name></author><id>tag:jlengrand.github.com/Ivolution,2010-12-03:comments.html</id><summary type="html">&lt;p&gt;If you tried Ivolution, or even use it regularly fell free to drop a feedback here !&lt;/p&gt;
&lt;p&gt;I´ll be glad to read about your story !&lt;/p&gt;</summary><category term="ivolution"></category><category term="face recognition"></category><category term="comments"></category></entry></feed>

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href="./pages/About.html">About</a></li>
<li><a href="./pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>

View File

@@ -5,93 +5,135 @@
<url>
<loc>http://jlengrand.github.com/Ivolution/index.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/archives.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/tags.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/categories.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/pages/About.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/pages/Downloads.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/pages/FAQ.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/pages/FutureDevelopments.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/pages/Installation.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/pages/Ivolution.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/pages/MainInterface.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/pages/OneMinuteTutorial.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/pages/Settings.html</loc>
<lastmod>2012-09-25T13:11:11-00:00</lastmod>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.8</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/comments.html</loc>
<lastmod>2010-12-03T00:00:00-00:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/category/misc.html</loc>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/tag/face-recognition.html</loc>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/tag/comments.html</loc>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/tag/ivolution.html</loc>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
<url>
<loc>http://jlengrand.github.com/Ivolution/author/julien-lengrand-lambert.html</loc>
<lastmod>2012-10-03T14:24:15-00:00</lastmod>
<changefreq>daily</changefreq>
<priority>0.5</priority>
</url>
</urlset>

159
tag/comments.html Normal file
View File

@@ -0,0 +1,159 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ivolution</title>
<meta name="description" content="">
<meta name="author" content="Julien Lengrand-Lambert">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src=".././theme/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href=".././theme/bootstrap.min.css" rel="stylesheet">
<link href=".././theme/local.css" rel="stylesheet">
<link href=".././theme/pygments.css" rel="stylesheet">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34919152-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="topbar">
<div class="topbar-inner">
<div class="container-fluid">
<a class="brand" href=".././index.html">Ivolution</a>
<ul class="nav">
<a href="https://github.com/jlengrand/FaceMovie">Take one picture of yourself a day, automatically generate a movie!</a>
</ul>
<p class="pull-right"><b><a href="https://github.com/jlengrand/Ivolution">[Fork me on GitHub]</a></b></p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="sidebar">
<div class="well">
<h3>Contents</h3>
<ul>
<li><a href=".././pages/Ivolution.html">Ivolution Project</a></li>
<li><a href=".././pages/OneMinuteTutorial.html">One minute tutorial</a></li>
<li><a href=".././pages/Downloads.html">Downloads</a></li>
<li><a href=".././pages/Installation.html">Installation</a></li>
<li><a href=".././pages/MainInterface.html">Main Interface</a></li>
<li><a href=".././pages/Settings.html">Settings</a></li>
<li><a href=".././pages/FAQ.html">FAQ</a></li>
<li><a href=".././pages/FutureDevelopments.html">Future Developments</a></li>
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
<li><a href="http://python.org">Python.org</a></li>
<li><a href="http://opencv.willowgarage.com/wiki/">OpenCV</a></li>
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>
<ul>
<li><a href="http://lengrand.fr">My website</a></li>
<li><a href="https://twitter.com/jlengrand">twitter</a></li>
<li><a href="https://plus.google.com/u/0/107343304730454368817/posts">Google+</a></li>
<li><a href="https://github.com/jlengrand">Github</a></li>
<li><a href="http://stackoverflow.com/users/282677/jlengrand">Stack Overflow</a></li>
<li><a href="http://nl.linkedin.com/pub/julien-lengrand-lambert/14/660/551/en">linkedin</a></li>
</ul>
</div>
</div>
</div>
<div class="content">
<div class='page'>
<div class="page-header"><h1>Ivolution Project</h1></div>
<div class="page-content"><h2>Welcome on the website of the Ivolution project !</h2>
<p>Ivolution is a <strong>face timelapse generator</strong>.
Feed it with a bunch of images and it will generate a movie with your face centered on the screen.</p>
<p>Here is a small demonstration of what Ivolution can achieve :</p>
<p><center><iframe width="420" height="315" src="http://www.youtube.com/embed/yBnsqYn9Vgg" frameborder="0" allowfullscreen></iframe></center></p>
<p>Ivolution uses <strong>face detection</strong> and modifies the images so that your face always keeps the same size and location over the movie.
Images are processed in <strong>chronological order</strong>, so that you can see your face evoluate over time !</p>
<p>Ivolution uses a really simple interface, so that you timelapse is only two clicks from being generated !
Here is what the current interface looks like :</p>
<p><center>
<p><img alt="Main interface" src="../theme/images/blog/mainpage1.png" /></p>
</center></p>
<p>Ivolution currently supports Windows and Linux and was successfully tested on Windows XP, 7 and Ubuntu 12.04.</p>
<p><strong>Ivolution is currently still in early development, and you may face bugs or feel like critical features are missing.</strong>
<strong>In this case, just let me know by <a href="../static/ivolution_app@gmail.com">sending me a mail</a> or by <a href="https://github.com/jlengrand/FaceMovie/issues?state=open">filing a bug here</a>. I'll be glad to help you !</strong></p></div>
</div>
<footer>
<p> Website proudly powered by <a href="http://pelican.notmyidea.org/en/3.0/index.html">Pelican</a>. Theme by <a href="http://santini.di.unimi.it/">Massimo Santini</a>.</p>
<p>&copy; Julien Lengrand-Lambert 2012</p>
</footer>
</div>
</div>
</body>
</html>

159
tag/face-recognition.html Normal file
View File

@@ -0,0 +1,159 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ivolution</title>
<meta name="description" content="">
<meta name="author" content="Julien Lengrand-Lambert">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src=".././theme/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href=".././theme/bootstrap.min.css" rel="stylesheet">
<link href=".././theme/local.css" rel="stylesheet">
<link href=".././theme/pygments.css" rel="stylesheet">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34919152-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="topbar">
<div class="topbar-inner">
<div class="container-fluid">
<a class="brand" href=".././index.html">Ivolution</a>
<ul class="nav">
<a href="https://github.com/jlengrand/FaceMovie">Take one picture of yourself a day, automatically generate a movie!</a>
</ul>
<p class="pull-right"><b><a href="https://github.com/jlengrand/Ivolution">[Fork me on GitHub]</a></b></p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="sidebar">
<div class="well">
<h3>Contents</h3>
<ul>
<li><a href=".././pages/Ivolution.html">Ivolution Project</a></li>
<li><a href=".././pages/OneMinuteTutorial.html">One minute tutorial</a></li>
<li><a href=".././pages/Downloads.html">Downloads</a></li>
<li><a href=".././pages/Installation.html">Installation</a></li>
<li><a href=".././pages/MainInterface.html">Main Interface</a></li>
<li><a href=".././pages/Settings.html">Settings</a></li>
<li><a href=".././pages/FAQ.html">FAQ</a></li>
<li><a href=".././pages/FutureDevelopments.html">Future Developments</a></li>
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
<li><a href="http://python.org">Python.org</a></li>
<li><a href="http://opencv.willowgarage.com/wiki/">OpenCV</a></li>
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>
<ul>
<li><a href="http://lengrand.fr">My website</a></li>
<li><a href="https://twitter.com/jlengrand">twitter</a></li>
<li><a href="https://plus.google.com/u/0/107343304730454368817/posts">Google+</a></li>
<li><a href="https://github.com/jlengrand">Github</a></li>
<li><a href="http://stackoverflow.com/users/282677/jlengrand">Stack Overflow</a></li>
<li><a href="http://nl.linkedin.com/pub/julien-lengrand-lambert/14/660/551/en">linkedin</a></li>
</ul>
</div>
</div>
</div>
<div class="content">
<div class='page'>
<div class="page-header"><h1>Ivolution Project</h1></div>
<div class="page-content"><h2>Welcome on the website of the Ivolution project !</h2>
<p>Ivolution is a <strong>face timelapse generator</strong>.
Feed it with a bunch of images and it will generate a movie with your face centered on the screen.</p>
<p>Here is a small demonstration of what Ivolution can achieve :</p>
<p><center><iframe width="420" height="315" src="http://www.youtube.com/embed/yBnsqYn9Vgg" frameborder="0" allowfullscreen></iframe></center></p>
<p>Ivolution uses <strong>face detection</strong> and modifies the images so that your face always keeps the same size and location over the movie.
Images are processed in <strong>chronological order</strong>, so that you can see your face evoluate over time !</p>
<p>Ivolution uses a really simple interface, so that you timelapse is only two clicks from being generated !
Here is what the current interface looks like :</p>
<p><center>
<p><img alt="Main interface" src="../theme/images/blog/mainpage1.png" /></p>
</center></p>
<p>Ivolution currently supports Windows and Linux and was successfully tested on Windows XP, 7 and Ubuntu 12.04.</p>
<p><strong>Ivolution is currently still in early development, and you may face bugs or feel like critical features are missing.</strong>
<strong>In this case, just let me know by <a href="../static/ivolution_app@gmail.com">sending me a mail</a> or by <a href="https://github.com/jlengrand/FaceMovie/issues?state=open">filing a bug here</a>. I'll be glad to help you !</strong></p></div>
</div>
<footer>
<p> Website proudly powered by <a href="http://pelican.notmyidea.org/en/3.0/index.html">Pelican</a>. Theme by <a href="http://santini.di.unimi.it/">Massimo Santini</a>.</p>
<p>&copy; Julien Lengrand-Lambert 2012</p>
</footer>
</div>
</div>
</body>
</html>

159
tag/ivolution.html Normal file
View File

@@ -0,0 +1,159 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ivolution</title>
<meta name="description" content="">
<meta name="author" content="Julien Lengrand-Lambert">
<!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src=".././theme/html5.js"></script>
<![endif]-->
<!-- Le styles -->
<link href=".././theme/bootstrap.min.css" rel="stylesheet">
<link href=".././theme/local.css" rel="stylesheet">
<link href=".././theme/pygments.css" rel="stylesheet">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-34919152-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div class="topbar">
<div class="topbar-inner">
<div class="container-fluid">
<a class="brand" href=".././index.html">Ivolution</a>
<ul class="nav">
<a href="https://github.com/jlengrand/FaceMovie">Take one picture of yourself a day, automatically generate a movie!</a>
</ul>
<p class="pull-right"><b><a href="https://github.com/jlengrand/Ivolution">[Fork me on GitHub]</a></b></p>
</div>
</div>
</div>
<div class="container-fluid">
<div class="sidebar">
<div class="well">
<h3>Contents</h3>
<ul>
<li><a href=".././pages/Ivolution.html">Ivolution Project</a></li>
<li><a href=".././pages/OneMinuteTutorial.html">One minute tutorial</a></li>
<li><a href=".././pages/Downloads.html">Downloads</a></li>
<li><a href=".././pages/Installation.html">Installation</a></li>
<li><a href=".././pages/MainInterface.html">Main Interface</a></li>
<li><a href=".././pages/Settings.html">Settings</a></li>
<li><a href=".././pages/FAQ.html">FAQ</a></li>
<li><a href=".././pages/FutureDevelopments.html">Future Developments</a></li>
<li><a href=".././pages/About.html">About</a></li>
<li><a href=".././pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
<li><a href="http://python.org">Python.org</a></li>
<li><a href="http://opencv.willowgarage.com/wiki/">OpenCV</a></li>
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>
<ul>
<li><a href="http://lengrand.fr">My website</a></li>
<li><a href="https://twitter.com/jlengrand">twitter</a></li>
<li><a href="https://plus.google.com/u/0/107343304730454368817/posts">Google+</a></li>
<li><a href="https://github.com/jlengrand">Github</a></li>
<li><a href="http://stackoverflow.com/users/282677/jlengrand">Stack Overflow</a></li>
<li><a href="http://nl.linkedin.com/pub/julien-lengrand-lambert/14/660/551/en">linkedin</a></li>
</ul>
</div>
</div>
</div>
<div class="content">
<div class='page'>
<div class="page-header"><h1>Ivolution Project</h1></div>
<div class="page-content"><h2>Welcome on the website of the Ivolution project !</h2>
<p>Ivolution is a <strong>face timelapse generator</strong>.
Feed it with a bunch of images and it will generate a movie with your face centered on the screen.</p>
<p>Here is a small demonstration of what Ivolution can achieve :</p>
<p><center><iframe width="420" height="315" src="http://www.youtube.com/embed/yBnsqYn9Vgg" frameborder="0" allowfullscreen></iframe></center></p>
<p>Ivolution uses <strong>face detection</strong> and modifies the images so that your face always keeps the same size and location over the movie.
Images are processed in <strong>chronological order</strong>, so that you can see your face evoluate over time !</p>
<p>Ivolution uses a really simple interface, so that you timelapse is only two clicks from being generated !
Here is what the current interface looks like :</p>
<p><center>
<p><img alt="Main interface" src="../theme/images/blog/mainpage1.png" /></p>
</center></p>
<p>Ivolution currently supports Windows and Linux and was successfully tested on Windows XP, 7 and Ubuntu 12.04.</p>
<p><strong>Ivolution is currently still in early development, and you may face bugs or feel like critical features are missing.</strong>
<strong>In this case, just let me know by <a href="../static/ivolution_app@gmail.com">sending me a mail</a> or by <a href="https://github.com/jlengrand/FaceMovie/issues?state=open">filing a bug here</a>. I'll be glad to help you !</strong></p></div>
</div>
<footer>
<p> Website proudly powered by <a href="http://pelican.notmyidea.org/en/3.0/index.html">Pelican</a>. Theme by <a href="http://santini.di.unimi.it/">Massimo Santini</a>.</p>
<p>&copy; Julien Lengrand-Lambert 2012</p>
</footer>
</div>
</div>
</body>
</html>

View File

@@ -30,7 +30,6 @@
</script>
</head>
<body>
@@ -72,6 +71,8 @@
<li><a href="./pages/About.html">About</a></li>
<li><a href="./pages/../comments.html">Feedback</a></li>
</ul>
<h3>Other Links</h3>
<ul>
@@ -82,6 +83,8 @@
<li><a href="http://wxpython.org/">WxPython</a></li>
<li><a href="https://github.com/getpelican/pelican">Pelican</a></li>
</ul>
<div class="social">
<h3>Social</h3>
@@ -108,6 +111,12 @@
<ul>
<li><a href="./tag/face-recognition.html">face recognition</a></li>
<li><a href="./tag/comments.html">comments</a></li>
<li><a href="./tag/ivolution.html">ivolution</a></li>
</ul>
<footer>