上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 77 下一页
摘要: ftp必须用二进制模式上传才可以sqlite3arm-linux-gcc hello.c -o hello.cgi -I /cgi/include -L /cgi/lib -static -lsqlite3 -lpthread -ldl 阅读全文
posted @ 2014-11-21 23:16 ahuo 阅读(2264) 评论(0) 推荐(0)
摘要: 用动态链接的方法: arm-linux-gcc hello.c -o hello.out -Wl,-dynamic-linker=/system/lib/ld-linux.so.3 并且拷贝文件到安卓系统目录下/system/lib/ld-linux.so.3 -static 静态链接 阅读全文
posted @ 2014-11-21 11:05 ahuo 阅读(1071) 评论(0) 推荐(0)
摘要: 安卓下执行交叉编译的可执行文件发现提示不允许。 原因是mount的方式问题,root后运行 su mount -o rw,remount /mnt/sdcard 就可以了 mount -o rw,remount / / 新版本系统 重新挂载根目录 阅读全文
posted @ 2014-11-20 21:56 ahuo 阅读(3189) 评论(0) 推荐(0)
摘要: 问题:undefined reference to `pthread_spin_init'解:修改CMakeCache.txt,CMAKE_EXE_LINKER_FLAGS原来为空,加上-lpthread -lrt -ldl 阅读全文
posted @ 2014-11-20 15:48 ahuo 阅读(576) 评论(0) 推荐(0)
摘要: 原因是缺少库文件,解决办法:arm-linux-readelf -a helloword | grep NEEDED 拷贝so文件到安卓下或者arm-linux-gcc hello.c -o hello -static 阅读全文
posted @ 2014-11-20 15:11 ahuo 阅读(355) 评论(0) 推荐(0)
摘要: .├── aclocal.m4├── autoscan.log├── config.log├── config.status├── configure├── configure.in├── Makefile├── Makefile.am├── Makefile.in└── src ├── f... 阅读全文
posted @ 2014-11-18 13:01 ahuo 阅读(3315) 评论(0) 推荐(0)
摘要: Cannyfunction [ canny ] = canny( rgb )temp=rgb2gray(rgb);canny=edge(temp,'canny');end灰度temp=rgb2gray(rgb);播放视频clear allsource = VideoReader('d:\v\\bus... 阅读全文
posted @ 2014-11-11 11:44 ahuo 阅读(357) 评论(0) 推荐(0)
摘要: 查看进程ps -APID进程的sopmap -x pid 阅读全文
posted @ 2014-10-30 17:00 ahuo 阅读(2497) 评论(0) 推荐(0)
摘要: 网卡配置静态IP地址 编辑文件/etc/network/interfaces: sudo vi /etc/network/interfaces 并用下面的行来替换有关eth0的行:# The primary network interface auto eth0 iface eth0 inet st 阅读全文
posted @ 2014-10-29 13:45 ahuo 阅读(453) 评论(1) 推荐(0)
摘要: 在百度搜索过的关键字后,经常在其他网页看到百度的推广广告,超级烦人而且涉及隐私,下面是去除方法C:\Windows\System32\drivers\etc下的hosts文件加入127.0.0.1cpro.baidu.com127.0.0.1cpro.baidustatic.com127.0.0.1... 阅读全文
posted @ 2014-10-28 11:07 ahuo 阅读(832) 评论(0) 推荐(0)
摘要: 用海思的交叉编译工具交叉编译live555 ,结合海思例子venc中的H264部分,完成RTSP的视频数据发布。用vlc可以播放,但是实时性比较差,慢了5秒 阅读全文
posted @ 2014-10-23 15:19 ahuo 阅读(4681) 评论(3) 推荐(0)
摘要: 2.4.9的opencv安装好交叉编译后,用Cmake 配置opencv修改CMakeCache.txtCMAKE_EXE_LINKER_FLAGS:STRING=-lpthread -lrt -lstdc++ 阅读全文
posted @ 2014-10-17 17:11 ahuo 阅读(1598) 评论(0) 推荐(0)
摘要: export LD_LIBRARY_PATH=/usr/local/lib 阅读全文
posted @ 2014-10-17 17:08 ahuo 阅读(984) 评论(0) 推荐(0)
摘要: Create a detector object.faceDetector = vision.CascadeObjectDetector;Read input image. I = imread('visionteam.jpg');Detect faces. bboxes = step(... 阅读全文
posted @ 2014-08-22 14:03 ahuo 阅读(587) 评论(0) 推荐(0)
摘要: >>se3 = strel('square',3)Neighborhood: 1 1 1 1 1 1 1 1 1>> se3 = strel('line',3 , 45)Neighborhood: 0 0 ... 阅读全文
posted @ 2014-08-22 11:17 ahuo 阅读(710) 评论(0) 推荐(0)
上一页 1 ··· 27 28 29 30 31 32 33 34 35 ··· 77 下一页