
其他
victory_li
这个作者很懒,什么都没留下…
展开
-
OpenCV/OpenCL/OpenGL区别
OpenCV/OpenCL/OpenGL区别:OpenGL(全写Open Graphics Library)是个定义了一个跨编程语言、跨平台的应用程序接口(API)的规格,它用于生成二维、三维图像。这个接口由近三百五十个不同的函数调用组成,用来从简单的图形比特绘制复杂的三维景象。而另一种程序接口系统是仅用于Microsoft Windows上的Direct3D。OpenGL原创 2017-04-11 15:59:08 · 30045 阅读 · 0 评论 -
OpenGL Direct3D(DirectX)区别
1. OpenGl仅仅是个图形图像接口,基本不包括其它多媒体功能, 它的优势是平台无关性。DirectX则是基于Windows的,不能在MAC 和 Linux Solars上使用 。2. OpenGL多用于专业高端绘图领域,D3D用于游戏较多,因为支持各种多媒体功能。原创 2017-04-11 15:58:04 · 2834 阅读 · 0 评论 -
解决安装交叉调试器arm-gdb时 warnings being treated as errors 错误
make[4]: 正在进入目录 `/root/downloads/gdb-6.6/opcodes'/bin/sh ./libtool --mode=compile gcc -DHAVE_CONFIG_H -I. -I.././opcodes -I. -D_GNU_SOURCE -I. -I.././opcodes -I../bfd -I.././opcodes/../include -I../原创 2012-02-22 14:50:36 · 1937 阅读 · 0 评论 -
mfc多线程
mfc多线程http://www.cnblogs.com/zqrferrari/archive/2010/07/07/1773113.html转载 2012-12-05 19:15:30 · 565 阅读 · 0 评论 -
linux下用g++编译c程序:xx没有定义解决办法
用一个例子来说明怎么样在 C++ 里使用C的头文件/函数。比方说我有一个C的头文件叫 c.h, C的源码文件叫 c.c,内容分别是c.h:#ifndef _ASDFD_INCLUDED_#define _ASDFD_INCLUDED_#include extern int test(int a);#endifc.c:#include "c.h"int test(i原创 2012-04-10 16:29:15 · 2474 阅读 · 0 评论 -
linux下查看静态库
A、使用arm-none-linux-gnueabi-ar -t 可以查看库中包含的模块,也就是组成.a文件的.o文件列表;B、使用arm-none-linux-gnueabi-nm -A 命令可以查看其包含的模块以及symbol标号;C、使用arm-none-linux-gnueabi-ar -x 命令可以抽取.a静态库文件中的.o文件;D、使用arm-none-linux-gnue原创 2012-04-10 16:11:50 · 1542 阅读 · 0 评论 -
Eclipse-cdt 配合 gdbserver 进行 arm 程序远程调试:connection选项找不到
红圈中确保为“Using Standard Create Process Launcher";如果不是,请点”Select other..."选择之。原创 2012-02-27 22:55:01 · 1104 阅读 · 0 评论 -
make xconfig错误:Unable to find the QT3 installation
make xconfig时出现错误:* Unable to find the QT3 installation. Please make sure that* the QT3 development package is correctly installed and* either install pkg-config or set the QTDIR environment*原创 2012-02-25 14:04:42 · 2875 阅读 · 0 评论 -
make menuconfig错误Unable to find the ncurses libraries
1、执行 make menuconfig 有错误发生错误:*** Unable to find the ncurses libraries or the*** required header files.*** 'make menuconfig' requires the ncurses libraries.****** Install ncurses (ncurses-d原创 2012-02-25 13:50:10 · 5308 阅读 · 1 评论 -
error: impossible constraint in `asm' 解决办法
在arm-linux系统上编译opencv1.0时出现如下错误:cvcap_v4l.cpp: In function `void mainloop_v4l2(CvCaptureCAM_V4L*)':cvcap_v4l.cpp:1172: error: impossible constraint in `asm'{standard input}: Assembler messages:原创 2012-02-25 00:04:06 · 25089 阅读 · 2 评论 -
ubuntu10.10 make xconfig 没有规则
#make xconfig CHECK qt** Unable to find the QT3 installation. Please make sure that* the QT3 development package is correctly installed and* either install pkg-config or set the QTDIR原创 2012-02-23 10:56:46 · 1145 阅读 · 0 评论 -
nfs:server is not responding,still trying 原因与解决方案
今天,用开发板通过nfs挂载主机,想从主机上面拷贝一些资料,可是竟然出现:nfs:server is not responding,still trying , 我用的是友善之臂的mini2440,操作系统使用的是Ubuntu8.04。 本来还以为是nfs出了故障,但是google了一下发现原来不是nfs的原因,而是由于传送的数据太大,出现数据包丢失现象。 NFS 的默认传输协议转载 2012-04-11 08:34:52 · 750 阅读 · 0 评论 -
__ratelimit: XXX callbacks suppressed
【问题】在给Kernel加入了cpufreq支持,启动了cpu freq的debugging,并且在bootargs中加入cpufreq.debug=1,才能真正打开内核中cpu freq的debug。cpu freq驱动是加入了,但是不定期会出现:__ratelimit: XXX callbacks suppressed【解决过程】1.gogole或百度,无果,但转载 2012-04-11 19:58:50 · 12798 阅读 · 0 评论