03 2016 档案

摘要: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 阅读(446) 评论(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 阅读(302) 评论(0) 推荐(0)
摘要:ALL_BUILD:vcxproj:找不到项目文件“ALL_BUILD”中引用的平台“x64”。请确保已将该平台安装在“%VCTargetsPath%\Platforms\x64”下。无法加载项目。 这个错误是将自己pc上的x265项目迁移到另一台pc上时发生的,安装的是vs2010学习版,查找c盘 阅读全文
posted @ 2016-03-10 09:31 mlj318 阅读(941) 评论(0) 推荐(0)
摘要:1.生产者线程 while(1){ cvCornerFast();//角点检测 lkOutFrame * frame = new lkOutFrame();//生产一帧 myPyrlk.CaclOpticalFlowPyrLK(...,frame);//调用opencl函数计算光流 } 因为myPy 阅读全文
posted @ 2016-03-07 10:29 mlj318 阅读(217) 评论(0) 推荐(0)
摘要:{ ThreadPara para; (void*)&para 传递给另一个线程 } para 是局部变量,线程使用时可能已被销毁,应使用ThreadPara* para=new ThreadPara;并在使用后释放自身。 平时都是在main函数一开就创建线程,所以para的生命周期足够长。 阅读全文
posted @ 2016-03-01 15:36 mlj318 阅读(866) 评论(0) 推荐(0)