How to check if a CSS property or value is supported by a browser?

There is the new API CSS.supports. Supported in most browsers except IE. console.log( // CSS.supports(property, value) 1, CSS.supports(“text-decoration-style”, “blink”), 2, CSS.supports(“display”, “flex”), 3, CSS.supports(‘–foo’, ‘red’), 4, CSS.supports(‘(–foo: red)’), // CSS.supports(DOMstring) 5, CSS.supports(“( transform-origin: 5% 5% )”), 6, CSS.supports(“( transform-style: preserve ) or ( -moz-transform-style: preserve ) or ” + “( -o-transform-style: preserve ) or ( … Read more

Are there any fast alternatives to SURF and SIFT for scale-invariant feature extraction?

Although you already choose BRISK, you might find FREAK interesting. Author claims to have better results than BRISK and ORB. I should also add that ORB is scale-invariant but has some problems in that area. So I would still recommend it for someone to try it. The FREAK source code is compatible with OpenCV (how … Read more

Detecting IE version using CSS Capability/Feature Detection

In the light of the evolving thread, I have updated the below: IE 6 * html .ie6 {property:value;} or .ie6 { _property:value;} IE 7 *+html .ie7 {property:value;} or *:first-child+html .ie7 {property:value;} IE 6 and 7 @media screen\9 { .ie67 {property:value;} } or .ie67 { *property:value;} or .ie67 { #property:value;} IE 6, 7 and 8 @media … Read more

OpenCV image comparison in Android

You should understand that this is not a simple question and you have different concepts you could follow. I will only point out two solution without source-code. Histogram comparison: You could convert both images into grey-scale make a histogram in the range of [0,…,255]. Every pixel-value will be counted. Then use both histograms for comparison. … Read more

Detecting IE11 using CSS Capability/Feature Detection

In the light of the evolving thread, I have updated the below: IE 6 * html .ie6 {property:value;} or .ie6 { _property:value;} IE 7 *+html .ie7 {property:value;} or *:first-child+html .ie7 {property:value;} IE 6 and 7 @media screen\9 { .ie67 {property:value;} } or .ie67 { *property:value;} or .ie67 { #property:value;} IE 6, 7 and 8 @media … Read more