摘要: 使用vs开发qt程序有时候不希望程序使用到的图片资源让用户看到,这时可以讲资源打包到程序中。创建qrc资源文件,里面写入你使用到的图片资源路径,下面的代码中img是文件夹 img/ball.png img/chinapool.jpg img/Globe.ico img/ninegoals.jpg ... 阅读全文
posted @ 2014-10-20 17:49 恒月美剑 阅读(310) 评论(0) 推荐(0) 编辑
摘要: 刚开始报error:devices not found重新安装adb 驱动。解决方法:adb kill-serveradb start-serveradb remount再使用adb devices和adb shell就可以使用android adb功能了。转自:http://blog.csdn.n... 阅读全文
posted @ 2014-09-30 22:13 恒月美剑 阅读(6629) 评论(0) 推荐(1) 编辑
摘要: 使用libusb开发库可以很方便的与usb通信。在使用这个库之前需要做几件事情1.libusb的安装 在ubuntu中使用sudo apt-get isntall libusb* 可以快速的安装,如果想选择性的安装则使用sudo apt-cache search libusb查看要安装的软件包,然后... 阅读全文
posted @ 2014-09-30 10:10 恒月美剑 阅读(19205) 评论(2) 推荐(1) 编辑
摘要: 效果如图所示:绘制的过程如下: 1 QFont font; 2 font.setPointSize(this->height() * 2 * mZoomRatio / 3); 3 font.setBold(true); 4 if(mDrawOutlined) 5 ... 阅读全文
posted @ 2014-09-24 17:19 恒月美剑 阅读(7201) 评论(4) 推荐(0) 编辑
摘要: 使用mplayer可以直接播放YUV原始数据文件int DeckLinkCaptureDelegate::convert_yuv_to_rgb_pixel(int y, int u, int v){ unsigned int pixel32 = 0; unsigned c... 阅读全文
posted @ 2014-08-08 08:57 恒月美剑 阅读(5553) 评论(0) 推荐(0) 编辑
摘要: windows下提供了调用摄像头的相关api函数,函数定义包含在vfw.h头文件中。http://msdn.microsoft.com/zh-cn/dd757677 这个地址提供了完整的教程。下面贴出一个简单的例子头文件:#ifndef pvcamerasnapshoter_h#define pvc... 阅读全文
posted @ 2014-08-04 22:35 恒月美剑 阅读(5592) 评论(0) 推荐(1) 编辑
摘要: #include #include #include #include #pragma comment(lib,"atl")#pragma comment(lib,"User32.lib")CComModule _Module;const TCHAR *URL[9] = { _T("http:... 阅读全文
posted @ 2014-07-25 14:07 恒月美剑 阅读(1786) 评论(1) 推荐(1) 编辑
摘要: 如果文字很多在屏幕中一次性绘制坑能造成卡屏,文字移动不流畅,所以要对文字分块进行移动。移动方法:1. 设置mDrawPos = width();即绘画起点在最右边。2. 在计时器中设置mDrawPos -= mMoveSpeed,当 mDrawPos width()) //对于屏幕之... 阅读全文
posted @ 2014-07-15 11:55 恒月美剑 阅读(381) 评论(0) 推荐(0) 编辑
摘要: Guide : How to compile ffmpeg under Windows7 and VS2012bysdancer75» Mon Jul 29, 2013 4:51 pmHow to successfully compile ffmpeg under windows.My latop is Windows 7 64Bit and VS2012 but I am compiling in 32bit mode.Step 1)Download mingw and install it (choose C, C++, MSYS Basic System, MinGW Deve 阅读全文
posted @ 2013-12-05 08:31 恒月美剑 阅读(4144) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2013-11-25 16:09 恒月美剑 阅读(256) 评论(0) 推荐(0) 编辑