zoukankan      html  css  js  c++  java
  • 博客园Markdown新建笔记

    这是一个一级标题测试

    下面插入一段Python代码

    
    import os
    
    from PIL import Image
    from numpy import *
    from pylab import *
    
    path = r'D:ProjectsPythonProjImageProcessing2012'
    sst_dir = os.listdir(path)
    file_len = len(sst_dir)
    
    sst_list = []
    
    for i in range(file_len):
        str = path + '\' + sst_dir[i]
        #txt = open(str).read()
        sst_list.append(str)
    
    immatrix = []
    
    for im in sst_list:
        text = loadtxt(im)    
        immatrix.append(text)
    

    原文出处:
    LeonWen

    I can
  • 相关阅读:
    bzoj1648
    bzoj3404
    bzoj1650
    bzoj1625
    bzoj1606
    bzoj1464
    bzoj1572
    bzoj1617
    bzoj1092
    bzoj1091
  • 原文地址:https://www.cnblogs.com/leonwen/p/5625048.html
Copyright © 2011-2022 走看看