- 读取目录下文件名
import os
os.listdir("C:\\Users")
dir("C:\\Users")
- 格式转换
int()
str()
a = 5.33464565
str_a = "{:03.02f}".format(a)
print(str_a) # 格式化输出,005.33
str2num()
num2str()
num2str(4, '%02d') % 格式化输出,0004
- 字符串
string = 'abcd.txt'
## 截取
string [1:3] # bc
string [0:string.index('.')] # abcd
## 长度
len(string) # 4
## 删掉左右的xx
string.rstrip('xx')
string.lstrip('xx')
string(2:4) % bcd
string(1:strfind(string,'.')-1) % abcd
newStr = strip(string) % 删除前后空格
newStr = strip(string,'left','0') % 删除前导零
% 'left' / 'right' / 'both'
- 读写文件
## 'r': read
## 'w': write
## 'a': append
with open('/path/to/file', 'r') as f:
f.read() # 全部读到一个变量里
f.readline() # 读取一行
f.readlines() # 全部都到一个列表变量里
import numpy as np
np.loadtxt() # 直接读到数组里!
-----
with open('/path/to/file', 'w') as f:
f.write(line)
f.writelines()
load(filename)
importdata(filename)
fid=fopen('data.txt','r');
A=fscanf(A,'%c');
fclose(fid);
-----
fid = fopen(savename,'w');
for j = 1:count
fprintf(fid,'%f \n',number);
end
fclose(fid);
- 图片 opencv + matplotlib
import cv2
from matplotlib import pyplot as plt
%matplotlib inline
## 读取
img = cv2.imread('test.png')
## 其他操作
# 大小
img.shape # (height,width,channel)
# 转换颜色空间
gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
# 画图
cv2.line(img, (0,0), (511, 511), (255,0,0), 5)
# position 1, position 2, color, line width
cv2.rectangle(img, (384,0), (510, 128), (0, 255, 0), 3)
cv2.circle(img, (447, 63), 63, (0,0,255), -1)
#linewidth -1 means fill circle using setted color
cv2.ellipse(img, (256,256), (100,50),45,0,270,(0,0,255),-1)
#椭圆的第二个参数是椭圆中心,第三个参数是椭圆长轴和短轴对应的长度,第四个
参数45是顺时针旋转45度, 第五个参数是从0度开始,顺时针画270的弧,第七个参
数是颜色,最后一个是用颜色填充椭圆内部
font = cv2.FONT_HERSHEY_SIMPLEX
cv2.putText(img, 'Hello', (10,500), font, 4, (255,255,255), 2)
## 显示
# opencv 与 matplot颜色空间不同,需要转换B/R通道才能显示出正常的颜色
img = cv2.cvtColor(img,cv2.COLOR_RGB2BGR)
plt.imshow(img)
plt.show()
img = imread(imgname)
img = imrotate(img,90); % counterclockwise
size(img) % [height, width, channel]
figure;
imshow(img)
hold on;
plot(X(1,:),X(2,:),'gx');
- 打乱list
import random
random.shuffle (lst) # lst is shuffled
- 随机数
import random
random.seed(10) # 设置随机数种子,参数为空时默认为当前系统时间
random.random() # 随机浮点数
random.randint(1,10) # 随机整数,包含上下限
random.uniform(1,5) # 随机正态浮点数,random.uniform(u,sigma)
random.choice('abcde./;[fgja13ds2d') # 随机选取一个字符
random.sample('abcdefghijk',3) # 随机选取n个字符
参考:
http://blog.csdn.net/szfhy/article/details/51084383
http://www.runoob.com/python/func-number-shuffle.html
https://www.cnblogs.com/skyEva/p/6097157.html