OSG开发笔记(三十三):同时观察物体不同角度的多视图从相机技术
前言
前面的相机hud可以单独显示图形,继续深入研究相机hud,技术就是子视图了,实现该功能的直接技术是从相机技术。
本篇描述osg从相机技术
Demo


相机视口的关键调用
是否清除颜色深度缓存(清除)
pCamera->setClearMask(GL_DEPTH_BUFFER_BIT);
如果不清除颜色缓存,渲染的窗口中若无内容,则将其他窗口渲染的内容显示到当前窗口。
设置渲染顺序(最后渲染)
// 设置POST渲染顺序(最后渲染)
pCamera->setRenderOrder(osg::Camera::POST_RENDER);
后渲染的优先级比较高(最后显示,显示优先级最高)。
设置是否接受事件(不接受)
// 设置为不接收事件,始终得不到焦点
pCamera->setAllowEventFocus(false);
设置视口大小
// 视口就是引擎三维的区域,但是注意区别于屏幕的坐标系(屏幕是左上为0,0,而三维引擎是左下为0,0)
pSlaveFrontCamera->setViewport(0,
0,
rect().width() / 4,
rect().height() / 4);
设置从相机故过程
步骤一:新建相机
osg::ref_ptr<osg::Camera> pSlaveFrontCamera = new osg::Camera;
步骤二:设置上下文
pSlaveFrontCamera->setGraphicsContext(_pViewer->getWindow());
步骤三:设置视图区域
// 视口就是引擎三维的区域,但是注意区别于屏幕的坐标系(屏幕是左上为0,0,而三维引擎是左下为0,0)
pSlaveFrontCamera->setViewport(0,
0,
rect().width() / 4,
rect().height() / 4);
步骤四:设置渲染顺序
pSlaveFrontCamera->setRenderOrder(osg::Camera::POST_RENDER);
步骤五:关键步骤添加从相机
第二个参数是缩放矩阵,第三个参数是旋转矩阵
_pViewer->addSlave(pSlaveFrontCamera,
osg::Matrix(),
osg::Matrix::rotate(osg::DegreesToRadians(0.0), 0.0, 0.0, 0.0),
true);
Demo关键源码
osg::ref_ptr<osg::Node> OsgWidget::getMulViewCameraNode()
{
// 隐藏整个demo全局的按钮面板(没用到按键的直接隐藏,不影响此Demo)
{
ui->groupBox_pannel->setVisible(false);
ui->label_cursor->setVisible(false);
ui->label_cursor_2->setVisible(false);
ui->label_msg->setVisible(false);
ui->label_state->setVisible(false);
}
osg::ref_ptr<osg::Group> pGroup = new osg::Group;
// 绘制盒体(立方体、长方体)
{
osg::ref_ptr<osg::Geode> pGeode = new osg::Geode;
// 创建专门指明精细度的类osg::TessellationHints,并设置对应精细度
osg::ref_ptr<osg::TessellationHints> pHints = new osg::TessellationHints;
pHints->setDetailRatio(0.5);
// 绘制几何类型(几何体)
qreal width = 5.0f;
// 函数1
pGeode->addDrawable(new osg::ShapeDrawable(new osg::Box(osg::Vec3(0, 0, 0), width), pHints));
#if 1
// 设置关闭光照:OFF,同时旋转都能看到了(光照关闭,法向量不起作用)
{
osg::StateSet *pStateSet = pGeode->getOrCreateStateSet();
pStateSet->setMode(GL_LIGHTING, osg::StateAttribute::ON);
// pStateSet->setMode(GL_LIGHTING, osg::StateAttribute::OFF);
}
#endif
pGroup->addChild(pGeode);
}
// 创建多视口相机
{
#if 0
// 这里改用了自己窗口已经创建的,这块废掉了,但是保留,基本的核心思想是一样的
osg::ref_ptr<osg::GraphicsContext::WindowingSystemInterface> pWindowingSystemInterface
= osg::GraphicsContext::getWindowingSystemInterface();
if(!pWindowingSystemInterface.get())
{
LOG << "if(!pWindowingSystemInterface.get())";
return pGroup.get();
}
unsigned int width = 0;
unsigned int height = 0;
pWindowingSystemInterface->getScreenResolution(osg::GraphicsContext::ScreenIdentifier(0),
width,
height);
osg::ref_ptr<osg::GraphicsContext::Traits> pTraits = new osg::GraphicsContext::Traits;
{
pTraits->x = 0;
pTraits->y = 0;
pTraits->width = width;
pTraits->height = height;
pTraits->windowDecoration = false;
pTraits->doubleBuffer = true;
pTraits->sharedContext = 0;
}
LOG << pTraits->x << pTraits->y << pTraits->width << pTraits->height;
osg::ref_ptr<osg::GraphicsContext> pGraphicsContext = osg::GraphicsContext::createGraphicsContext(pTraits.get());
if(!pGraphicsContext->valid())
{
LOG << "if(!pGraphicsContext->valid())";
return pGroup.get();
}
#endif
double angle = 15.0f;
#if 1
// 前
osg::ref_ptr<osg::Camera> pSlaveFrontCamera = new osg::Camera;
pSlaveFrontCamera->setGraphicsContext(_pViewer->getWindow());
// 视口就是引擎三维的区域,但是注意区别于屏幕的坐标系(屏幕是左上为0,0,而三维引擎是左下为0,0)
pSlaveFrontCamera->setViewport(0,
0,
rect().width() / 4,
rect().height() / 4);
pSlaveFrontCamera->setRenderOrder(osg::Camera::POST_RENDER);
_pViewer->addSlave(pSlaveFrontCamera,
osg::Matrix(),
osg::Matrix::rotate(osg::DegreesToRadians(0.0), 0.0, 0.0, 0.0),
true);
#endif
#if 1
// 后
osg::ref_ptr<osg::Camera> pSlaveBehindCamera = new osg::Camera;
pSlaveBehindCamera->setGraphicsContext(_pViewer->getWindow());
// 视口就是引擎三维的区域,但是注意区别于屏幕的坐标系(屏幕是左上为0,0,而三维引擎是左下为0,0)
pSlaveBehindCamera->setViewport(0,
rect().width() / 4 * 3,
rect().width() / 4,
rect().height() / 4);
pSlaveBehindCamera->setRenderOrder(osg::Camera::POST_RENDER);
_pViewer->addSlave(pSlaveBehindCamera,
osg::Matrix::translate(0, 0, 0),
osg::Matrix::rotate(osg::DegreesToRadians(30), 1.0, 0.0, 0.0),
true);
#endif
#if 0
// 左
// osg::ref_ptr<osg::Camera> pSlaveLeftCamera = new osg::Camera;
// pSlaveLeftCamera->setGraphicsContext(_pViewer->getWindow());
osg::ref_ptr<HudRotateCamera> pSlaveLeftCamera = new HudRotateCamera;
pSlaveLeftCamera->setGraphicsContext(_pViewer->getWindow());
pSlaveLeftCamera->setMasterCamera(_pViewer->getCamera());
pSlaveLeftCamera->setViewport(0,
rect().height() / 8 * 3,
rect().width() / 4,
rect().height() / 4);
pSlaveLeftCamera->setRenderOrder(osg::Camera::POST_RENDER);
#if 0
_pViewer->addSlave(pSlaveLeftCamera,
osg::Matrix(),
osg::Matrix::rotate(osg::DegreesToRadians(angle), 0.0, 0.0, 1.0),
true);
#endif
#if 0
// 设置相机位置,观察目标点和方向
osg::Vec3f vec3Eye = osg::Vec3f(100, 100, 0);
osg::Vec3f vec3Center = osg::Vec3f(0, 0, 0);
osg::Vec3f vec3Up = osg::Vec3f(0, 1, 0);
pSlaveLeftCamera->setViewMatrixAsLookAt(vec3Eye, vec3Center, vec3Up);
_pViewer->addSlave(pSlaveLeftCamera);
#endif
#if 1
// 设置slave相机的位置和方向
osg::ref_ptr<osg::MatrixTransform> transform = new osg::MatrixTransform();
// 设置平移矩阵,根据需要进行调整
osg::Matrix matrix;
matrix.makeTranslate(0, 0, 0); // 这里的x, y, z是你想要平移到的位置
transform->setMatrix(matrix);
transform->addChild(pGroup);
_pViewer->addSlave(pSlaveLeftCamera,
osg::Matrix(),
osg::Matrix::rotate(osg::DegreesToRadians(15.0f), 0.0, 1.0, 1.0),
true);
pSlaveLeftCamera->setProjectionMatrixAsPerspective(
100.0f, 1.0, 1.0f, 100.0f);
#endif
#endif
#if 0
// 右
osg::ref_ptr<osg::Camera> pSlaveRightCamera = new osg::Camera;
pSlaveRightCamera->setGraphicsContext(_pViewer->getWindow());
pSlaveRightCamera->setViewport(rect().width() / 4 * 3,
rect().height() / 8 * 3,
rect().width() / 4,
rect().height() / 4);
pSlaveRightCamera->setRenderOrder(osg::Camera::POST_RENDER);
_pViewer->addSlave(pSlaveRightCamera,
osg::Matrix(),
osg::Matrix::rotate(osg::DegreesToRadians(-angle), 0.0, 0.0, 1.0),
true);
#endif
#if 0
// 上
osg::ref_ptr<osg::Camera> pSlaveUpCamera = new osg::Camera;
pSlaveUpCamera->setGraphicsContext(_pViewer->getWindow());
pSlaveUpCamera->setViewport(rect().width() / 8 * 3,
0,
rect().width() / 4,
rect().height() / 4);
pSlaveUpCamera->setRenderOrder(osg::Camera::POST_RENDER);
_pViewer->addSlave(pSlaveUpCamera,
osg::Matrix(),
osg::Matrix::rotate(osg::DegreesToRadians(angle), 1.0, 0.0, 0.0),
true);
#endif
#if 0
// 下
osg::ref_ptr<osg::Camera> pSlaveDownCamera = new osg::Camera;
pSlaveDownCamera->setGraphicsContext(_pViewer->getWindow());
pSlaveDownCamera->setViewport(rect().height() / 8 * 3,
rect().height() / 8 * 6,
rect().width() / 4,
rect().height() / 4);
pSlaveDownCamera->setRenderOrder(osg::Camera::POST_RENDER);
_pViewer->addSlave(pSlaveDownCamera,
osg::Matrix(),
osg::Matrix::rotate(osg::DegreesToRadians(-angle), 1.0, 0.0, 0.0),
true);
#endif
}
return pGroup.get();
}
工程模板v1.36.0

