1. #include <cuda_runtime.h>
  2. #include <osg/Image>
  3. const int DIM = ;
  4.  
  5. typedef struct cuComplex
  6. {
  7. float r;
  8. float i;
  9. __device__ cuComplex(float a, float b)
  10. :r(a)
  11. ,i(b)
  12. {
  13. }
  14.  
  15. __device__ float magnitude2(void)
  16. {
  17. return r * r + i * i;
  18. }
  19.  
  20. __device__ cuComplex operator * (const cuComplex & a)
  21. {
  22. return cuComplex(r * a.r - i * a.i, i * a.r + r * a.i);
  23. }
  24.  
  25. __device__ cuComplex operator + (const cuComplex & a)
  26. {
  27. return cuComplex(r + a.r, i + a.i);
  28. }
  29. };
  30.  
  31. __device__ int julia(int x, int y)
  32. {
  33. const float scale = 1.5;
  34. float jx = scale * (float)(DIM/ - x)/(DIM/);
  35. float jy = scale * (float)(DIM/ -y)/(DIM/);
  36. cuComplex c(-0.8, 0.156);
  37. cuComplex a(jx, jy);
  38.  
  39. for (int i = ; i < ; ++i)
  40. {
  41. a = a * a + c;
  42. if (a.magnitude2() > )
  43. return ;
  44. }
  45. return ;
  46. }
  47.  
  48. __global__ void kernel(unsigned char * ptr)
  49. {
  50. int x = blockIdx.x;
  51. int y = blockIdx.y;
  52. int offset = x + y * gridDim.x;
  53. int juliaValue = julia(x, y);
  54. ptr[offset * + ] = * juliaValue;
  55. ptr[offset * + ] = ;
  56. ptr[offset * + ] = ;
  57. ptr[offset * + ] = ;
  58.  
  59. }
  60.  
  61. extern "C" void SetUp(osg::Image * image)
  62. {
  63. unsigned char * dev_bitmap;
  64. cudaMalloc((void **)&dev_bitmap, DIM * DIM * );
  65. dim3 grid(DIM, DIM);
  66. kernel<<<grid, >>>(dev_bitmap);
  67. cudaMemcpy(image->data(), dev_bitmap, DIM * DIM * , cudaMemcpyDeviceToHost);
  68. cudaFree(dev_bitmap);
  69. }
  1. #include <osgViewer/Viewer>
  2. #include <osg/Texture2D>
  3. #include <osg/Image>
  4. #include <osgDB/WriteFile>
  5. #include <osgViewer/ViewerEventHandlers>
  6. #pragma comment(lib, "osgViewerd.lib")
  7. #pragma comment(lib, "osgDBd.lib")
  8. #pragma comment(lib, "osgd.lib")
  9. #pragma comment(lib, "osgGAd.lib")
  10. const int DIM = ;
  11.  
  12. osg::ref_ptr<osg::Geode> CreateQuad()
  13. {
  14. osg::ref_ptr<osg::Geode> geode = new osg::Geode;
  15. osg::ref_ptr<osg::Geometry> geometry = new osg::Geometry;
  16. osg::ref_ptr<osg::Vec3Array> vArray = new osg::Vec3Array;
  17. osg::ref_ptr<osg::Vec2Array> tArray = new osg::Vec2Array;
  18. osg::ref_ptr<osg::Vec3Array> nArray = new osg::Vec3Array;
  19. vArray->push_back(osg::Vec3(-1.0, 0.0, -1.0));
  20. vArray->push_back(osg::Vec3(1.0, 0.0, -1.0));
  21. vArray->push_back(osg::Vec3(1.0, 0.0, 1.0));
  22. vArray->push_back(osg::Vec3(-1.0, 0.0, 1.0));
  23.  
  24. tArray->push_back(osg::Vec2(0.0, 0.0));
  25. tArray->push_back(osg::Vec2(1.0, 0.0));
  26. tArray->push_back(osg::Vec2(1.0, 1.0));
  27. tArray->push_back(osg::Vec2(0.0, 1.0));
  28.  
  29. nArray->push_back(osg::Vec3(0.0, 1.0, 0.0));
  30. geometry->setVertexArray(vArray.get());
  31. geometry->setTexCoordArray(, tArray.get());
  32. geometry->setNormalArray(nArray.get());
  33. geometry->setNormalBinding(osg::Geometry::BIND_OVERALL);
  34. geometry->addPrimitiveSet(new osg::DrawArrays(osg::PrimitiveSet::QUADS, , vArray->size()));
  35. geode->addDrawable(geometry.get());
  36. return geode.get();
  37. }
  38.  
  39. osg::ref_ptr<osg::StateSet> CreateStateSet(osg::Image * image)
  40. {
  41. osg::ref_ptr<osg::StateSet> stateSet = new osg::StateSet;
  42.  
  43. osg::ref_ptr<osg::Texture2D> texture = new osg::Texture2D();
  44. texture->setImage(image);
  45. stateSet->setTextureAttributeAndModes(, texture.get(), osg::StateAttribute::ON);
  46. return stateSet.get();
  47. }
  48. extern "C" void SetUp(osg::Image * image);
  49. int main()
  50. {
  51. osg::ref_ptr<osgViewer::Viewer> viewer = new osgViewer::Viewer;
  52.  
  53. osg::ref_ptr<osg::Image> image = new osg::Image;
  54. image->allocateImage(DIM, DIM, , GL_RGBA, GL_UNSIGNED_BYTE);
  55. SetUp(image.get());
  56.  
  57. osg::ref_ptr<osg::StateSet> stateSet = CreateStateSet(image.get());
  58. osg::ref_ptr<osg::Geode> quad = CreateQuad();
  59. quad->setStateSet(stateSet.get());
  60. viewer->setSceneData(quad.get());
  61. viewer->getCamera()->getOrCreateStateSet()->setMode(GL_LIGHTING, osg::StateAttribute::OFF);
  62. viewer->addEventHandler(new osgViewer::StatsHandler);
  63. viewer->setUpViewInWindow(, , , );
  64. viewer->run();
  65. return ;
  66. }

