Face recognition Library [closed]

Here is a list of commercial vendors that provide off-the-shelf packages for facial recognition which run on Windows: Cybula – Information on their Facial Recognition SDK. This is a company founded by a University Professor and as such their website looks unprofessional. There’s no pricing information or demo that you can download. You’ll need to … Read more

A guide to convert_imageset.cpp

A quick guide to Caffe’s convert_imageset Build First thing you must do is build caffe and caffe’s tools (convert_imageset is one of these tools). After installing caffe and makeing it make sure you ran make tools as well. Verify that a binary file convert_imageset is created in $CAFFE_ROOT/build/tools. Prepare your data Images: put all images … Read more

Simple and fast method to compare images for similarity

Can the screenshot or icon be transformed (scaled, rotated, skewed …)? There are quite a few methods on top of my head that could possibly help you: Simple euclidean distance as mentioned by @carlosdc (doesn’t work with transformed images and you need a threshold). (Normalized) Cross Correlation – a simple metrics which you can use … Read more

Converting RGB to grayscale/intensity

The specific numbers in the question are from CCIR 601 (see Wikipedia article). If you convert RGB -> grayscale with slightly different numbers / different methods, you won’t see much difference at all on a normal computer screen under normal lighting conditions — try it. Here are some more links on color in general: Wikipedia … Read more