In Machine Learning, Classifiers learns from the training data, and models some decision making framework. With that knowledge it classifies new test data. For example, if we train a certain classifier on different kinds of fruits by providing some information like shape, color, taste and so on, given any new fruit with the following details it can predict what would be the exact or close match. Similar concept is used here to classify handwritten digits, and here it is performed with Random Forest Classifier. Random Forest Classifier -A random forest consist of combination of uncorrelated decision trees (Fig.1) and each works on various sub samples of the dataset. As each tree have different error instances averaging them all can provide better predictive accuracy and control over-fitting. This tutorial can provide brief idea on the same https://www.youtube.com/watch?v=loNcrMjYh64 MNIST Dataset consist of handwritten characters for training and testing. The .csv format ...
Digital Half toning, Block Truncation Coding, IMQ & Watermarking