Looks like more evidence for Atwood's Law: Any application that can be written in JavaScript, will eventually be written in JavaScript. I have a couple of questions: 1. How does Liu Liu's algorithm (which I think he calls "deformable parts model") compare with Viola-Jones [1]? Any idea what the error stats (false positives & negatives) are like? In my experience [2] Viola-Jones has very low error rates. Regarding per…
Face detection jQuery Plugin
21–30 of 43 posts
Re: Face detection jQuery Plugin
#22Try this in the page: $('#detect').click(); setTimeout(function() { $('.face').prepend(' http://officialpsds.com/images/thumbs/Santa-Hat-psd20202.png width="90px" />'); $('.santaHat').css('position', 'relative'); $('.santaHat').css('top', '-60px');$('.face').css('border-width','0px'); }, 200);
[deleted]
src="http://officialpsds.com/images/thumbs/Santa-Hat-psd20202.png width="90px"
with src="http://officialpsds.com/images/thumbs/Santa-Hat-psd20202.png" width="90px"
and it's perfectRe: Face detection jQuery Plugin
#23Re: Face detection jQuery Plugin
#24Earlier quoted context omitted.
[deleted]
replace: src="http://officialpsds.com/images/thumbs/Santa-Hat-psd20202.png width="90px" with src="http://officialpsds.com/images/thumbs/Santa-Hat-psd20202.png" width="90px" and it's perfect
Corrected version:
$('#detect').click(); setTimeout(function() { $('.face').prepend('http://officialpsds.com/images/thumbs/Santa-Hat-psd20202.png width="90px" />'); $('.santaHat').css('position', 'relative'); $('.santaHat').css('top', '-60px');$('.face').css('border-width','0px'); }, 200);
Re: Face detection jQuery Plugin
#25Re: Face detection jQuery Plugin
#26Re: Face detection jQuery Plugin
#27Earlier quoted context omitted.
The author credits Liu Liu for the algorithm
It's not just the algorithm, the whole detection code is just cutpasted from liu liu's repository. https://github.com/liuliu/ccv/blob/stable/js/ccv.js
Re: Face detection jQuery Plugin
#28Earlier quoted context omitted.
replace: src="http://officialpsds.com/images/thumbs/Santa-Hat-psd20202.png width="90px" with src="http://officialpsds.com/images/thumbs/Santa-Hat-psd20202.png" width="90px" and it's perfect
Thanks for the correction! Corrected version: $('#detect').click(); setTimeout(function() { $('.face').prepend(' http://officialpsds.com/images/thumbs/Santa-Hat-psd20202.png width="90px" />'); $('.santaHat').css('position', 'relative'); $('.santaHat').css('top', '-60px');$('.face').css('border-width','0px'); }, 200);
Re: Face detection jQuery Plugin
#29So how can I let a user upload/add an image to a page without sending it to the server?