Here is the problem we are trying to solve:
- Goal is to classify pixels of a colored image into 3 different classes.
- We have a set of manually classified data for training purposes
- Pixels almost do not correlate to each other (each have individual behaviour) - so most likely classification is on each individual pixel and based on it's individual features.
- 3 classes approximately can be mapped to colors of RED, YELLOW and BLACK color families.
- We need to have the system semi-automatic, i.e. 3 parameters to control the probability of the presence of 3 outcomes (for final well-tuning)
Having this in mind:
- Which classification technique will you choose?
- What pixel features will you use for classification (RGB, Ycc, HSV, etc) ?
- What modification functions will you choose for well-tuning between three outcomes.
My first try was based on
- Naive bayes classifier
- HSV (also tried RGB and Ycc)
- (failed to find a proper functions for well-tuning)
Any suggestion? Thanks