Guest User

Пакетная обработка для simswap

a guest
Dec 6th, 2021
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. FOR %%i IN (input/*.jpg, input/*.jpeg, input/*.png) do (
  2. python test_wholeimage_swapsingle.py --no_simswaplogo --crop_size 224 --use_mask --name people --Arc_path arcface_model/arcface_checkpoint.tar --pic_a_path ./face/face.jpg --pic_b_path ./input/%%~xni --output_path ./output/
  3. move output\result_whole_swapsingle.jpg output\%%~xni
  4. )
  5.  
  6. FOR %%i IN (input/*.gif, input/*.mp4, input/*.webm) do (@echo %%i
  7. python test_video_swapsingle.py --no_simswaplogo --crop_size 224 --use_mask --name people --Arc_path arcface_model/arcface_checkpoint.tar --pic_a_path ./face/face.jpg --video_path ./input/%%~xni --output_path ./output/%%~ni.mp4 --temp_path ./temp_results
  8. )
Advertisement
Add Comment
Please, Sign In to add comment