朱丽叶—Cuda+OSG的更多相关文章

  1. osg + cuda

    #include <osg/Notify> #include <osgViewer/Viewer> #include <osgCompute/Memory> #in ...

  2. CUDA[2] Hello,World

    Section 0:Hello,World 这次我们亲自尝试一下如何用粗(CU)大(DA)写程序 CUDA最新版本是7.5,然而即使是最新版本也不兼容VS2015 ...推荐使用VS2012 进入VS ...

  3. CUDA[1] Introductory

    Section 0 :Induction of CUDA CUDA是啥?CUDA®: A General-Purpose Parallel Computing Platform and Program ...

  4. Couldn't open CUDA library cublas64_80.dll etc. tensorflow-gpu on windows

    I c:\tf_jenkins\home\workspace\release-win\device\gpu\os\windows\tensorflow\stream_executor\dso_load ...

  5. OSG计时器与时间戳

    static osg::Timer* sendMsgTimer = new osg::Timer; if (sendMsgTimer->time_m()>100)//100ms {// d ...

  6. ubuntu 16.04 + N驱动安装 +CUDA+Qt5 + opencv

    Nvidia driver installation(after download XX.run installation file) 1. ctrl+Alt+F1   //go to virtual ...

  7. OSG消息机制之消息分析

    OSG消息接收在头文件有各种事件的相关参数

  8. OSG消息机制之事件处理概述

    OSG的消息机制包括好多个头文件预定义及多个类. 首先,消息接收相关的类当属osgGA::GUIEventHandler和osgGA::GUIEventAdapter这两个类了.前者处理OSG程序与用 ...

  9. OSG 3D场景渲染编程概述

    OSG是Open Scene Graphic的缩写,是基于C++平台的使用OpenGL技术的开源3D场景开发. vs环境安装或者是在Ubuntu中环境的安装网上教程很多,都是大同小异的,认真操作容易成 ...

随机推荐

  1. solr最佳实践

    管理页面 页面地址:http://{ip}:{port}/solr/#/ 管理页面的data-import页可以手动重建索引,configuration指定了数据源,重建索引也可以通过http请求触发 ...

  2. Ansible安装配置

    Ansible工具的安装与配置 Ansible基于SSH,不需要在远程端安装任何软件,只需要在管理端安装ansible及其组件即可. Ansible使用前提是已配置ssh密钥免登陆. 一.安装组件: ...

  3. PopupWindow 的使用

    //contentView : 气泡显示的内容 //width ,height : 宽高 PopupWindow popupWindow = new PopupWindow(contentView, ...

  4. Minicom配置及使用详解

    因为现在电脑基本不配备串行接口,所以,usb转串口成为硬件调试时的必然选择.目前知道的,PL2303的驱动是有的,在dev下的名称是ttyUSB*. minicom,tkterm都是linux下应用比 ...

  5. [MFC] 编辑框 EditControl 输入数字范围限制

    在MFC中,项目需要对编辑框EditControl的数字输入范围进行限制,主要有以下实现方式,各有优缺点,个人推荐第三种. 第一种:添加变量 为编辑框添加int.float变量的时候,可以填写最大值与 ...

  6. 闹心的python编码

    说起编码,真是十分忧伤.每次听课都是绕了半天把自己搞糊涂.今天特意来整理一下思路. What 编码!? 基本概念很简单.首先,我们从一段信息即消息说起,消息以人类可以理解.易懂的表示存在.我打算将这种 ...

  7. CSS3之响应式布局

    在没有C3的时候,响应式布局是通过js来实现的. 开始研究响应式web设计,CSS3 Media Queries是入门. Media Queries,其作用就是允许添加表达式用以确定媒体的环境情况,以 ...

  8. HDU 5869 Different GCD Subarray Query

    离线操作,树状数组,$RMQ$. 这个题的本质和$HDU$ $3333$是一样的,$HDU$ $3333$要求计算区间内不同的数字有几个. 这题稍微变了一下,相当于原来扫描到$i$的之后是更新$a[i ...

  9. CodeForces 706E Working routine

    十字链表. 开一个十字链表,矩阵中每一格作为一个节点,记录五个量: $s[i].L$:$i$节点左边的节点编号 $s[i].R$:$i$节点右边的节点编号 $s[i].U$:$i$节点上面的节点编号 ...

  10. liunx环境C、C++代码编译链接中间代码主要流程

    一个比较小的问题,可以直接看帖子: http://blog.csdn.net/gengyichao/article/details/6544266