
OSTRONG
文章平均质量分 83
凉粥
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
OSG学习笔记2:地形构建和模型加载
一、准备 数据文件:地形数据map.data,模型数据car.ms3d. float *terrainHeights; float intervalX = 20; float intervalY = 20; float terrainGridLength; //y方向 float terrainGridWidth; //x方向 double COLOR[8][3] = { { 0, 0,原创 2017-09-27 17:36:05 · 2800 阅读 · 0 评论 -
Bayer图像转RGB
Bayer图像不做赘述 1.Bayer(GRBG)图像转RGB 处理方法:对于某个像素点,存在的分量值不变化,缺少的两个分量值使用Correlation-Adjusted算法 QImage CorrelationAdjusted(QImage srcImg, int type) { int imgW = srcImg.width(); int imgH = srcImg.原创 2017-11-17 18:24:35 · 6293 阅读 · 1 评论 -
OSG学习笔记1:OSG环境编译
系统:Win10_x64 环境:Vs2013+Qt 5.7.0 一、准备: 文件1:CMake(cmake-3.9.1-win64-x64.zip); 文件2:OpenSceneGraph(OpenSceneGraph-3.4.0.zip); 文件3:Data(OpenSceneGraph-Data-3.4.0.zip); 文件4:3rdParty(3rdParty_VS2013.5_原创 2017-09-22 13:37:56 · 991 阅读 · 0 评论