160 likes | 289 Vues
This project aims to develop a system for automatic detection of image orientation through color analysis. The primary goal is to categorize images into four distinct groups based on defined criteria. Key sub-goals include addressing color images using RGB and HSV representations, while considering efficiency metrics such as database size and runtime. The method utilizes feature vectors composed of mean and variance of color channels and edge density measurements within peripheral blocks. Future enhancements will focus on machine learning techniques, rejection criteria, and object recognition capabilities.
E N D
Goal Main Goal: • For any given picture detect its orientation. Sub Goals: • How to deal with color images • Define criteria for images to separate them to 4 groups: • Efficiency: DB size, vector size, runtime.
Feature Vector Vector size: N=4 • Image resolution = 800X600 • NXN blocks • 4N-4 peripheral blocks • For each block: • Mean of H,S,V • Var of H,S,V • Edge density Block size : 16 peripheral blocks: 12 Vector size: 12*(3+3+1)+4 = 88
Future work • Improving the feature vector • Testing new method of “machine learning” • Add a rejection criteria • Add classifier of indoor/outdoor • Add an object recognition algorithm