发布时间:2021-12-06 17:35:34
#!/usr/bin/env python# -*- coding: utf-8 -*-# @Time : 2021/12/4 22:34# @Author : 剑客阿良_ALiang# @Site : # @File : image_cartoon_tool.pyfrom PIL import Imageimport torchfrom torchvision.transforms.function.........【阅读全文】
发布时间:2021-12-02 17:33:28
# 预告的添加和列表@admin.route('/preview/add', methods=['GET', 'POST'])@admin_logindef preview_add(): '''和电影添加一样的过程''' form = PreviewForm() if form.validate_on_submit(): &nbs.........【阅读全文】
发布时间:2021-11-30 17:09:34
# 实现摩斯密码翻译器的 Python 程序'''VARIABLE KEY'cipher' -> '存储英文字符串的摩斯翻译形式''decipher' -> '存储摩斯字符串的英文翻译形式''citext' -> '存储单个字符的摩斯密码''i' -> '计算摩斯字符之间的空格''message' -> '存储要编码或解码的字符串'''# 表示摩斯密码图的.........【阅读全文】
发布时间:2021-11-24 17:22:45
mask = np.zeros_like(edges) ignore_mask_color = 255 # 获取图片尺寸 imshape = img.shape # 定义 mask 顶点 vertices = np.array([[(0,imshape[0]),(450, 290), (490, 290.........【阅读全文】
发布时间:2021-11-23 17:19:36
/** * jsoup测试案例 * @author tuxuchen * @date 2021/11/18 18:17 */public class JsoupTest { public static void main(String[] args) { JsoupTest test = new JsoupTest(); test.findSearch("圣墟").........【阅读全文】