入坑
入坑一:设置相机就崩溃
问题

解决过程
定位到不设置相机就不崩溃,然后这里是笔者自己造的Qt与OSG结合的,使用了位置,这里也可以查看实际打印的创建的区域坐标和大小,确实也是不对:

那直接把场景里面的gc赋值给他测试,是可以的,修改的地方有点多,因为这个Qt+OSG是笔者根据源码原理进行调整渲染的,与直接编译出来的qt+osg还是有点区别,总之一句话,就是Qt渲染窗口里面已经有这个osg::ref_ptrosg::GraphicsContext了,不用去额外建立了:
删除以下代码:

然后再调整相机代码,还有从Qt渲染窗口里面增加拿到这个内容上下文的函数就好了。
解决
新增获取函数,原本不能获取


这里实际大小为:

所以外面代码,直接用窗口的宽高好了(笔者是铺满的):这里是要缩小放前面,那就是改为4/1吧:


入坑二:左视图没有
问题
左视图应该显示,但是没显示

解决过程
改成一样的:

然后不偏移试试:

偏移一个小角度试试:

所以是Y轴的中心不对,但是我们也没有改,测试绕x轴:

然后绕z轴,发现就z轴没有偏移:



尝试单独设置添加相机的视口是无效的:


尝试单独修改同步旋转的相机去修改视口,也是无效:

