2024-09-19 14:20:56 +08:00
|
|
|
import logging
|
|
|
|
|
import threading
|
|
|
|
|
import time
|
|
|
|
|
|
|
|
|
|
from minio import Minio
|
|
|
|
|
|
2024-09-25 11:40:11 +08:00
|
|
|
from app.core.config import *
|
|
|
|
|
from app.service.design_fast.item import BodyItem, TopItem, BottomItem
|
|
|
|
|
from app.service.design_fast.utils.organize import organize_body, organize_clothing
|
|
|
|
|
from app.service.design_fast.utils.progress import final_progress, update_progress
|
|
|
|
|
from app.service.design_fast.utils.synthesis_item import synthesis, synthesis_single, update_base_size_priority
|
2024-09-19 15:10:50 +08:00
|
|
|
from app.service.utils.decorator import RunTime
|
2024-09-19 14:20:56 +08:00
|
|
|
|
|
|
|
|
id_lock = threading.Lock()
|
|
|
|
|
|
|
|
|
|
logger = logging.getLogger()
|
|
|
|
|
|
|
|
|
|
minio_client = Minio(MINIO_URL, access_key=MINIO_ACCESS, secret_key=MINIO_SECRET, secure=MINIO_SECURE)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def process_item(item, basic):
|
2024-09-25 11:40:11 +08:00
|
|
|
# 处理project中单个item
|
2024-09-19 14:20:56 +08:00
|
|
|
if item['type'] == "Body":
|
|
|
|
|
body_server = BodyItem(data=item, basic=basic, minio_client=minio_client)
|
|
|
|
|
item_data = body_server.process()
|
|
|
|
|
elif item['type'].lower() in ['blouse', 'outwear', 'dress', 'tops']:
|
|
|
|
|
top_server = TopItem(data=item, basic=basic, minio_client=minio_client)
|
|
|
|
|
item_data = top_server.process()
|
|
|
|
|
else:
|
|
|
|
|
bottom_server = BottomItem(data=item, basic=basic, minio_client=minio_client)
|
|
|
|
|
item_data = bottom_server.process()
|
|
|
|
|
return item_data
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def process_layer(item, layers):
|
2024-09-25 11:40:11 +08:00
|
|
|
# item处理结束后 对图层数据组装
|
2024-09-19 14:20:56 +08:00
|
|
|
if item['name'] == "mannequin":
|
|
|
|
|
body_layer = organize_body(item)
|
|
|
|
|
layers.append(body_layer)
|
|
|
|
|
return item['body_image'].size
|
|
|
|
|
else:
|
|
|
|
|
front_layer, back_layer = organize_clothing(item)
|
|
|
|
|
layers.append(front_layer)
|
|
|
|
|
layers.append(back_layer)
|
|
|
|
|
|
|
|
|
|
|
2024-09-19 15:10:50 +08:00
|
|
|
@RunTime
|
2024-09-19 14:20:56 +08:00
|
|
|
def design_generate(request_data):
|
|
|
|
|
objects_data = request_data.dict()['objects']
|
|
|
|
|
process_id = request_data.dict()['process_id']
|
2024-09-19 15:10:50 +08:00
|
|
|
object_response = {}
|
2024-09-19 14:20:56 +08:00
|
|
|
threads = []
|
|
|
|
|
active_threads = 0
|
|
|
|
|
lock = threading.Lock()
|
|
|
|
|
total = len(objects_data)
|
|
|
|
|
|
|
|
|
|
def process_object(step, object):
|
|
|
|
|
nonlocal active_threads
|
|
|
|
|
basic = object['basic']
|
|
|
|
|
items_response = {'layers': []}
|
|
|
|
|
if basic['single_overall'] == "overall":
|
|
|
|
|
item_results = []
|
|
|
|
|
for item in object['items']:
|
|
|
|
|
item_results.append(process_item(item, basic))
|
|
|
|
|
layers = []
|
|
|
|
|
body_size = None
|
|
|
|
|
for item in item_results:
|
|
|
|
|
body_size = process_layer(item, layers)
|
|
|
|
|
layers = sorted(layers, key=lambda s: s.get("priority", float('inf')))
|
|
|
|
|
|
|
|
|
|
layers, new_size = update_base_size_priority(layers, body_size)
|
|
|
|
|
|
|
|
|
|
for lay in layers:
|
|
|
|
|
items_response['layers'].append({
|
2024-09-19 15:37:56 +08:00
|
|
|
'image_category': "body" if lay['name'] == 'mannequin' else lay['name'],
|
2024-09-19 14:20:56 +08:00
|
|
|
'position': lay['position'],
|
|
|
|
|
'priority': lay.get("priority", None),
|
|
|
|
|
'resize_scale': lay['resize_scale'] if "resize_scale" in lay.keys() else None,
|
|
|
|
|
'image_size': lay['image'] if lay['image'] is None else lay['image'].size,
|
|
|
|
|
'gradient_string': lay['gradient_string'] if 'gradient_string' in lay.keys() else "",
|
|
|
|
|
'mask_url': lay['mask_url'],
|
|
|
|
|
'image_url': lay['image_url'] if 'image_url' in lay.keys() else None,
|
|
|
|
|
'pattern_image_url': lay['pattern_image_url'] if 'pattern_image_url' in lay.keys() else None,
|
|
|
|
|
})
|
|
|
|
|
items_response['synthesis_url'] = synthesis(layers, new_size, basic)
|
|
|
|
|
else:
|
|
|
|
|
item_result = process_item(object['items'][0], basic)
|
|
|
|
|
items_response['layers'].append({
|
|
|
|
|
'image_category': f"{item_result['name']}_front",
|
|
|
|
|
'image_size': item_result['back_image'].size if item_result['back_image'] else None,
|
|
|
|
|
'position': None,
|
|
|
|
|
'priority': 0,
|
|
|
|
|
'image_url': item_result['front_image_url'],
|
|
|
|
|
'mask_url': item_result['mask_url'],
|
|
|
|
|
"gradient_string": item_result['gradient_string'] if 'gradient_string' in item_result.keys() else "",
|
|
|
|
|
'pattern_image_url': item_result['pattern_image_url'] if 'pattern_image_url' in item_result.keys() else None,
|
|
|
|
|
})
|
|
|
|
|
items_response['layers'].append({
|
|
|
|
|
'image_category': f"{item_result['name']}_back",
|
|
|
|
|
'image_size': item_result['front_image'].size if item_result['front_image'] else None,
|
|
|
|
|
'position': None,
|
|
|
|
|
'priority': 0,
|
|
|
|
|
'image_url': item_result['back_image_url'],
|
|
|
|
|
'mask_url': item_result['mask_url'],
|
|
|
|
|
"gradient_string": item_result['gradient_string'] if 'gradient_string' in item_result.keys() else "",
|
|
|
|
|
'pattern_image_url': item_result['pattern_image_url'] if 'pattern_image_url' in item_result.keys() else None,
|
|
|
|
|
})
|
|
|
|
|
items_response['synthesis_url'] = synthesis_single(item_result['front_image'], item_result['back_image'])
|
|
|
|
|
update_progress(process_id, total)
|
|
|
|
|
|
|
|
|
|
with lock:
|
2024-09-19 15:10:50 +08:00
|
|
|
object_response[step] = items_response
|
2024-09-19 14:20:56 +08:00
|
|
|
active_threads -= 1
|
|
|
|
|
|
|
|
|
|
for step, object in enumerate(objects_data):
|
|
|
|
|
t = threading.Thread(target=process_object, args=(step, object))
|
|
|
|
|
threads.append(t)
|
|
|
|
|
t.start()
|
|
|
|
|
with lock:
|
|
|
|
|
active_threads += 1
|
|
|
|
|
|
|
|
|
|
for t in threads:
|
|
|
|
|
t.join()
|
|
|
|
|
final_progress(process_id)
|
|
|
|
|
return object_response
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
object_data = {
|
|
|
|
|
"objects": [
|
|
|
|
|
{
|
|
|
|
|
"basic": {
|
|
|
|
|
"body_point_test": {
|
|
|
|
|
"waistband_right": [
|
|
|
|
|
203,
|
|
|
|
|
249
|
|
|
|
|
],
|
|
|
|
|
"hand_point_right": [
|
|
|
|
|
229,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"waistband_left": [
|
|
|
|
|
119,
|
|
|
|
|
248
|
|
|
|
|
],
|
|
|
|
|
"hand_point_left": [
|
|
|
|
|
97,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"shoulder_left": [
|
|
|
|
|
108,
|
|
|
|
|
107
|
|
|
|
|
],
|
|
|
|
|
"shoulder_right": [
|
|
|
|
|
212,
|
|
|
|
|
107
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"layer_order": False,
|
|
|
|
|
"scale_bag": 0.7,
|
|
|
|
|
"scale_earrings": 0.16,
|
|
|
|
|
"self_template": True,
|
|
|
|
|
"single_overall": "overall",
|
|
|
|
|
"switch_category": ""
|
|
|
|
|
},
|
|
|
|
|
"items": [
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 98419,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/dress/0825000526.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Dress"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"body_path": "aida-sys-image/models/female/2e4815b9-1191-419d-94ed-5771239ca4a5.png",
|
|
|
|
|
"image_id": 67277,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Body"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"basic": {
|
|
|
|
|
"body_point_test": {
|
|
|
|
|
"waistband_right": [
|
|
|
|
|
203,
|
|
|
|
|
249
|
|
|
|
|
],
|
|
|
|
|
"hand_point_right": [
|
|
|
|
|
229,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"waistband_left": [
|
|
|
|
|
119,
|
|
|
|
|
248
|
|
|
|
|
],
|
|
|
|
|
"hand_point_left": [
|
|
|
|
|
97,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"shoulder_left": [
|
|
|
|
|
108,
|
|
|
|
|
107
|
|
|
|
|
],
|
|
|
|
|
"shoulder_right": [
|
|
|
|
|
212,
|
|
|
|
|
107
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"layer_order": False,
|
|
|
|
|
"scale_bag": 0.7,
|
|
|
|
|
"scale_earrings": 0.16,
|
|
|
|
|
"self_template": True,
|
|
|
|
|
"single_overall": "overall",
|
|
|
|
|
"switch_category": ""
|
|
|
|
|
},
|
|
|
|
|
"items": [
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 98420,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/skirt/903000127.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Skirt"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 69140,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/blouse/0902001100.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Blouse"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 81604,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/outwear/outwear_p5_729.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Outwear"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"body_path": "aida-sys-image/models/female/2e4815b9-1191-419d-94ed-5771239ca4a5.png",
|
|
|
|
|
"image_id": 67277,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Body"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"basic": {
|
|
|
|
|
"body_point_test": {
|
|
|
|
|
"waistband_right": [
|
|
|
|
|
203,
|
|
|
|
|
249
|
|
|
|
|
],
|
|
|
|
|
"hand_point_right": [
|
|
|
|
|
229,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"waistband_left": [
|
|
|
|
|
119,
|
|
|
|
|
248
|
|
|
|
|
],
|
|
|
|
|
"hand_point_left": [
|
|
|
|
|
97,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"shoulder_left": [
|
|
|
|
|
108,
|
|
|
|
|
107
|
|
|
|
|
],
|
|
|
|
|
"shoulder_right": [
|
|
|
|
|
212,
|
|
|
|
|
107
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"layer_order": False,
|
|
|
|
|
"scale_bag": 0.7,
|
|
|
|
|
"scale_earrings": 0.16,
|
|
|
|
|
"self_template": True,
|
|
|
|
|
"single_overall": "overall",
|
|
|
|
|
"switch_category": ""
|
|
|
|
|
},
|
|
|
|
|
"items": [
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 63964,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/outwear/0825001572.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Outwear"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 98421,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/blouse/blouse_506.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Blouse"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 98422,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/trousers/0628001244.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Trousers"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"body_path": "aida-sys-image/models/female/2e4815b9-1191-419d-94ed-5771239ca4a5.png",
|
|
|
|
|
"image_id": 67277,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Body"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"basic": {
|
|
|
|
|
"body_point_test": {
|
|
|
|
|
"waistband_right": [
|
|
|
|
|
203,
|
|
|
|
|
249
|
|
|
|
|
],
|
|
|
|
|
"hand_point_right": [
|
|
|
|
|
229,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"waistband_left": [
|
|
|
|
|
119,
|
|
|
|
|
248
|
|
|
|
|
],
|
|
|
|
|
"hand_point_left": [
|
|
|
|
|
97,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"shoulder_left": [
|
|
|
|
|
108,
|
|
|
|
|
107
|
|
|
|
|
],
|
|
|
|
|
"shoulder_right": [
|
|
|
|
|
212,
|
|
|
|
|
107
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"layer_order": False,
|
|
|
|
|
"scale_bag": 0.7,
|
|
|
|
|
"scale_earrings": 0.16,
|
|
|
|
|
"self_template": True,
|
|
|
|
|
"single_overall": "overall",
|
|
|
|
|
"switch_category": ""
|
|
|
|
|
},
|
|
|
|
|
"items": [
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 79927,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/outwear/0825000378.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Outwear"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 67473,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/blouse/0825001350.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Blouse"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 80046,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/skirt/0628001443.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Skirt"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"body_path": "aida-sys-image/models/female/2e4815b9-1191-419d-94ed-5771239ca4a5.png",
|
|
|
|
|
"image_id": 67277,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Body"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"basic": {
|
|
|
|
|
"body_point_test": {
|
|
|
|
|
"waistband_right": [
|
|
|
|
|
203,
|
|
|
|
|
249
|
|
|
|
|
],
|
|
|
|
|
"hand_point_right": [
|
|
|
|
|
229,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"waistband_left": [
|
|
|
|
|
119,
|
|
|
|
|
248
|
|
|
|
|
],
|
|
|
|
|
"hand_point_left": [
|
|
|
|
|
97,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"shoulder_left": [
|
|
|
|
|
108,
|
|
|
|
|
107
|
|
|
|
|
],
|
|
|
|
|
"shoulder_right": [
|
|
|
|
|
212,
|
|
|
|
|
107
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"layer_order": False,
|
|
|
|
|
"scale_bag": 0.7,
|
|
|
|
|
"scale_earrings": 0.16,
|
|
|
|
|
"self_template": True,
|
|
|
|
|
"single_overall": "overall",
|
|
|
|
|
"switch_category": ""
|
|
|
|
|
},
|
|
|
|
|
"items": [
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 84148,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/trousers/0628000751.jpeg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Trousers"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 97321,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/blouse/0902000222.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Blouse"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 90718,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/outwear/0825000314.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Outwear"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"body_path": "aida-sys-image/models/female/2e4815b9-1191-419d-94ed-5771239ca4a5.png",
|
|
|
|
|
"image_id": 67277,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Body"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"basic": {
|
|
|
|
|
"body_point_test": {
|
|
|
|
|
"waistband_right": [
|
|
|
|
|
203,
|
|
|
|
|
249
|
|
|
|
|
],
|
|
|
|
|
"hand_point_right": [
|
|
|
|
|
229,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"waistband_left": [
|
|
|
|
|
119,
|
|
|
|
|
248
|
|
|
|
|
],
|
|
|
|
|
"hand_point_left": [
|
|
|
|
|
97,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"shoulder_left": [
|
|
|
|
|
108,
|
|
|
|
|
107
|
|
|
|
|
],
|
|
|
|
|
"shoulder_right": [
|
|
|
|
|
212,
|
|
|
|
|
107
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"layer_order": False,
|
|
|
|
|
"scale_bag": 0.7,
|
|
|
|
|
"scale_earrings": 0.16,
|
|
|
|
|
"self_template": True,
|
|
|
|
|
"single_overall": "overall",
|
|
|
|
|
"switch_category": ""
|
|
|
|
|
},
|
|
|
|
|
"items": [
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 86403,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/skirt/0902000231.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Skirt"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 87135,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/blouse/0902001315.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Blouse"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 87428,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/outwear/0902000566.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Outwear"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"body_path": "aida-sys-image/models/female/2e4815b9-1191-419d-94ed-5771239ca4a5.png",
|
|
|
|
|
"image_id": 67277,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Body"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"basic": {
|
|
|
|
|
"body_point_test": {
|
|
|
|
|
"waistband_right": [
|
|
|
|
|
203,
|
|
|
|
|
249
|
|
|
|
|
],
|
|
|
|
|
"hand_point_right": [
|
|
|
|
|
229,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"waistband_left": [
|
|
|
|
|
119,
|
|
|
|
|
248
|
|
|
|
|
],
|
|
|
|
|
"hand_point_left": [
|
|
|
|
|
97,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"shoulder_left": [
|
|
|
|
|
108,
|
|
|
|
|
107
|
|
|
|
|
],
|
|
|
|
|
"shoulder_right": [
|
|
|
|
|
212,
|
|
|
|
|
107
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"layer_order": False,
|
|
|
|
|
"scale_bag": 0.7,
|
|
|
|
|
"scale_earrings": 0.16,
|
|
|
|
|
"self_template": True,
|
|
|
|
|
"single_overall": "overall",
|
|
|
|
|
"switch_category": ""
|
|
|
|
|
},
|
|
|
|
|
"items": [
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 98423,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/dress/0916001596.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Dress"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"body_path": "aida-sys-image/models/female/2e4815b9-1191-419d-94ed-5771239ca4a5.png",
|
|
|
|
|
"image_id": 67277,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Body"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"basic": {
|
|
|
|
|
"body_point_test": {
|
|
|
|
|
"waistband_right": [
|
|
|
|
|
203,
|
|
|
|
|
249
|
|
|
|
|
],
|
|
|
|
|
"hand_point_right": [
|
|
|
|
|
229,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"waistband_left": [
|
|
|
|
|
119,
|
|
|
|
|
248
|
|
|
|
|
],
|
|
|
|
|
"hand_point_left": [
|
|
|
|
|
97,
|
|
|
|
|
343
|
|
|
|
|
],
|
|
|
|
|
"shoulder_left": [
|
|
|
|
|
108,
|
|
|
|
|
107
|
|
|
|
|
],
|
|
|
|
|
"shoulder_right": [
|
|
|
|
|
212,
|
|
|
|
|
107
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"layer_order": False,
|
|
|
|
|
"scale_bag": 0.7,
|
|
|
|
|
"scale_earrings": 0.16,
|
|
|
|
|
"self_template": True,
|
|
|
|
|
"single_overall": "overall",
|
|
|
|
|
"switch_category": ""
|
|
|
|
|
},
|
|
|
|
|
"items": [
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 86345,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/outwear/0825000695.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Outwear"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 78743,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/blouse/0902001412.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Blouse"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"color": "28 26 26",
|
|
|
|
|
"icon": "none",
|
|
|
|
|
"image_id": 68988,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"path": "aida-sys-image/images/female/trousers/0825000403.jpg",
|
|
|
|
|
"print": {
|
|
|
|
|
"element": {
|
|
|
|
|
"element_angle_list": [],
|
|
|
|
|
"element_path_list": [],
|
|
|
|
|
"element_scale_list": [],
|
|
|
|
|
"location": []
|
|
|
|
|
},
|
|
|
|
|
"overall": {
|
|
|
|
|
"location": [
|
|
|
|
|
[
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
],
|
|
|
|
|
"print_angle_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": [
|
|
|
|
|
0.0,
|
|
|
|
|
0.0
|
|
|
|
|
]
|
|
|
|
|
},
|
|
|
|
|
"single": {
|
|
|
|
|
"location": [],
|
|
|
|
|
"print_angle_list": [],
|
|
|
|
|
"print_path_list": [],
|
|
|
|
|
"print_scale_list": []
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Trousers"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"body_path": "aida-sys-image/models/female/2e4815b9-1191-419d-94ed-5771239ca4a5.png",
|
|
|
|
|
"image_id": 67277,
|
|
|
|
|
"offset": [
|
|
|
|
|
1,
|
|
|
|
|
1
|
|
|
|
|
],
|
|
|
|
|
"resize_scale": [
|
|
|
|
|
1.0,
|
|
|
|
|
1.0
|
|
|
|
|
],
|
|
|
|
|
"type": "Body"
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"process_id": "123"
|
|
|
|
|
}
|
|
|
|
|
start_time = time.time()
|
|
|
|
|
X = design_generate(object_data)
|
|
|
|
|
print(time.time() - start_time)
|
|
|
|
|
print(X)
|