3D强大三维SDK Open Inventor 2023.2 Crack

这篇具有很好参考价值的文章主要介绍了3D强大三维SDK Open Inventor 2023.2 Crack。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。

Release notes Open Inventor 2023.2 RC

Minor version published in July 2023.

Enhancements and new features included in this version:

  • VolumeViz
    • Arbitrary tile size
    • Progress bar on slices
  • New platforms
    • Open Inventor on .NET6
    • Visual Studio 2022 support
  • RemoteViz
    • Front & back end rendering
  • MeshVizXLM
    • Color mapping improved in MeshViz XLM
  • Core
    • Minor API changes
    • Reference manual update
  • Life cycle events
    • Dropped platforms
    • ImageViz becomes deprecated
    • Misc API and feature depreciation

Open Inventor 2023.2 RC includes all fixes available in Open Inventor 2023.1


VolumeViz

Arbitrary tile size

So far a volume data is tiled to allow out-of-core and multiresolution rendering. Each tile had to have the same dimensions in x, y, and they had to be a power of 2, e.g. (128,128,128) or (512,512,512). As of 2023.2 it is possible to define the tile dimensions with 3 different values in x, y, and z.

The main benefit of this new feature is the ability to specify tile dimensions equal to the volume dimensions. In that case, the rendering is performed using only the full resolution of the volume without multiresolution. However, this option needs that the volume fits entirely in the available CPU and GPU memory (see the fields maxMainMemory and maxTexMemory in the class SoLDMResourceParameters). Otherwise, VolumeViz falls back in the classic behavior and creates tiles in order to support out of core rendering.

The tile dimensions are specified by the field SoLDMResourceParameters::tileDimension. If the API is not new in 2023.2 it makes it independant from the tile dimensions specified by the SoVolumeReader::getTileSize() method. It enables to load a dataset from tiled base format (such as LDM file format) with VolumeViz processing it with a different tiles dimension. Indeed, SoLDMResourceParameters::tileDimension can be set once the filename is set. That parameter can be push up to the volume dimensions.

Progress bar on slices

On previous versions, the loading progression of the data was only tracked when doing volume rendering. As of 2023.2 version, it is also possible to track data loading progression with slices (see SoOrthoSlice or SoObliqueSlice) or volume skin (see SoVolumeSkin).

See SoVolumeShape::setRenderProgress for detail. Note: the render progress is only taken into account by the classes SoOrthoSlice, SoObliqueSlice and SoVolumeSkin even if their mother class SoVolumeShape contains other sub classes.

The example VolRend has been updated and a progress bar is attached to the loading progression of the volume rendering, the volume skin, and all ortho and oblique slices.

New platforms

Open Inventor on .NET6

Open Inventor is available on .NET6 as a preview built in addition to .NET framework 4.7/4.8.

Limitations:

  • As the .NET api of Open Inventor is mostly written in C++ and C++/CLI, some related limitations exist and described here. Thus, any application using some Open Inventor .NET6 assemblies must embed the ijwhost.dll that is delivered in the folder $OIVNETHOME/assemblies/arch-xxx.
  • the native dlls of Open Inventor must be manually copied in the destination folder of your application. As alternative, you can also add to your PATH environment variable $OIVNETHOME/assemblies/arch-xxx.
  • the examples using RemoteViz assembly do not yet work with this release candidate version.

Visual Studio 2022 support

A new package of Open Inventor C++ built with Visual Studio 2022 is available in the download pages as of 2023.2 version.

RemoteViz

Front-end & back-end rendering

Thanks to powerful javascript libraries for 2D vector drawing, it can be useful and convenient to mix rendering by using javascript rendering on the front-end with an Open Inventor rendering on the back-end. However it can be necessary to send information from back-end to front-end in order to synchronize both rendering. For instance when a simple javascript circle's center must follow a vertex of the 3D scene rendered by Open Inventor. Thus it is necessary to synchronize front-end and back-end when a simple zoom or pan of the 3D scene leads to a new position of the 3D vertex in the pixel space of the rendering area.

Such type of synchronization can be done by using the following new methods available as of 2023.2 version:

  • RemoteViz::Rendering::RenderArea::setFrameMessage()
  • RemoteViz::Rendering::EncodedFrame::getMessage()

