02 2018 档案

Python3 图片水平镜像实现
摘要:1 # -*- coding: utf-8 -*- 2 """ 3 Created on Sun Feb 4 12:15:38 2018 4 5 @author: markli 6 """ 7 from PIL import Image; 8 import os; 9 10 class Mirror: 11 def __init__(self): 12 ... 阅读全文

posted @ 2018-02-04 15:53 FightLi 阅读(2809) 评论(0) 推荐(0)

Python3 CNN中卷积和池化的实现--限制为二维输入
摘要:目前只能实现二维的操作,三维的实现还没想好如何存储。卷积神经网络的存储和计算是真的很复杂,过段时间想好了在实现。 阅读全文

posted @ 2018-02-01 19:39 FightLi 阅读(532) 评论(0) 推荐(0)