摘要:
以下内容主要来自 OpenCV 中的 mat.hpp 这个头文件 关于 Mat Mat 是 OpenCV 中用来存储图像数据的基础数据结构,原话是 It can be used to store real or complex-valued vectors and matrices, graysca 阅读全文
摘要:
查询目录下文件个数、内存占用等信息: a. 统计当前目录下文件的个数(不包括目录) ls -l | grep "^-" | wc -l b. 统计当前目录下文件的个数(包括子目录) ls -lR| grep "^-" | wc -l c. 查看某目录下文件夹(目录)的个数(包括子目录) ls -lR 阅读全文