How can I do the auto naming, color matching and edit info

2 views (last 30 days)
Good evening. I am going to do a content based for garments. 1)I would like to know if there any method to auto naming the item. For an example I had extracted their shape, pattern and color. So I would like to auto tagging them based on what color there are.
2) I am going to do top and bottom color matching.For an example, given a white color top, I want to find a dark color bottom for it. And I am going to use one of the color rule which is monochromic. Is there any method to put the rule inside my code so the result of the matching will come out based on the rule?
3) After done the tagging, I would like to prepare one edit button for users to edit the info if the extraction give the wrong info. Any idea on how to do the edit info part?
Hope to hear from you soon. Thank you

Answers (1)

Image Analyst
Image Analyst on 8 Oct 2017
"content based for garments" - content based what? Content based image retrieval (CBIR)?
I'd probably make a structure array for all your garments with fields storing the attributes. Like, for garment 9, you'd do
garment(9).type = 't-shirt';
garment(9).color= [180, 40, 20]; % RGB values.
garment(9).pattern = 'solid';
As far as recommending some complementary garment to wear with that garment, you'll have to come up with some algorithm, like red top should be worn with black bottoms or whatever. That's a matter of fashion ans style, not image analysis.

Categories

Find more on Image Processing and Computer Vision in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!