1 概述
   ParaView是一个开源的,跨平台的数据处理和可视化程序。ParaView用户可以迅速的建立起可视化环境利用定量或者是定性的手段去分析数据。利用它的批量处理能力可以在三维或者是在报表中交互进行“数据挖掘”(这里不知道翻译的对不对)。
ParaView开发使用分布式的内存计算资源来对非常大的数据集进行分析。它可以在超级计算机上运行万亿次的数据集以及笔记本电脑更小的数据分析。

2 可视化应用
   ParaView基本的交互式可视化探索的过程证明,包括数据加载,数据处理,参数调整和数据交互。如切割,剪裁,轮廓,探测和glyphing的关键概念是在本课程的讨论。本课程提供了生成处理的数据的形式输出的例子,呈现的图像和动画。

3 特点
下面总结了ParaView的一些重要的特点。

3.1可视化功能:
  1  处理结构(匀速直线,非匀速直线,曲线网格),非结构化的,多边形,图像,多块和AMR的数据类型。

2  所有处理操作(过滤器)产生的数据集。这允许用户进一步处理的每一个操作或产生一个数据文件。例如,用户可以提取一个切割面,减少这种掩蔽表面上的点的数量和字形(即向量箭头)

3  向量可以检查区域运用图形(箭头,锥、线、球体和各种各样的二维图形)转化成点的数据。符号可以按标量、矢量部件或矢量大小和可以使用一个矢量场导向。

4  等高线 和等值面可以从所有数据类型中使用标量或者是矢量分量进行提取。任何其他变量的结果,可着色,或作进一步处理。如果可能的话,结构化数据的等高线/等值面提取与使用高效的数据布局的快速,高效的算法。

5  可以提取一个数据集的分区域,进行切割或裁剪用任意平面(所有数据类型),指定的阈值标准,排除细胞(所有的数据类型)和/或指定VOI(感兴趣的体域-只限结构化数据类型)。

6  可以生成流线。结果可以显示为点、线、管、带等,可以通过一些过滤器处理。粒子路径可以被提取。

7  数据集中的点可以通过用标量(一个用户定义的位移矢量)被扭曲(替换),或与向量(非线性直线网格不可用)。

8  与阵列的计算器,可以使用现有的点或细胞领域阵列计算出新的变数,。众多的标量和矢量运算的支持。

9  可以利用VTK、NumPy|SciPy和其他的Python模块的可编程滤波进行高级数据处理。

10  利用强大的选择机制和电子表格科技进行数据的定量检测:

11  这种选择机制允许用户通道拾取一个点或者选择一个矩形区域去选择一个重要的数据区域,即定量选择机制

12  数据表浏览(spreadsheet view)可以允许用户选择整个数据集合或者选择一块区域

13  ParaView默认的提供了许多其他数据源接口和过滤,任何VTK过滤(filter)可以通过提供减慢的XML描述添加(VTK提供了上百个算法,可参考VTK文档)

3.2 输入和输出格式
 
  1  VTK(已有的或将来添加的,包括并行的、二进制、ASCII都可以进行读写操作)
    Supports a variety of file formats including:
         VTK (new and legacy, all types including parallel, ascii and binary, can read and written).
    EnSight 6 and EnSight Gold (all types including parallel, ascii and binary; multiple parts are supported -each part is loaded separately and can be processed individually) (read only).
    Plot3D (ascii and binary, C or Fortran; support for multiple blocks, I blanking is currently partially supported) (read only).
    Various polygonal file formats including STL and BYU (by default, read only, other VTK writers can be added by writing XML description).
    Many other file formats are supported. See ParaView Readers and ParaView Writers for a full list.
    Any VTK source or filter can be added by providing a simple XML description (VTK provides many readers, see VTK documentation for a complete list).
    Since ParaView is open source, the user can easily provide her own readers and writers.

2 User Interaction:
         Intuitive and flexible interface based on the Qt application framework.
    Allows changing the parameters of many filters by directly interacting with the 3D view using 3D widgets (manipulators). For example, the user can manipulate the seed line of a streamline filter by clicking on a control point and dragging the line to the new location.
    Compact user interface design. By default, all important tools are located in the main window. This eliminates the need for large number of windows which are often difficult to locate on a cluttered desktop. It is also possible to shear off inspectors from the main window.

Maintains interactive frame rates even when working with large data through the use of level-of-detail (LOD) models. The user determines the threshold (number of points) beyond which a reduced version of the model is displayed during interaction (the size of the model can also be adjusted). Once the interaction is over, the large model is rendered.

3. Large Data and Distributed Computing:
        Runs parallel on distributed and shared memory systems using MPI. These include workstation clusters, visualization systems, large servers, supercomputers, etc.
    The user interface is run on separate computer using the client/server mode.
    ParaView uses the data parallel model in which the data is broken into pieces to be processed by different processes. Most of the visualization algorithms function without any change when running in parallel. ParaView also supports ghost levels used to produce piece invariant results. Ghost levels are points/cells shared between processes and are used by algorithms which require neighborhood information.
    Supports both distributed rendering (where the results are rendered on each node and composited later using the depth buffer), local rendering (where the resulting polygons are collected on one node and rendered locally) and a combination of both (for example, the level-of-detail models can be rendered locally whereas the full model is rendered in a distributed manner). This provides scalable rendering for large data without sacrificing performance when working with smaller data.
    Distributed rendering and tiled-display is done using Sandia's Ice-T library.

