1 Star 0 Fork 6

.SiriBen/DeepNude_NoWatermark_withModel

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.py 790 Bytes
一键复制 编辑 原始数据 按行查看 历史
yigui.dai 提交于 2019-07-11 22:09 . add the parameters parser
# coding: utf8
import sys
import cv2
import argparse
from run import process
"""
main.py
How to run:
python main.py
"""
def main(inputpath, outpath):
dress = cv2.imread(inputpath)
h = dress.shape[0]
w = dress.shape[1]
dress = cv2.resize(dress, (512,512), interpolation=cv2.INTER_CUBIC)
watermark = process(dress)
watermark = cv2.resize(watermark, (w,h), interpolation=cv2.INTER_CUBIC)
cv2.imwrite(outputpath, watermark)
#sys.exit()
if __name__ == '__main__':
parser = argparse.ArgumentParser(description="simple deep nude script tool")
parser.add_argument("-i", action="store", default="input.png")
parser.add_argument("-o", action="store", default="output.png")
inputpath, outputpath = parser.parse_args().i, parser.parse_args().o
main(inputpath, outputpath)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/SiriBen/DeepNude_NoWatermark_withModel.git
git@gitee.com:SiriBen/DeepNude_NoWatermark_withModel.git
SiriBen
DeepNude_NoWatermark_withModel
DeepNude_NoWatermark_withModel
master

搜索帮助