继续尝试:

是否与内置相机的视口有关系,测试也无关:


解决(主技术方向未解决)
从原始从相机技术方面暂时没有解决,因为也尝试了更改矩阵、修改相机视角观看位置都没什么变化。
可以确认的是,应该是相机旋转的中心不对,并不是场景中心不对,所以鼠标拽托中间还是在旋转,而视角旋转则x和y轴存在偏移。X和y存在偏移就是左右和里外,若是与屏幕有关也是上下和左右,所以这里这么分析推断也不对。
代码全部放出,读者有兴趣可以提供协助,一起探讨。
规避解决方法
直接在相机中修改偏移旋转,然后当作结点加入,是可以解决,而且还不能是从相机,需要addChild进入:

这时候拉伸有问题:

变形了:


终于外挂一个东西解决:


但是鼠标中键按下偏移中心点,会都向右,理论上反向180°的y轴应该向左,但是还是向右,因为是场景偏移,我们规避是对场景下的相机进行旋转,所以实际是移动场景相机了,相机里面的正反对外无效。
官方从相机示例(也存在问题,怀疑是osg3.4.0源码bug)
为了再次深入论证是否代码问题,笔者又用官方的demo实现:
#include <osg/Camera>
#include <osg/Group>
#include <osg/Geode>
#include <osg/ShapeDrawable>
#include <osgViewer/Viewer>
#include <osg/GraphicsContext>
int main(int argc, char *argv[])
{
osg::ref_ptr<osg::Group> pGroup = new osg::Group;
// 绘制盒体(立方体、长方体)
{
osg::ref_ptr<osg::Geode> pGeode = new osg::Geode;
// 创建专门指明精细度的类osg::TessellationHints,并设置对应精细度
osg::ref_ptr<osg::TessellationHints> pHints = new osg::TessellationHints;
pHints->setDetailRatio(0.5);
// 绘制几何类型(几何体)
double width = 5.0f;
// 函数1
pGeode->addDrawable(new osg::ShapeDrawable(new osg::Box(osg::Vec3(0, 0, 0), width), pHints));
// 设置关闭光照:OFF,同时旋转都能看到了(光照关闭,法向量不起作用)
{
osg::StateSet *pStateSet = pGeode->getOrCreateStateSet();
pStateSet->setMode(GL_LIGHTING, osg::StateAttribute::ON);
}
pGroup->addChild(pGeode);
}
osg::GraphicsContext::WindowingSystemInterface * wsi = osg::GraphicsContext::getWindowingSystemInterface();
if(!wsi)
{
return 0;
}
osg::ref_ptr<osg::GraphicsContext::Traits > traits = new osg::GraphicsContext::Traits;
traits->x = 0;
traits->y = 0;
traits->width = 800;
traits->height = 600;
traits->windowDecoration = false;
traits->doubleBuffer = true;
traits->sharedContext = 0;
osg::ref_ptr<osg::GraphicsContext> gc = osg::GraphicsContext::createGraphicsContext(traits);
if(!gc.valid())
{
return 0;
}
osg::ref_ptr<osgViewer::Viewer> viewer = new osgViewer::Viewer;
osg::ref_ptr<osg::Camera> master = new osg::Camera;
master->setGraphicsContext(gc);
master->setViewport(0, 0, 800, 600);
viewer->addSlave(master.get());
osg::ref_ptr<osg::Camera> leftcam = new osg::Camera;
leftcam->setGraphicsContext(gc);
leftcam->setViewport(0, 0, 800 / 2, 600 / 2);
leftcam->setRenderOrder(osg::Camera::POST_RENDER);
viewer->addSlave(leftcam.get(),
osg::Matrix(),
osg::Matrix::rotate(osg::DegreesToRadians(15.0), 0.0, 1.0, 0.0),
true);
viewer->setSceneData(pGroup);
viewer->run();
return 0;
}