A new example highlights how to synchronize a javascript cirle with the top of a cone.

  • C++: $OIVHOME/examples/source/RemoteViz/FrontBackSync
  • .NET: $OIVNETHOME/examples/source/RemoteViz/FrontBackSync
  • Java: $OIVJHOME/examples/remoteviz/frontbacksync

MeshVizXLM

Color mapping improved in MeshViz XLM

When rendering a structured mesh having PER_NODE data binding, the interpolations performed by the GPU can lead to display some pixels whose color does not belong to the chosen color map. This new version removes this artifact and all pixels used to render the mesh have only colors that belong to the color map. This new correct behaviour may generate significant change in the rendering compared to previous version. That can be noticed when a large number of pixels are used by the render area to represent a cell, for instance when zooming on a single cell that have a large data gradient on its nodes.

The following images show the rendering of a 3D structured mesh where all mesh nodes in its left part have value 0, and all the mesh nodes in its right part have value 100. The color map used is a blue-white-red from 0 to 100. All hexahedron cells in the middle of the mesh have 4 nodes with value 0, and 4 nodes with value 100. Those cells are rendered with unexpected purple pixels before this new version.

3D强大三维SDK Open Inventor 2023.2 Crack,CAD Exchanger sdk,Eyeshot Ultimate,openinventor 破解,Open Inventor

Core

Minor API changes

  • In C# API:
    • The method SoVRLdmFileBorderReader.IsThreadSafe() is removed and replaced by the IsThreadSafe property inherited from SoVolumeReader.
    • The method SoAction.EnableElements() is obsolete : Use the EnabledElements property instead.
    • Some methods of the SoVolumeReader class are now deprecated:
      • The method GetBorderFlag() is now obsolete in the class SoVolumeReader. It is only kept in the class SoVRLdmFileBorderReader that is used to read old file format that contains borderFlag.
      • The method GetMinMax(Int32,Int32) is now obsolete and GetMinMax(Int64,Int64) must be used instead.
      • The method SetUserData(Object) is now obsolete and the property UserData must be used instead.
      • The method GetHistogram(Queue) is now obsolete and GetHistogram(IList<long>) must be used instead.
  • In C++ API:
    • the method SoVolumeReader::getSubSlice(const SbBox2i32&, int, void*) now has a default implementation that prints an error message when called.
  • In C++ API and Java API:
    • The class SbXfBox3f have 2 new methods computeMaxDistance2() and getClosestPoint().
    • The class SbMatrix3 have 2 new methods det() and inverse().

Reference manual update

The C++ reference manual provided in $OIVHOME/doc/ReferenceManual in the Windows package has change and has a new look and user interface thanks to the latest Doxygen version. The CHM file provided in previous versions has been replaced by a folder containing a list of HTML files. Open the file $OIVHOME/doc/ReferenceManual.html in any browser to see the main page of the reference manual. The following changes can be noticed in the new manual:

  • a new search engine.
  • a different look and style.
  • the document of each class provides a new "list of all members" including all inherited members.
  • a new list of the fields and methods per parent class.

Life cycle events

Dropped platforms

As of Open Inventor 2023.2 the following platforms or devices are no longer supported:

  • AMD GPUs
  • Ubuntu18.04

ImageViz becomes deprecated

ImageViz extension is deprecated as of Open Inventor 2023.2 . ImageViz is still supported and there is no impact when running an application using ImageViz. However warnings are raised when compiling source code that uses a class or a function of ImageViz. The examples using ImageViz have been removed but can be retreived from previous versions.

ImageViz is replaced by the new ImageDev toolkit which provides the same features with the added benefit of a simplier API. More details are available here: developer.imageviz.com and imagedev-software-development-toolkit

Misc API and feature depreciation

The support of the following file format becomes deprecated.

  • VolumeViz JP3D compression
  • PNM (Portable Any Map)
  • PGX (JPEG 2000 Verification Model)
  • RAS (Raster Graphic by SunOS)

Even if the corresponding API are not yet deprecated in this release candidate version, that will be effective in final release Open Inventor 2023.2. We plan to fully remove the support of those file formats and the corresponding API in version 2024.1.

Open Inventor 是一个面向对象的工具包,它简化并抽象了将图形编程编写为一组易于使用的对象的任务。这些对象的范围从以数据为中心的低级对象(例如球体、相机、材质、灯光和组)到用于网格可视化和体积渲染的高级对象。Open Inventor 中的基础概念是“场景数据库”,它定义了应用程序中要使用的对象。使用 Open Inventor 时,程序员可以创建、编辑这些对象并将其组合成分层 3D 场景图(即数据库)。渲染、拾取、事件处理和文件读/写等各种基本应用程序任务都是数据库中所有对象的内置操作,因此调用起来很简单。

