国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

vtk在Java2中的使用

瀏覽:68日期:2024-06-20 15:37:11
內容: 來自:CSDN 作者:ithinkuml VTK(Visualization ToolKit)是一個開放源碼、自由獲取的軟件系統,全世界的數以千計的研究人員和開發人員用它來進行3D計算機圖形,圖像處理,可視化。VTK包含一個c++類庫,眾多的翻譯接口層,包括Tcl/Tk,Java,Python。 Visualization Toolkit 是一個用于可視化應用程序構造與運行的支撐環境,它是在三維函數庫OpenGL 的基礎上采用面向對象的設計方法發展起來的,它將我們在可視化開發過程中會經常遇到的細節屏蔽起來,并將一些常用的算法封裝起來。比如Visualization Toolkit 將我們在表面重建中比較常見的Marching Cubes 算法封裝起來,以類的形式給我們以支持,這樣我們在對三維規則點陣數據進行表面重建時就不必再重復編寫MarchingCubes 算法的代碼,而直接使用Visualization Toolkit 中已經提供的vtkMarchingCubes 類 Visualization Toolkit 是給從事可視化應用程序開發工作的研究人員提供直接的技術支持的一個強大的可視化開發工具,它以用戶使用的方便性和靈活性為主要原則,具有如下的特點:1) 具有強大的三維圖形功能。Visualization Toolkit 既支持基于體素Voxel-basedrendering 的體繪制Volume Rendering又保留了傳統的面繪制,從而在極大的改善可視化效果的同時又可以充分利用現有的圖形庫和圖形硬件2) Visualization Toolkit 的體系結構使其具有非常好的流streaming 和高速緩存caching 的能力,在處理大量的數據時不必考慮內存資源的限制3) Visualization Toolkit 能夠更好的支持基于網絡的工具比如Java 和VRML 隨著Web 和Internet 技術的發展Visualization Toolkit 有著很好的發展前景4) 能夠支持多種著色如OpenGL 等5) Visualization Toolkit 具有設備無關性使其代碼具有良好的可移植性6) Visualization Toolkit 中定義了許多宏,這些宏極大的簡化了編程工作并且加強了一致的對象行為7) Visualization Toolkit 具有更豐富的數據類型,支持對多種數據類型進行處理8) 既可以工作于Windows 操作系統又可以工作于Unix 操作系統極大的方便了用戶 下面介紹一下VTK在JDK1.4.1_02下的使用方法,1) 從vtk的網站(http://www.vtk.org/)上下載最新的軟件包,版本是4.2。然后把它安裝到C:vtk42目錄下2) 從Sun官方下載鏈接,版本1.4.1_02,然后安裝到C:j2sdk1.4.1_02上3) 設置環境變量,系統->高級->環境變量->path,設置為C:j2sdk1.4.1_02bin;C:ProgramFilesJavaj2re1.4.1_02bin;C:j2sdk1.4.1_02jrebin;C:vtk42bin4) 拷貝C:vtk42bin*java.dll到系統目錄5) 編譯,運行,為了方便起見,拷貝C:vtk42ExamplesTutorialStep1Java目錄下的Cone.java到d盤,當前目錄為d盤 D:>javac -classpath c:vtk42binvtk.jar Cone.javaD:>java -classpath .;c:vtk42binvtk.jar Cone源碼如下://// This example creates a polygonal model of a cone, and then renders it to// the screen. It will rotate the cone 360 degrees and then exit. The basic// setup of source -> mapper -> actor -> renderer -> renderwindow is // typical of most VTK programs.// // We import the vtk wrapped classes first.import vtk.*; // Then we define our class.public class Cone { // In the static contructor we load in the native code. // The libraries must be in your path to work. static { System.loadLibrary('vtkCommonJava'); System.loadLibrary('vtkFilteringJava'); System.loadLibrary('vtkIOJava'); System.loadLibrary('vtkImagingJava'); System.loadLibrary('vtkGraphicsJava'); System.loadLibrary('vtkRenderingJava'); } // now the main program public static void main (String []args) { // // Next we create an instance of vtkConeSource and set some of its // properties. The instance of vtkConeSource 'cone' is part of a // visualization pipeline (it is a source process object); it produces data // (output type is vtkPolyData) which other filters may process. // vtkConeSource cone = new vtkConeSource(); cone.SetHeight( 3.0 ); cone.SetRadius( 1.0 ); cone.SetResolution( 10 ); // // In this example we terminate the pipeline with a mapper process object. // (Intermediate filters such as vtkShrinkPolyData could be inserted in // between the source and the mapper.) We create an instance of // vtkPolyDataMapper to map the polygonal data into graphics primitives. We // connect the output of the cone souece to the input of this mapper. // vtkPolyDataMapper coneMapper = new vtkPolyDataMapper(); coneMapper.SetInput( cone.GetOutput() ); // // Create an actor to represent the cone. The actor orchestrates rendering // of the mapper's graphics primitives. An actor also refers to properties // via a vtkProperty instance, and includes an internal transformation // matrix. We set this actor's mapper to be coneMapper which we created // above. // vtkActor coneActor = new vtkActor(); coneActor.SetMapper( coneMapper ); // // Create the Renderer and assign actors to it. A renderer is like a // viewport. It is part or all of a window on the screen and it is // responsible for drawing the actors it has. We also set the background // color here // vtkRenderer ren1 = new vtkRenderer(); ren1.AddActor( coneActor ); ren1.SetBackground( 0.1, 0.2, 0.4 ); // // Finally we create the render window which will show up on the screen // We put our renderer into the render window using AddRenderer. We also // set the size to be 300 pixels by 300 // vtkRenderWindow renWin = new vtkRenderWindow(); renWin.AddRenderer( ren1 ); renWin.SetSize( 300, 300 ); // // now we loop over 360 degreeees and render the cone each time // int i; for (i = 0; i < 360; ++i) { // render the image renWin.Render(); // rotate the active camera by one degree ren1.GetActiveCamera().Azimuth( 1 ); } } } Java, java, J2SE, j2se, J2EE, j2ee, J2ME, j2me, ejb, ejb3, JBOSS, jboss, spring, hibernate, jdo, struts, webwork, ajax, AJAX, mysql, MySQL, Oracle, Weblogic, Websphere, scjp, scjd
標簽: Java
相關文章:
主站蜘蛛池模板: 成人亚洲网站 | 国产一区二区三区免费在线视频 | 亚洲视频手机在线观看 | 日本wwxx色视频 | 欧美日韩视频精品一区二区 | 亚洲欧洲日产国产 最新 | 三级黄色高清视频 | 日韩一区二区三区在线视频 | 亚洲一区浅井舞香在线播放 | 久久成人免费网站 | 成人免费在线视频网 | 91精品乱码一区二区三区 | 欧美一线视频 | 亚洲免费在线看 | 成人久久伊人精品伊人 | 中文精品久久久久国产不卡 | 一区视频在线播放 | 成人黄页网站 | 国产成人精品视频午夜 | 日本三级香港三级人妇gg在线 | 综合 欧美 亚洲日本 | 中文精品视频一区二区在线观看 | 一级美女黄色片 | 成人免费网站视频www | 国产精品久久一区一区 | 黄黄的网站在线观看 | 成 人 在 线 免费 8888 www | 日韩欧美亚洲视频 | 91亚洲精品一区二区在线观看 | 最新国产大片高清视频 | 成人精品一区久久久久 | 精品视自拍视频在线观看 | 亚洲精品天堂在线观看 | 黄视频欧美 | 欧美另类69xxxxx视频 | 一级毛片成人午夜 | pgone太大了兽王免费视频 | 欧美一区不卡二区不卡三区 | 日日摸夜夜搂人人要 | 亚洲精品国产综合久久一线 | 97在线视频免费公开观看 |