Browse Source

11111

master
dongchangxi 6 months ago
parent
commit
2280e59398
  1. BIN
      apps/__pycache__/fix_up_color_two.cpython-310.pyc
  2. BIN
      apps/__pycache__/ps_image_shadow_up_ag.cpython-310.pyc
  3. BIN
      apps/__pycache__/white_purification_v1.cpython-310.pyc
  4. BIN
      apps/__pycache__/white_purification_v2.cpython-310.pyc
  5. 26
      apps/auto_convert3d_new.py
  6. 2
      apps/white_purification_v1.py
  7. 12146
      comfyui/3.小鱼AI(灰度图)图片浮雕流程-V3.json
  8. 11
      comfyui/main.py
  9. BIN
      comfyui/util/__pycache__/utils.cpython-310.pyc

BIN
apps/__pycache__/fix_up_color_two.cpython-310.pyc

Binary file not shown.

BIN
apps/__pycache__/ps_image_shadow_up_ag.cpython-310.pyc

Binary file not shown.

BIN
apps/__pycache__/white_purification_v1.cpython-310.pyc

Binary file not shown.

BIN
apps/__pycache__/white_purification_v2.cpython-310.pyc

Binary file not shown.

26
apps/auto_convert3d_new.py

@ -3,7 +3,7 @@ import os, oss2, time, redis, requests, shutil, sys, subprocess, json, platform @@ -3,7 +3,7 @@ import os, oss2, time, redis, requests, shutil, sys, subprocess, json, platform
from PIL import Image, ImageDraw, ImageFont
from retrying import retry
import atexit,platform
import white_purification_v1
import white_purification_v2,white_purification
if platform.system() == 'Windows':
sys.path.append('e:\\libs\\')
import common
@ -124,17 +124,7 @@ def team_check(r): @@ -124,17 +124,7 @@ def team_check(r):
print(time.strftime('%Y-%m-%d %H:%M:%S', time.localtime()), f'pid:{pid} repair_id:{repair_id} 生成团队审核模型 start model:IndependentRepairTeamcheckGLBQueue', )
ossPath = down_obj_fromoss(pid,orderId)
#对文件进行白色提纯处理
imagePath = os.path.join(workdir, 'print', pid,pid+"Tex1.jpg")
print("开始处理白色提纯")
#white_purification_v1.white_purification_utils(imagePath)
os.system(f'python d:\\make2\\apps\white_purification_v1.py.py -i {imagePath}')
print("贴图文件白色提纯完成",imagePath)
#提纯完重新上传提纯图片
ossImagePath = os.path.join("objs/print", pid,ossPath,"texture","process_"+pid+"Tex1.jpg")
oss_client.put_object_from_file(f"objs/print/{pid}/{ossPath}/texture/process_{pid}Tex1.jpg",imagePath)
print("白色提纯上传图片路径-",ossImagePath,imagePath)
obj_filename = f'{pid}.obj'
glb_filename = f'{orderId}.glb'
@ -158,6 +148,20 @@ def team_check(r): @@ -158,6 +148,20 @@ def team_check(r):
oss_client.put_object_from_file(f'glbs/print/order_id/{glb_filename}', os.path.join(workdir, "print", pid, glb_filename))
#对文件进行白色提纯处理
imagePath = os.path.join(workdir, 'print', pid,pid+"Tex1.jpg")
print("开始处理白色提纯")
#white_purification.white_purification_utils(imagePath)
os.system(f'python D:\\make2\\apps\white_purification_v2.py -i {imagePath}')
print("贴图文件白色提纯完成",imagePath)
#提纯完重新上传提纯图片
ossImagePath = os.path.join("objs/print", pid,ossPath,"texture","process_"+pid+"Tex1.jpg")
oss_client.put_object_from_file(f"objs/print/{pid}/{ossPath}/texture/process_{pid}Tex1.jpg",imagePath)
print("白色提纯上传图片路径-",ossImagePath,imagePath)
print(f'{update_repair_status_url}?id={repair_id}')
res = requests.get(f'{update_repair_status_url}?id={repair_id}')
print('更新团队审核状态:', res.text)

2
apps/white_purification_v1.py

@ -127,7 +127,7 @@ if __name__ == "__main__": @@ -127,7 +127,7 @@ if __name__ == "__main__":
os.makedirs(image_result_dir, exist_ok=True)
start_time= time.time()
correct_texture_image(args.input_path,image_result_dir,args.image_path)
correct_texture_image(args.image_path,image_result_dir,args.image_path)
end_time = time.time()
total_time = round(end_time - start_time, 2)
print(f"处理成功,耗时 {total_time} 秒,")

12146
comfyui/3.小鱼AI(灰度图)图片浮雕流程-V3.json

File diff suppressed because one or more lines are too long

11
comfyui/main.py

@ -142,6 +142,7 @@ def checkIsFinish(driver, pid, orderId,styleNumber): @@ -142,6 +142,7 @@ def checkIsFinish(driver, pid, orderId,styleNumber):
print(f"pid={pid},orderid={orderId},style_number:{styleNumber} 任务处理完成,深度图已上传到OSS")
#推入到队列中
r = utils.create_redis_connection()
if pid > 1000:
r.lpush('model:badge_cartoon_build', json.dumps({'pid': pid, 'order_id': orderId, 'style_number': styleNumber}))
driver.quit()
@ -206,12 +207,12 @@ if __name__ == '__main__': @@ -206,12 +207,12 @@ if __name__ == '__main__':
r = utils.create_redis_connection()
while True:
try:
if r.llen('model:badge_cartoon') == 0:
print('队列为空,等待10秒')
time.sleep(10)
continue
# if r.llen('model:badge_cartoon') == 0:
# print('队列为空,等待10秒')
# time.sleep(10)
# continue
info = r.lpop('model:badge_cartoon')
info = r.spop('model:badge_cartoon')
if info is None:
print('队列为空,等待10秒')
time.sleep(10)

BIN
comfyui/util/__pycache__/utils.cpython-310.pyc

Binary file not shown.
Loading…
Cancel
Save