日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 综合教程 >内容正文

综合教程

Learning OSG programing---Multi Camera in one window 在单窗口中创建多相机

發布時間:2023/12/15 综合教程 39 生活家
生活随笔 收集整理的這篇文章主要介紹了 Learning OSG programing---Multi Camera in one window 在单窗口中创建多相机 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

  在學習OSG提供的例子osgCamera中,由于例子很長,涉及很多細節,考慮將其分解為幾個小例子。本文介紹實現在一個窗口中添加多個相機的功能。

  此函數接受一個Viewer引用類型參數,設置圖形上下文的特征變量traits,并由它建立圖形上下文。根據需要差創建的相機數量,循環創建相機變量,并將其添加到觀察器變量中,作為從相機。每次創建相機,都需要獲取當前圖形上下文,并設置相機的起點(左下角)坐標和相機的寬度與高度。相機間的區別僅在于相機起點的不同。完整的程序代碼如下。

void singleWindowMultipleCameras(osgViewer::Viewer& viewer)
{
    osg::GraphicsContext::WindowingSystemInterface* wsi = osg::GraphicsContext::getWindowingSystemInterface();
    if (!wsi)
    {   
        osg::notify(osg::NOTICE)<<"Error, no WindowSystemInterface available, cannot create windows."<<std::endl;
        return;
    }

    unsigned int width, height;
    osg::GraphicsContext::ScreenIdentifier main_screen_id;

    main_screen_id.readDISPLAY();
    main_screen_id.setUndefinedScreenDetailsToDefaultScreen();
    wsi->getScreenResolution(main_screen_id, width, height);

    osg::ref_ptr<osg::GraphicsContext::Traits> traits = new osg::GraphicsContext::Traits;
    traits->x = 0;
    traits->y = 0;
    traits->width = width;
    traits->height = height;
    traits->windowDecoration = true;
    traits->doubleBuffer = true;
    traits->sharedContext = 0;
    traits->readDISPLAY();
    traits->setUndefinedScreenDetailsToDefaultScreen();

    osg::ref_ptr<osg::GraphicsContext> gc = osg::GraphicsContext::createGraphicsContext(traits.get());
    if (gc.valid())
    {
        osg::notify(osg::INFO)<<"  GraphicsWindow has been created successfully."<<std::endl;

        // need to ensure that the window is cleared make sure that the complete window is set the correct colour
        // rather than just the parts of the window that are under the camera's viewports
        gc->setClearColor(osg::Vec4f(0.2f,0.2f,0.6f,1.0f));
        gc->setClearMask(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
    }
    else
    {
        osg::notify(osg::NOTICE)<<"  GraphicsWindow has not been created successfully."<<std::endl;
    }

    unsigned int numCameras = 3;
    double aspectRatioScale = 1.0;///(double)numCameras;
    for(unsigned int i=0; i<numCameras;++i)
    {
        osg::ref_ptr<osg::Camera> camera = new osg::Camera;
        camera->setGraphicsContext(gc.get());
        camera->setViewport(new osg::Viewport((i*width)/numCameras,(i*height)/numCameras, width/numCameras, height/numCameras));
        GLenum buffer = traits->doubleBuffer ? GL_BACK : GL_FRONT;
        camera->setDrawBuffer(buffer);
        camera->setReadBuffer(buffer);

        viewer.addSlave(camera.get(), osg::Matrixd(), osg::Matrixd::scale(aspectRatioScale,1.0,1.0));
    }
}

  之后在主函數中調用創建多相機函數,為觀察器添加從相機,并向觀察器中加入模型,進行顯示。主函數代碼如下:

int main(){
    osgViewer::Viewer viewer;
    singleWindowMultipleCameras(viewer);
    viewer.setSceneData(osgDB::readRefNodeFile("cow.osg"));
    return viewer.run();
}

  運行程序,可顯示多相機效果,如下所示:

  可以更改singleWindowMultipleCameras函數中的numCameras變量,創建更多的從相機。

  創建多相機的關鍵是相機視點的設置和向觀察器中添加從相機。而程序最開始的創建窗口系統接口,圖形上下文,圖形上下文特征以及相機的緩沖設置,則是一些輔助性工作。

總結

以上是生活随笔為你收集整理的Learning OSG programing---Multi Camera in one window 在单窗口中创建多相机的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。