由于 Open Inventor 是面向对象的(用 C++ 编写),因此它鼓励程序员通过编写新对象来扩展系统。Open Inventor 用户创建了多种未包含在产品中的新对象,例如:Bezier 曲面、CSG 对象、动画对象、特殊查看器等等。

版本号版本用于根据日期定义产品版本。例如:例如2023.2.7为2023年OIV的第二个版本和第7个补丁版本。

Rendering

Open Inventor 对象内部的渲染机制采用 OpenGL。在渲染过程中,每个对象都会自动对 OpenGL 进行正确、高效的调用。由于 Open Inventor 是专门为使用 OpenGL 进行图形渲染而设计的,因此它经过高度优化以利用所有 OpenGL 加速器。其优化的场景图管道还允许开发人员在没有硬件加速的情况下瞄准 PC 和低端系统。

此外,Open Inventor 渲染支持缓存方案,该方案可以自动生成非常快速的数据库渲染,而无需额外的遍历开销。

Picking

拾取是计算机图形学术语,用于在 3D 场景中选择形状。拾取可以选择由射线相交的形状(SoRayPickAction)或部分或完全位于屏幕区域内的形状,如“套索”(SoExtSelection))。光线拾取通常用于检测当前光标下方的形状。Open Inventor 拾取非常高效,并自动使用缓存的边界框来避免遍历场景图的部分(剔除)。在某些情况下,Open Inventor 使用 GPU 来加速拣选。拾取会返回各种 3D 信息以及有关拾取对象的详细信息。拾取的对象的排序列表和相应的信息将返回给程序员。拾取速度足够快,当鼠标在 3D 窗口上移动时,程序可以执行 3D 定位突出显示。

Interaction, Events, and Devices

Inventor 定义了用于编写 3D 交互的事件模型。该模型与窗口系统无关。它非常易于使用,使 3D 直接操作编程成为可能。Open Inventor 包括各种交互式 3D 对象和用于编写交互式对象的工具,例如:操纵器、拖动器和投影仪。灵活的事件模型鼓励程序员扩展系统以支持新的设备和事件类型。事件包括键盘事件、鼠标事件、触摸事件和手势,甚至虚拟/增强现实应用程序的跟踪输入设备事件。

File Formats

Open Inventor 3D 文件格式是 3D 数据事实上的标准。该格式支持 ASCII 和紧凑二进制格式。二进制格式是网络中立的,因此可以跨机器边界导出。可以压缩数据文件以进一步减小其大小。

SoEXTENDER/SoINTERNAL Methods and Classes

  • 所以扩展器。Open Inventor 头文件中“SoEXTENDER public”下列出的成员函数和类可供希望扩展工具包的程序员使用。有关扩展器 API 的更多信息,请参阅什么是扩展器 API?。
  • 所以内部。Open Inventor 头文件中“SoINTERNAL public”下列出的成员函数和类不适合公共使用。它们如有更改,恕不另行通知,并且不建议在 Open Inventor 应用程序中使用。

  • 注意:使用 Open Inventor 帮助文件查看时,单词SoEXTENDER publicSoINTERNAL publicprotected不会出现在头文件中。要查看头文件的确切内容,请直接查看头文件。

Open Inventor Examples--例子参考文章来源地址https://www.toymoban.com/news/detail-681271.html

  • Open Inventor Core examples. Open Inventor Core examples
  • DialogViz extension examples. DialogViz extension examples
  • HardCopy extension examples. HardCopy extension examples
  • Open Inventor Medical examples Open Inventor Medical examples
  • MeshViz XLM extension examples MeshViz XLM extension examples
  • VolumeViz Examples VolumeViz extension examples
  • RemoteViz extensions examples. RemoteViz extensions examples