改进后相机代码:
osg::ref_ptr<osgViewer::Viewer> viewer = new osgViewer::Viewer;
osg::ref_ptr<osg::Camera> master = new osg::Camera;
master->setGraphicsContext(gc);
master->setViewport(0, 0, 800, 800);
viewer->addSlave(master.get());
{
osg::ref_ptr<osg::Camera> leftcam = new osg::Camera;
leftcam->setGraphicsContext(gc);
leftcam->setViewport(0, 0, 100, 100);
leftcam->setRenderOrder(osg::Camera::POST_RENDER);
viewer->addSlave(leftcam.get(),
osg::Matrix(),
osg::Matrix::rotate(osg::DegreesToRadians(15.0), 1.0, 0.0, 0.0),
true);
}
{
osg::ref_ptr<osg::Camera> leftcam = new osg::Camera;
leftcam->setGraphicsContext(gc);
leftcam->setViewport(100, 0, 100, 100);
leftcam->setRenderOrder(osg::Camera::POST_RENDER);
viewer->addSlave(leftcam.get(),
osg::Matrix(),
osg::Matrix::rotate(osg::DegreesToRadians(15.0), 0.0, 1.0, 0.0),
true);
}
{
osg::ref_ptr<osg::Camera> leftcam = new osg::Camera;
leftcam->setGraphicsContext(gc);
leftcam->setViewport(200, 0, 100, 100);
leftcam->setRenderOrder(osg::Camera::POST_RENDER);
viewer->addSlave(leftcam.get(),
osg::Matrix(),
osg::Matrix::rotate(osg::DegreesToRadians(15.0), 0.0, 0.0, 1.0),
true);
}
{
osg::ref_ptr<osg::Camera> leftcam = new osg::Camera;
leftcam->setGraphicsContext(gc);
leftcam->setViewport(300, 0, 100, 100);
leftcam->setRenderOrder(osg::Camera::POST_RENDER);
viewer->addSlave(leftcam.get(),
osg::Matrix(),
osg::Matrix::rotate(osg::DegreesToRadians(180.0), 0.0, 0.0, 1.0),
true);
}
所以是osg3.4.0的源码这块就有问题:

