
树莓派
老爹lzm
这个作者很懒,什么都没留下…
展开
-
树莓派学习记录
@TOC树莓派学习记录(1)图像的读取 def capture(): cap=cv2.VideoCapture(0) # 打开摄像头 ret,frame=cap.read() #返回一个bool值和一个帧图像 if ret: print(‘capture succed’) cv2.imwrite(‘capture.jpg’,frame) else:...原创 2019-03-25 16:40:33 · 374 阅读 · 0 评论 -
树莓派Linux系统几个常用的操作
ls 列出文件或者目录的信息,目录的信息就是其中包含的文件。 ls [-aAdfFhilnrRSt] file|dir -a :列出全部的文件 -d :仅列出目录本身 -l :以长数据串行列出,包含文件的属性与权限等等数据 cp 复制操作。 如果源文件有两个以上,则目的文件一定要是目录才行。 cp [-adfilprsu] source destination -a :相当于 -dr --...转载 2019-03-31 22:19:18 · 649 阅读 · 0 评论