到了这里,关于3D强大三维SDK Open Inventor 2023.2 Crack的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • 爬虫SDK:IronWebScraper 2023.8.1 for .NET Crack

    C# framework for extracting clean, structured data from HTML Web applications. IronWebScraper for .NET is a C# web scraping library, that allows developers to simulate and automate human browsing behavior to extract content, files and images from Web applications as native .NET objects. IronWebScraper manages politeness and multithreading in the background,

    2024年02月13日
    浏览(34)
  • Revit 3D高效处理:cad exchanger sdk 3.21 Crack

    3D 格式概述:Revit Revit 已成为寻求高效、准确的建筑信息建模的专业人士的首选解决方案。在这篇引人入胜的功能概述中了解 Revit 的特性和影响。 什么是Revit? Autodesk Revit 是一款流行的 CAD 软件,重点关注 BIM,被建筑师、工程师、设计师和承包商广泛使用。它最初由 Charle

    2024年02月11日
    浏览(47)
  • 轻量级3D STEP STL 格式处理 SDK 之CAD DLL C++ Crack

    CAD DLL  allows adding  CAD  functionality to applications in different languages that support  DLL  technology. The library can be used in a vast range of industrial sectors: mechanical engineering, building, circuit technology, cartography, analytic systems, and many other spheres that involve work with CAD. If you need a library compatible with Linux

    2024年02月10日
    浏览(39)
  • 使用Open3D进行OBJ模型三维可视化

    使用Open3D进行OBJ模型三维可视化 在三维图像处理领域,OBJ文件是一种常见的三维模型格式,而Open3D则是一个强大的开源3D计算机视觉库。本文将介绍如何使用Open3D对OBJ文件进行可视化。 首先,需要安装Open3D库。使用pip install即可: 接下来,我们可以使用Open3D提供的read_triang

    2024年02月06日
    浏览(68)
  • 基于Open3D和PyTorch3D读取三维数据格式OBJ

    本节将讨论另一种广泛使用的3D数据文件格式,即OBJ文件格式。OBJ文件格式最初由Wavefront Technologies Inc.开发。与PLY文件格式类似,OBJ格式也有ASCII版本和二进制版本。二进制版本是专有的且未记录文档。本章主要讨论ASCII版本。 与之前类似,将通过示例来学习文件格式。第一个

    2024年02月10日
    浏览(42)
  • 三维点云拟合圆形(附open3d python 代码)

    圆拟合方法可分为以下步骤: 使用  SVD(奇异值分解) 找到平均中心点集的最佳拟合平面。 将均值中心点投影到新的 2D 坐标中的拟合平面上。 使用 最小二乘法 拟合 2D 坐标中的圆并得到圆心和半径。 将圆中心变换回 3D 坐标。现在,拟合圆由其中心、半径和法线向量指定。

    2024年02月06日
    浏览(44)
  • 如何使用Python的Open3D开源库进行三维数据处理

    在本文中,我提供了一个关于如何使用Python的Open3D库(一个用于3D数据处理的开源库)来探索、处理和可视化3D模型的快速演练。 使用Open3D可视化的3D模型(链接https://sketchfab.com/3d-models/tesla-model-s-plaid-9de8855fae324e6cbbb83c9b5288c961处可找到原始3D模型) 如果您正在考虑处理特定任务

    2024年02月04日
    浏览(50)
  • Open3D点云数据处理(二十):最小二乘直线拟合(三维)

    专栏目录:Open3D点云数据处理(Python) 最小二乘三维直线拟合的原理是通过最小化数据点到直线距离的平方和,找到最优的直线模型来拟合给定数据集。这个距离是指数据点到直线的垂线距离。 三维直线通常表示为两个平面的交线,形如 { A

    2024年02月12日
    浏览(48)
  • open3d教程(二):可视化三维模型,并转换成点云(Python版本)

    可以自己用建模软件建立一个模型 从free3d免费下载 open3d.visualization. draw_geometries 参数: geometry_list ( List[open3d.geometry.Geometry]) : 要可视化的几何体列表. window_name( str ,  optional ,  default=\\\'Open3D\\\'): 展示模型的可视化窗口名称,默认是Open3d. width: 

    2024年02月11日
    浏览(46)
  • open3d,读取stl/ply/obj/off/gltf/glb三维模型,并转换成点云,保存

    可以自己用建模软件建立一个模型 本案例使用模型的下载地址 可以从free3d免费下载,无需注册 效果: 效果: 均匀采样会在表面出现采样点聚集的现象,open3d实现了一种基于poisson_disk方法的采样,能实现表面的均匀采样 原理 :参数umber_of_points是最终采样的点数量,实际会先

    2024年02月11日
    浏览(57)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包