RetratoWaifuStudio / data_image_guide.py
Josue Aaron Soriano Rivero
feat: agregar nueva pesta帽a con ejemplos e im谩genes y a帽adir README
f83a4da
import os
hair = [
{"name": "Corte Lobo", "image": os.path.join("assets", "img_docs", "wolf_cut.webp")},
{"name": "Corte Bob", "image": os.path.join("assets", "img_docs", "bob_cut.webp")},
{"name": "Corte Pixie", "image": os.path.join("assets", "img_docs", "pixie_cut.webp")},
{"name": "Corte Militar", "image": os.path.join("assets", "img_docs", "crew_cut.webp")},
{"name": "Corte Taz贸n", "image": os.path.join("assets", "img_docs", "bowl_cut.webp")},
{"name": "Corte Bajo", "image": os.path.join("assets", "img_docs", "undercut.webp")},
{"name": "Cabello volteado", "image": os.path.join("assets", "img_docs", "flipped_hair.webp")},
{"name": "Corte Hime", "image": os.path.join("assets", "img_docs", "hime_cut.webp")},
{"name": "Trenzas", "image": os.path.join("assets", "img_docs", "cornrows.webp")},
{"name": "Rastas", "image": os.path.join("assets", "img_docs", "dreadlocks.webp")}
]
texture = [
{"name": "Cabello liso", "image": os.path.join("assets", "texture", "straight_hair.webp")},
{"name": "Cabello ondulado", "image": os.path.join("assets", "texture", "wavy_hair.webp")},
{"name": "Cabello rizado", "image": os.path.join("assets", "texture", "curly_hair.webp")},
{"name": "Cabello despeinado", "image": os.path.join("assets", "texture", "messy_hair.webp")},
{"name": "Cabello afilado", "image": os.path.join("assets", "texture", "pointy_hair.webp")},
{"name": "Cabello rizos", "image": os.path.join("assets", "texture", "ringlets.webp")},
{"name": "Cabello perforado", "image": os.path.join("assets", "texture", "drill_hair.webp")},
{"name": "Mechones sueltos", "image": os.path.join("assets", "texture", "hair_flaps.webp")},
]
eyes_styles = [
{"name": "Ojos brillantes", "image": os.path.join("assets", "eyes_styles", "sparkling_eyes.webp")},
{"name": "Ojos circulo s贸lido", "image": os.path.join("assets", "eyes_styles", "solid_circle_eyes.webp")},
{"name": "Ojos en forma de coraz贸n", "image": os.path.join("assets", "eyes_styles", "heart-shaped_eyes.webp")},
{"name": "Ojos locos", "image": os.path.join("assets", "eyes_styles", "crazy_eyes.webp")},
{"name": "Ojos vacios", "image": os.path.join("assets", "eyes_styles", "empty_eyes.webp")},
{"name": "Ojos Tareme", "image": os.path.join("assets", "eyes_styles", "tareme_eyes.webp")},
{"name": "Ojos Tsurime", "image": os.path.join("assets", "eyes_styles", "tsurime_eyes.webp")},
{"name": "Ojos Jitome", "image": os.path.join("assets", "eyes_styles", "jitome_eyes.webp")},
{"name": "Ojos Sanpaku", "image": os.path.join("assets", "eyes_styles", "sanpaku_eyes.webp")},
]
helmets = [
{"name": "Casco tipo pecera", "image": os.path.join("assets", "helmets", "fishbowl_helmet.webp")},
{"name": "Casco Sallet", "image": os.path.join("assets", "helmets", "sallet.webp")},
{"name": "Casco Stahlhelm", "image": os.path.join("assets", "helmets", "stahlhelm.webp")},
{"name": "Casco Brodie ", "image": os.path.join("assets", "helmets", "brodie_helmet.webp")},
{"name": "Casco Altyn", "image": os.path.join("assets", "helmets", "altyn_helmet.webp")},
{"name": "Casco Adrian", "image": os.path.join("assets", "helmets", "adrian_helmet.webp")},
]
hats = [
{"name": "Gorra con visera", "image": os.path.join("assets", "hats", "peaked_cap.webp")},
{"name": "Gorro Shako", "image": os.path.join("assets", "hats", "shako_cap.webp")},
{"name": "Bicorne", "image": os.path.join("assets", "hats", "bicorne.webp")},
{"name": "Gat (sombrero)", "image": os.path.join("assets", "hats", "gat_hat.webp")},
{"name": "Jingasa", "image": os.path.join("assets", "hats", "jingasa.webp")},
{"name": "Gorro Mob", "image": os.path.join("assets", "hats", "mob_cap.webp")},
]
COLUMNS = 5