OSG中相机参数的更改
- #pragma comment(lib, "osg.lib")
- #pragma comment(lib, "osgDB.lib")
- #pragma comment(lib, "osgViewer.lib")
- #include "osgViewer/Viewer"
- #include "osgDB/ReadFile"
- #include "osg/Node"
- #include "osg/Shape"
- #include "osg/Geode"
- #include "osg/ShapeDrawable"
- int main(){
- //初始化视景器
- osg::ref_ptr<osgViewer::Viewer> viewer=new osgViewer::Viewer;
- //初始化场景根节点
- osg::ref_ptr<osg::Group> root=new osg::Group;
- //场景数据
- osg::ref_ptr<osg::Node> node=osgDB::readNodeFile("glider.osg");
- root->addChild(node);
- //将场景数据加入视景器中
- viewer->setSceneData(root);
- //得到相机默认的参数设置
- osg::Vec3d eye,center,up;
- viewer->getCamera()->getViewMatrixAsLookAt(eye,center,up);
- //将相机参数打印出来
- printf("init eye: %f,%f,%f\n",eye._v[0],eye._v[1],eye._v[2]);
- printf("init center: %f,%f,%f\n",center._v[0],center._v[1],center._v[2]);
- printf("init up: %f,%f,%f\n",up._v[0],up._v[1],up._v[2]);
- //修改相机参数
- eye=osg::Vec3d(0.0,-10.0,0.0);
- center=osg::Vec3d(0.0,0.0,0.0);
- up=osg::Vec3d(0.0,0.0,1.0);
- //将参数设置给相机,并立即获取相机参数
- viewer->getCamera()->setViewMatrixAsLookAt(eye,center,up);
- viewer->getCamera()->getViewMatrixAsLookAt(eye,center,up);
- //将参数打印出来
- printf("eye: %f,%f,%f new\n",eye._v[0],eye._v[1],eye._v[2]);
- printf("center: %f,%f,%f new\n",center._v[0],center._v[1],center._v[2]);
- printf("up: %f,%f,%f new\n",up._v[0],up._v[1],up._v[2]);
- //仿真循环,注意不要使用viewer->run(),如果使用这个参数,上面关于相机的所有更改都会无效
- while(!viewer->done())
- {
- viewer->frame();
- }
- return 1;
- }
结果如图:
上面的代码显示初始的相机参数是:
这个参数默认是看不到东西的,因为OSG中默认的坐标系是这个样子的:
这样,如果eye在原点,center在z轴负半轴的情况下是看不到东西,所以如果不自己手动设置参数是看不到的东西的。如下面的代码将设置相机位置的代码注释掉:
- #pragma comment(lib, "osg.lib")
- #pragma comment(lib, "osgDB.lib")
- #pragma comment(lib, "osgViewer.lib")
- #include "osgViewer/Viewer"
- #include "osgDB/ReadFile"
- #include "osg/Node"
- #include "osg/Shape"
- #include "osg/Geode"
- #include "osg/ShapeDrawable"
- int main(){
- //初始化视景器
- osg::ref_ptr<osgViewer::Viewer> viewer=new osgViewer::Viewer;
- //初始化场景根节点
- osg::ref_ptr<osg::Group> root=new osg::Group;
- //场景数据
- osg::ref_ptr<osg::Node> node=osgDB::readNodeFile("glider.osg");
- root->addChild(node);
- //将场景数据加入视景器中
- viewer->setSceneData(root);
- //得到相机默认的参数设置
- osg::Vec3d eye,center,up;
- viewer->getCamera()->getViewMatrixAsLookAt(eye,center,up);
- //将相机参数打印出来
- printf("init eye: %f,%f,%f\n",eye._v[0],eye._v[1],eye._v[2]);
- printf("init center: %f,%f,%f\n",center._v[0],center._v[1],center._v[2]);
- printf("init up: %f,%f,%f\n",up._v[0],up._v[1],up._v[2]);
- ////修改相机参数
- //eye=osg::Vec3d(0.0,-10.0,0.0);
- //center=osg::Vec3d(0.0,0.0,0.0);
- //up=osg::Vec3d(0.0,0.0,1.0);
- ////将参数设置给相机,并立即获取相机参数
- //viewer->getCamera()->setViewMatrixAsLookAt(eye,center,up);
- //viewer->getCamera()->getViewMatrixAsLookAt(eye,center,up);
- ////将参数打印出来
- //printf("eye: %f,%f,%f new\n",eye._v[0],eye._v[1],eye._v[2]);
- //printf("center: %f,%f,%f new\n",center._v[0],center._v[1],center._v[2]);
- //printf("up: %f,%f,%f new\n",up._v[0],up._v[1],up._v[2]);
- //仿真循环,注意不要使用viewer->run(),如果使用这个参数,上面关于相机的所有更改都会无效
- while(!viewer->done())
- {
- viewer->frame();
- }
- return 1;
- }
在这种情况下的效果如下图,什么都看不到:
使用下面这一组测试数据后:
- //修改相机参数
- eye=osg::Vec3d(-10.0,0.0,0.0);
- center=osg::Vec3d(0.0,0.0,0.0);
- up=osg::Vec3d(0.0,0.0,1.0);
即从x轴负半轴看去,看到的应该是飞机的正面,效果如下图:
正常。在这种情况下场景中是没有漫游器的,也不存在默认的漫游器这个说法,如果需要实现场景漫游,自己加个漫游器就可以了。
注意:如果直接使用:
- viewer->run();
怎么修改相机参数都是无效的,
即使加上
- viewer->setCameraManipulator(NULL);
也是一样,因为在
- viewer->run();
这个函数里会对场景中是否存在漫游器进行判断,如果没有漫游器,它会自己添加一个TrackballManipulator漫游器。
run函数的实现如下:
- int Viewer::run()
- {
- if (!getCameraManipulator() && getCamera()->getAllowEventFocus())
- {
- setCameraManipulator(new osgGA::TrackballManipulator());
- }
- setReleaseContextAtEndOfFrameHint(false);
- return ViewerBase::run();
- }
很容易看出问题所在了。
OSG中相机参数的更改的更多相关文章
- 【学习笔记】OSG中相机参数的更改
#pragma comment(lib, "osg.lib") #pragma comment(lib, "osgDB.lib") #pragma commen ...
- osg设置相机参数,包括初始位置
严重注意!!!以下设置必须在viewer.realize();之后,否则不起作用!!!! 设置相机的位置,可以通过CameraManipulator(一般是osgGA::TrackballManipu ...
- Three.js 中 相机的常用参数含义
Three.js 中相机常用的参数有up.position和lookAt. position是指相机所在的位置,将人头比作相机的话,那么position就是人头的中心的位置: up类似于人的脖子可以调 ...
- OSG使用更新回调来更改模型
OSG使用更新回调来更改模型 转自:http://blog.sina.com.cn/s/blog_668aae7801017gl7.html 使用回调类实现对场景图形节点的更新.本节将讲解如何使用回调 ...
- OSG中的示例程序简介
OSG中的示例程序简介 转自:http://www.cnblogs.com/indif/archive/2011/05/13/2045136.html 1.example_osganimate一)演示 ...
- OSG中的示例程序简介(转)
OSG中的示例程序简介 1.example_osganimate一)演示了路径动画的使用 (AnimationPath.AnimationPathCallback),路径动画回调可以作用在Camera ...
- osg中的视点控制
osg中的视点控制 osg的视点控制基类是CameraManipulator, 它是一个虚基类, 有用的方法都跟home有关. 在这个类里面有三个重要的成员变量: osg::Vec3d _homeEy ...
- ArcEngine中License权限等级更改的问题
曾经认为自己对于ArcGIS 开发许可问题比较理解了,并小结在<ArcEngine10.x开发的许可问题>中. 01.权限问题 今天在调用GP时失败(插值式开发,使用的是他人框架),因为需 ...
- Android AVD创建及设置中各参数详解
设置AVD时有些参数比较模糊,特地找了篇文章,大家参考下! 本文根据如下的模拟器安装做一些解释: Name:自定义虚拟的名称,不能有空格或者其他非法字符,否则不能创建,即Creat AVD不能高亮点击 ...
随机推荐
- android信号强度
android定义了2种信号单位:dBm(1毫瓦的分贝数)和asu(alone signal unit 独立信号单元). 它们之间的关系是:dBm =-113+2*asu,这是google给andro ...
- 【转】Xcode7真机调试iOS应用程序
原文网址:http://i.cnblogs.com/EditPosts.aspx?opt=1 近日苹果发布的新的Xcode7带来了许多特性,比如:swift语言比以前运行更快.功能更强.代码具有更高的 ...
- 【转】蓝牙4.0BLE cc2540 usb-dongle的 SmartRF Packet Sniffer 抓取数据方法--不错
原文网址:http://blog.csdn.net/mzy202/article/details/32408223 蓝牙4.0BLE cc2540 usb-dongle的 SmartRF Packet ...
- append
之前一次使用append就是插入不成功, 这次好了,可以了 原来是js和javascript不能混了.
- Kafka Topic Partition Replica Assignment实现原理及资源隔离方案
本文共分为三个部分: Kafka Topic创建方式 Kafka Topic Partitions Assignment实现原理 Kafka资源隔离方案 1. Kafka Topic创建方式 ...
- unicode随笔小计
科普字符集: ascii:一个字节,占8位,(0000 0000 - 1111 1111) 如果只是英语那就没什么问题. 后来,不同的语言有了编码诞生.为了统一,出现一个大集合.便有了. unicod ...
- iOS类的继承关系
- openStack使用宿主机监控
10个vm 平稳运行 top 数值
- JavaScript函数柯里化的一些思考
1. 高阶函数的坑 在学习柯里化之前,我们首先来看下面一段代码: var f1 = function(x){ return f(x); }; f1(x); 很多同学都能看出来,这些写是非常傻的,因为函 ...
- hdoj 2141 Can you find it?【二分查找+暴力】
Can you find it? Time Limit: 10000/3000 MS (Java/Others) Memory Limit: 32768/10000 K (Java/Others ...