2023年4月25日
摘要:
0.top命令,47.1 表示占用 47.1% 0.717与前面的GiB对应,总共0.717GB运行内存 1、cat /proc/meminfo 内存映射文件 2、free -m 3、磁盘使用情况 df -h
阅读全文
posted @ 2023-04-25 09:38
WenJXUST
阅读(346)
推荐(0)
2023年4月23日
摘要:
export RKNN_LOG_LEVEL=5
阅读全文
posted @ 2023-04-23 09:49
WenJXUST
阅读(101)
推荐(0)
2023年4月21日
摘要:
0、makeAndCp.txt*(每行对应一个操作) make cp rknn_personKp_demo /mnt/hgfs/shareFile1/rv1126/20221026 1、makeAndCp.sh #!/bin/bash while read line do echo "startW:
阅读全文
posted @ 2023-04-21 16:01
WenJXUST
阅读(38)
推荐(0)
摘要:
enum InterpolationFlags{ /** nearest neighbor interpolation */ INTER_NEAREST = 0, /** bilinear interpolation */ INTER_LINEAR = 1, /** bicubic interpol
阅读全文
posted @ 2023-04-21 10:24
WenJXUST
阅读(28)
推荐(0)
2023年4月20日
摘要:
背景:因为windows下用的是cmake-gui,linux自己一直用的是命令行,在交叉编译opencv的时候想试下cmake-gui 0、 Tags · Kitware/CMake (github.com) cmake源码链接,下载cmake-xxxx.zip,解压; 1、参考:(8条消息) c
阅读全文
posted @ 2023-04-20 15:14
WenJXUST
阅读(645)
推荐(0)
摘要:
python-fan/pdf2word: 60行代码实现多线程PDF转Word (github.com) 这个的pdf2docx不是最新版的pip 也安装不到最新版的,最新版在下面这个链接可以下载whl文件。 dothinking/pdf2docx: Open source Python libra
阅读全文
posted @ 2023-04-20 15:00
WenJXUST
阅读(573)
推荐(0)
2023年3月10日
摘要:
void fun(int* aa) { return; } int* a = new int[16]; memset(a, 0, 16); fun(a); void fun(int* aa) { return; } int a[16] = { 0 }; fun(a); 总之,两段代码的区别在于变量
阅读全文
posted @ 2023-03-10 15:03
WenJXUST
阅读(16)
推荐(0)
2023年3月7日
摘要:
0、gn gen 会在后面目录下生成 .ninja,然后ninja通过这个文件编译; 1、当前目录下 gn,有相关文件,一个是配置文件build/config/BUILDCONFIG.gn,一个要生成库的配置文件BUILD.gn
阅读全文
posted @ 2023-03-07 14:24
WenJXUST
阅读(70)
推荐(0)
2023年3月6日
摘要:
nm -D libaudio_frame_api.so 上面是linux的,下面是Android的(针对的是 targe_os = android,targe_cpu = arm 等动态库的) /home/jackey/code/webrtc-checkout/src/third_party/and
阅读全文
posted @ 2023-03-06 12:07
WenJXUST
阅读(188)
推荐(0)
2023年3月2日
摘要:
ffmpeg -ss 00:00:03 -t 22 -i output20230301.mp4 output20230301_0.mp4 -ss:开始时间 -t:持续时间 -i:输入 接着是输出
阅读全文
posted @ 2023-03-02 13:49
WenJXUST
阅读(33)
推荐(0)