4. Scripting and Extensibility:
·        ParaView is fully scriptable using thesimple but powerful Python language. ParaView's data engine, called servermanager, is fully accessible through the Python interface. All changes made tothe engine through Python are
     automatically reflected to the user interface.
     ParaView can be run as a batch applicationusing the Python interface. We have successfully run ParaView on supercomputersinclude IBM Blue Gene and Cray Xt3 using the batch mode.
     Distributed data processing can be done inPython using the Python Programmable Filter. This filter functions seamlesslywith NumPy and SciPy.
     Additional modules can be added by eitherwriting an XML description of the interface or by writing C++ classes. The XMLinterface allows users/developers to add their own VTK filters to ParaViewwithout writing any special code and/or re-compiling. See Plug-in How To and Extending ParaView at Compile Time for details.

ParaView整体介绍相关推荐

  1. Hadoop学习之整体介绍及环境搭建

    Hadoop学习之整体介绍及环境搭建 1 大数据概述 1.1 什么是大数据 数据(data)是事实或观察的结果,是对客观事物的逻辑归纳,是用于表示客观事物的未经加 工的的原始素材. 大数据:传统处理方 ...

  2. FusionSphere整体介绍

    FusionSphere整体介绍 分类专栏: 云计算 版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明. 本文链接:https://blog.cs ...

  3. java 多站点_Java 并发编程整体介绍 | 内含超多干货

    前段时间一直在学习多线程相关的知识,目前也算有了一个整体的认识,今天呢,主要从整体介绍一下,只谈造火箭,拧螺丝这种细节还需要自己深究. 首先是操作系统级别对于多线程的支持,由 CPU 的多级缓存.缓存 ...

  4. 瑞吉外卖01-项目整体介绍

    瑞吉外卖-项目整体介绍 前言 软件开发整体介绍(了解) 软件开发流程 第1阶段: 需求分析 第2阶段: 设计 第3阶段: 编码 第4阶段: 测试 第5阶段: 上线运维 角色分工 软件环境 开发环境(d ...

  5. 软件架构--架构设计的整体介绍

    软件架构--架构设计的整体介绍 1 介绍 1.1 概述 1.2 复杂系统 1.3 架构目标 1.4 架构过程(引用<系统架构:复杂系统的产品设计与开发>) 1.5 系统预测方式 经验 实验 ...

  6. Reggie外卖项目 —— 项目开发整体介绍

    01.项目开发整体介绍 1.1.项目介绍 1.本项目(瑞吉外卖)是专门为餐饮企业(餐厅.饭店)定制的一款软件产品,包括系统管理后台和移动端应用两部分. 系统管理后台主要提供给餐饮企业内部员工使用,可以 ...

  7. 模糊测试工具Sulley开发指南(3)——整体介绍

    我们开始来讲一些Sulley里面的整体介绍,方便我们能系统地了解Sulley的架构,了解Fuzzing的思路,最后能生成py文件来具体运行fuzzing.这章主要是整体印象,下一章开始会讲具体的模块以 ...

  8. 在线教育项目_整体介绍

    在线教育项目_整体介绍 一.项目的背景 二.商业模式 2.1 B2C(该项目的模式) 2.2 B2B2C(商家到商家到用户) 3.功能模块 3.1 系统后台 3.2 系统前台 4.项目使用到的技术 4 ...

  9. 融资租赁业务系统整体介绍(一)

    融资租赁业务系统整体介绍1

最新文章

  1. 安全研究剖析:******方式演示
  2. QT5完成一个数据实时显示控制的Demo
  3. 程序员修神之路--缓存架构不够好,系统容易瘫痪
  4. 55 FI配置-财务会计-固定资产-主数据-定义4-字符评估组
  5. jquery版相片墙(鼠标控制图片聚合和散开)
  6. 又是low爆的借钱广告:被批三观扭曲,京东金融致歉
  7. 团队作业——微博网站小调查
  8. 点击微信网页的a标签直接跳转到淘宝APP打开怎么实现的?附:动图演示效果
  9. html5输入框点击后消除高光,请问(VR渲染)光域网的灯光怎么把“高光”去掉?...
  10. linux centos用户修改密码,centos怎么修改用户密码
  11. Linux系统内核升级
  12. iOS逆向之微信和支付宝修改步数 简洁无脑版
  13. PS计算机字体Q,PS q萌字体教程
  14. 随机搜索 /爬山法/模拟退火/遗传算法
  15. 电大本科计算机科学与技术,中央电大开放本科计算机科学与技术专业微计算机技术试题_0701...
  16. 计算机组成原理第二版第6章ppt,计算机组成原理第6章简.ppt
  17. ios截屏功能html,滚动截屏APP - iPhone上的长截图工具
  18. EOS智能合约开发(四)EOS智能合约部署及调试(附编程示例)
  19. 图神经网络和常见的神经网络的区别
  20. 常见的一些C#开源框架或者开源项目

热门文章

  1. 元宇宙:从数字孪生到数字共生
  2. 关于pytorch配置中遇到的问题1(YOLOV5)
  3. 深夜的士(2019/7/19)
  4. 计算机网络 第3章 作业1
  5. 小分子药物logp预测/计算
  6. 最全!互联网大厂的薪资和职级一览
  7. 【VUE+Mapbox】mapbox地图在vue中展示所遇问题解决
  8. ENVI基于Landsat影像构建郑州市2000-2019年遥感生态指数RSEI
  9. 16、注册中心-consul
  10. 如何快速学习自动化测试