I am working on the human following robot. the robot extracts a feature of clothes's texture and distinguishes between the people that they stand up in front of the robot. So, the robot needs that it will be robust and fast.
Thanks both Sundara Siva Kumar v and Mohamed-Mourad Lafifi
I already use the color feature, it is good and robust. But some issues with illumination change. I need that the robot follows a specific person based on the color and texture of clothes to improve it with illumination change.
YES, I tried it offline and I need to convert it into online (using a camera in real-time). I think that it requires combining with another algorithm for classification.
Sure, I got it but "I can't understand how to classify clothes." as I mentioned above. I am still studying to understand how to classify the clothes of people, I don't know if I need to train data using SVM, for example. Then, use a Gabor filter
Please your opinion if I can use it without training or not?
The output returned by a GLCM or Gabor filter is a matrix not a vector. So the general practice is to calculate some statistical features from the output matrix and put them in a vector. These values should be different for different classes but similar for the same class. Either now you can feed these vectors to a classifier for classification, or even without a classifier you can simply use Euclidean distance to discriminate between the classes. Hope that is clear.