Nateowami
Nateowami
I agree, the documentation could be more helpful. However, if you view source on the examples, you can get a good idea of how to use it. Just search the...
@inspirit Could you update the links on http://inspirit.github.io/jsfeat to use https? I doubt most people would realize the problem was that it isn't https. I almost didn't think to switch....
Yeah, I know you don't have access to the NPM package, but the links on http://inspirit.github.io/jsfeat are not https. They're protocol-dependent. Anyone who reaches the page on http will find...
@inspirit If you go to https://github.com/inspirit/jsfeat/settings and check "Enforce HTTPS" it will redirect HTTP requests to HTTPS.
@inspirit I didn't even know it was possible until right now. They announced it in June: https://github.com/blog/2186-https-for-github-pages
I had trouble with cascades too. `jsfeat.bbf.face_cascade` is undefined in jsfeat version 0.0.8 from npm. From what I read, the HTML5 canvas dependency [was removed](https://github.com/inspirit/jsfeat/issues/2), so I'm not sure what...
Pardon me if I'm wrong, but it appears to me that this rule—and most of the discussion of it—even its documentation—misses [the entire point of the rule](https://github.com/CSSLint/csslint/wiki/Headings-should-only-be-defined-once): > The heading...
@l-hendriks Perhaps I'm doing something wrong, but ``` javascript console.log(JSON.stringify(mat.meanStdDev())); ``` prints ``` json {"mean":{},"stddev":{}} ``` Any idea what's up with that? There also doesn't seem to be a plain...
@l-hendriks I stuck it into a function where all sorts of transforms are successfully done on the matrix (including saving to file for debugging). So I know the matrix works....
@l-hendriks Yeah... I may just have to do that. Unfortunately my C++ skills are terrible. So either an excuse to improve them or try using Python. Are you able to...