Feature Engineering is Not Dead: Reviving Classical Machine Learning with Entropy, HOG, and LBP Feature Fusion for Image Classification
Abhijit Sen, Giridas Maiti, Bikram K. Parida, Bhanu P. Mishra, Mahima Arya, Denys I. Bondar
TL;DR
The paper revisits classical machine learning for image classification by extending Permutation Entropy (PE) to 2D images and fusing it with HOG and LBP to form a 780-dimensional handcrafted feature vector for SVM classification. This interpretable pipeline achieves competitive results across Fashion-MNIST (≈91%), KMNIST (≈94%), EMNIST (≈93%), and CIFAR-10 (≈65%), highlighting the value of entropy-based descriptors alongside traditional texture/shape cues. It also demonstrates that combining handcrafted features with lightweight deep embeddings can further improve performance (e.g., CIFAR-10 reaching 93.10% with fusion) while reducing training cost compared to full end-to-end CNN fine-tuning. The results support the viability of hybrid deep+handcrafted architectures and reinforce that feature engineering remains a practical, efficient, and interpretable approach in modern vision tasks.
Abstract
Feature engineering continues to play a critical role in image classification, particularly when interpretability and computational efficiency are prioritized over deep learning models with millions of parameters. In this study, we revisit classical machine learning based image classification through a novel approach centered on Permutation Entropy (PE), a robust and computationally lightweight measure traditionally used in time series analysis but rarely applied to image data. We extend PE to two-dimensional images and propose a multiscale, multi-orientation entropy-based feature extraction approach that characterizes spatial order and complexity along rows, columns, diagonals, anti-diagonals, and local patches of the image. To enhance the discriminatory power of the entropy features, we integrate two classic image descriptors: the Histogram of Oriented Gradients (HOG) to capture shape and edge structure, and Local Binary Patterns (LBP) to encode micro-texture of an image. The resulting hand-crafted feature set, comprising of 780 dimensions, is used to train Support Vector Machine (SVM) classifiers optimized through grid search. The proposed approach is evaluated on multiple benchmark datasets, including Fashion-MNIST, KMNIST, EMNIST, and CIFAR-10, where it delivers competitive classification performance without relying on deep architectures. Our results demonstrate that the fusion of PE with HOG and LBP provides a compact, interpretable, and effective alternative to computationally expensive and limited interpretable deep learning models. This shows a potential of entropy-based descriptors in image classification and contributes a lightweight and generalizable solution to interpretable machine learning in image classification and computer vision.
