上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: 在实现qq聊天界面的过程中,使用UITableViewCell碰到了不少问题,这里还是记录一下以免遗忘。 气泡聊天cell的实现,网上最多的方法还是: 1.手动计算设置frame的值,文本的size使用boundingRectWithSize函数动态计算 2.气泡的实现,拉伸使用resizableI 阅读全文
posted @ 2016-09-03 10:10 mlj318 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 从网上下的一个读写bmp文件的接口使用了ifstream和fstream. 发现了在使用read读的时候,读取的字节达不到期望的size. 原因是打开文件的时候使用了ios::in 或ios::out选项,加上ios::binary选项即可。 阅读全文
posted @ 2016-08-02 14:50 mlj318 阅读(2745) 评论(1) 推荐(1) 编辑
摘要: 1 Other Codecs l MSN 使用的video codec “x-rtvc1”,09之前的版本使用的ML20.参考网址: http://www.amsn-project.net/forums/index.php?topic=6612.0 l Yahoo messenger 使用GIPS的 阅读全文
posted @ 2016-07-31 19:43 mlj318 阅读(21423) 评论(0) 推荐(1) 编辑
摘要: http://www.cnblogs.com/zyl910/archive/2012/04/26/md00.html https://software.intel.com/sites/landingpage/IntrinsicsGuide/#expand=0,27,1022&techs=SSE2 h 阅读全文
posted @ 2016-03-22 16:52 mlj318 阅读(421) 评论(0) 推荐(0) 编辑
摘要: hevc解码GPU优化: 1.This GPU acceleration has opened up the possibility of playing a Full-HD (1080p) at 60 FPS or Ultra-HD (2160p) at 30 FPS, HEVC content 阅读全文
posted @ 2016-03-15 14:15 mlj318 阅读(286) 评论(0) 推荐(0) 编辑
摘要: ALL_BUILD:vcxproj:找不到项目文件“ALL_BUILD”中引用的平台“x64”。请确保已将该平台安装在“%VCTargetsPath%\Platforms\x64”下。无法加载项目。 这个错误是将自己pc上的x265项目迁移到另一台pc上时发生的,安装的是vs2010学习版,查找c盘 阅读全文
posted @ 2016-03-10 09:31 mlj318 阅读(880) 评论(0) 推荐(0) 编辑
摘要: 1.生产者线程 while(1){ cvCornerFast();//角点检测 lkOutFrame * frame = new lkOutFrame();//生产一帧 myPyrlk.CaclOpticalFlowPyrLK(...,frame);//调用opencl函数计算光流 } 因为myPy 阅读全文
posted @ 2016-03-07 10:29 mlj318 阅读(213) 评论(0) 推荐(0) 编辑
摘要: { ThreadPara para; (void*)&para 传递给另一个线程 } para 是局部变量,线程使用时可能已被销毁,应使用ThreadPara* para=new ThreadPara;并在使用后释放自身。 平时都是在main函数一开就创建线程,所以para的生命周期足够长。 阅读全文
posted @ 2016-03-01 15:36 mlj318 阅读(845) 评论(0) 推荐(0) 编辑
摘要: 1.AMD opencl-optimization-guidehttp://developer.amd.com/tools-and-sdks/opencl-zone/amd-accelerated-parallel-processing-app-sdk/opencl-optimization-gui... 阅读全文
posted @ 2015-12-11 16:44 mlj318 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 1.根据前两次的最终结果:使用普通buffer,Horizontal 5ms, Vertical 17 ms使用image buffer:Horizontal 9.4ms, Vertical 6.4 ms那么使用 Horizontal普通buffer,Vertical image buffer 组合... 阅读全文
posted @ 2015-12-11 16:17 mlj318 阅读(1375) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页