OSG开发笔记(三十三):同时观察物体不同角度的多视图从相机技术的更多相关文章
- Django开发笔记三
Django开发笔记一 Django开发笔记二 Django开发笔记三 Django开发笔记四 Django开发笔记五 Django开发笔记六 1.基于类的方式重写登录:views.py: from ...
- Django笔记三十三之缓存操作
本文首发于公众号:Hunter后端 原文链接:Django笔记三十三之缓存操作 这一节介绍一下如何在 Django 中使用 redis 做缓存操作. 在 Django 中可以有很多种方式做缓存,比如数 ...
- Java开发笔记(十三)利用关系运算符比较大小
前面在<Java开发笔记(九)赋值运算符及其演化>中提到,Java编程中的等号“=”表示赋值操作,并非数学上的等式涵义.Java通过等式符号“==”表示左右两边相等,对应数学的等号“=”: ...
- .net开发笔记(十三) Winform常用开发模式第一篇
上一篇博客最后我提到“异步编程模型”(APM),之后本来打算整理一下这方面的材料然后总结一下写篇文章与诸位分享,后来在整理的过程中不断的延伸不断地扩展,发现完全偏离了“异步编程”这个概念,前前后后所有 ...
- BizTalk开发系列(三十三)BizTalk之Excel终极解决方案
Excel作为优秀的客户端数据处理程序得到了广泛的应用. 由于其简单又强大的功能在很多公司或个人的数据处理中占用非常重要的位置. 而BizTalk作为微软的SOA主打产品虽然免费提供了很多Adapte ...
- Android UI开发第三十三篇——Navigation Drawer For Android API 7
Creating a Navigation Drawer中使用的Navigation Drawer的android:minSdkVersion="14",现在Android API ...
- 安卓开发笔记(十三):SQLite数据库储存(下)数据的增添,更改,删除,查询
SQLite数据库存储(下) 1.增添数据 对于添加数据的话我们只需要在主活动当中import新的包以及在主活动当中写上适当的代码就可以了,不需要在我们之前创建新的类当中书写新的代码.现在的主活动 ...
- Android笔记三十三.BroadcastReceiver使用
广播是一种广泛运用在应用程序之间传输信息的机制,而BroadcastReceiver是对发送出来的广播进行过滤接收并响应的一类组件. BroadcastReceiver本质上是一种全局监听器. ...
- Java开发学习(三十三)----Maven私服(一)私服简介安装与私服分类
一.私服简介 团队开发现状分析 (1)张三负责ssm_crm的开发,自己写了一个ssm_pojo模块,要想使用直接将ssm_pojo安装到本地仓库即可 (2)李四负责ssm_order的开发,需要用到 ...
- RBL开发笔记三
2014-08-26 20:06:24 今天就是在开发这个EPOLL来处理网络事件 封装较为健壮的EPOLL模型来处理基本的网络IO 1) 超时这个主题先没有弄 在开发EPOLL包括select/po ...
随机推荐
- Mac 右键菜单中出现多个 Edge 版本解决方法
cd "/Applications/Microsoft Edge.app/Contents/Frameworks/Microsoft Edge Framework.framework/Ver ...
- Python自动复制Excel数据:将各行分别重复指定次数
本文介绍基于Python语言,读取Excel表格文件数据,并将其中符合我们特定要求的那一行加以复制指定的次数,而不符合要求的那一行则不复制:并将所得结果保存为新的Excel表格文件的方法. 这 ...
- JVM学习笔记之类装载器-ClassLoader
JVM学习笔记之类装载器-ClassLoader 本文字数:2300,阅读耗时7分钟 JVM体系结构概览 类装载器ClassLoader: 负责加载class文件,class文件在文件开头有特定的文件 ...
- SQL Server – Work with JSON
前言 JSON 是一个很好的格式, array, object 就能表达一个表格了. 如果想保存一些结构格式, 又不想用表格这么大费周章的话, JSON 会是很好选择. 比如我用它来记入 Audit ...
- 常回家看看之house_of_cat
house_of_cat 前言: house of cat 这个利用手法和前面提到的 house of kiwi ,和 house of emma 利用的手法是一个链子,当程序无法通过main函数返回 ...
- MySQL及navicat安装破解
一.Navicat Premium15 下载安装包和破解工具 1.Navicat官网下载地址:http://www.navicat.com.cn/download/navicat-premium 2. ...
- SpringBoot——整合SSM(主要整合MyBatis)
基于SpringBoot整合SSM SpringBoot整合Spring(不存在) SpringBoot整合SpringMVC(不存在) SpringBoot整合MyBatis(主要) Spring整 ...
- QT疑难杂症之QML程序中如何使用文件系统模型QFileSystemModel?
简介 本文介绍了 QML程序中如何使用树状控件TreeView展示QT文件系统模型QFileSystemModel中的数据,并给出了两种实现模式. 目录 QML程序中使用文件系统模型的代码 树状控件自 ...
- 优化 Go 语言数据打包:性能基准测试与分析
优化 Go 语言数据打包:性能基准测试与分析 场景:在局域网内,需要将多个机器网卡上抓到的数据包同步到一个机器上. 原有方案:tcpdump -w 写入文件,然后定时调用 rsync 进行同步. 改造 ...
- C#获取环境变量的值
Environment.GetEnvironmentVariable("Path"); 修改环境变量之后,不能立即生效,需要重启一下VStudio 或重启电脑 : 在 vstudi ...