WO2021004020A1 - 一种用于复杂web3D场景下用户交互的系统和方法 - Google Patents

一种用于复杂web3D场景下用户交互的系统和方法 Download PDF

Info

Publication number
WO2021004020A1
WO2021004020A1 PCT/CN2019/126991 CN2019126991W WO2021004020A1 WO 2021004020 A1 WO2021004020 A1 WO 2021004020A1 CN 2019126991 W CN2019126991 W CN 2019126991W WO 2021004020 A1 WO2021004020 A1 WO 2021004020A1
Authority
WO
WIPO (PCT)
Prior art keywords
module
data
model
branch
models
Prior art date
Application number
PCT/CN2019/126991
Other languages
English (en)
French (fr)
Inventor
韩非
王炎
马健
赖力鹏
温书豪
Original Assignee
深圳晶泰科技有限公司
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by 深圳晶泰科技有限公司 filed Critical 深圳晶泰科技有限公司
Priority to US17/252,737 priority Critical patent/US11562549B2/en
Priority to PCT/CN2019/126991 priority patent/WO2021004020A1/zh
Publication of WO2021004020A1 publication Critical patent/WO2021004020A1/zh

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T19/00Manipulating 3D models or images for computer graphics
    • G06T19/20Editing of 3D images, e.g. changing shapes or colours, aligning objects or positioning parts
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F40/00Handling natural language data
    • G06F40/10Text processing
    • G06F40/12Use of codes for handling textual entities
    • G06F40/14Tree-structured documents
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T17/00Three dimensional [3D] modelling, e.g. data description of 3D objects
    • GPHYSICS
    • G16INFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR SPECIFIC APPLICATION FIELDS
    • G16CCOMPUTATIONAL CHEMISTRY; CHEMOINFORMATICS; COMPUTATIONAL MATERIALS SCIENCE
    • G16C20/00Chemoinformatics, i.e. ICT specially adapted for the handling of physicochemical or structural data of chemical particles, elements, compounds or mixtures
    • G16C20/30Prediction of properties of chemical compounds, compositions or mixtures
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T2200/00Indexing scheme for image data processing or generation, in general
    • G06T2200/24Indexing scheme for image data processing or generation, in general involving graphical user interfaces [GUIs]
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T2219/00Indexing scheme for manipulating 3D models or images for computer graphics
    • G06T2219/20Indexing scheme for editing of 3D models
    • G06T2219/2004Aligning objects, relative positioning of parts
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06TIMAGE DATA PROCESSING OR GENERATION, IN GENERAL
    • G06T2219/00Indexing scheme for manipulating 3D models or images for computer graphics
    • G06T2219/20Indexing scheme for editing of 3D models
    • G06T2219/2012Colour editing, changing, or manipulating; Use of colour codes
    • GPHYSICS
    • G16INFORMATION AND COMMUNICATION TECHNOLOGY [ICT] SPECIALLY ADAPTED FOR SPECIFIC APPLICATION FIELDS
    • G16CCOMPUTATIONAL CHEMISTRY; CHEMOINFORMATICS; COMPUTATIONAL MATERIALS SCIENCE
    • G16C20/00Chemoinformatics, i.e. ICT specially adapted for the handling of physicochemical or structural data of chemical particles, elements, compounds or mixtures
    • G16C20/80Data visualisation

Definitions

  • the present invention belongs to the field of chemical computing, and specifically relates to a system and method for user interaction in a complex web 3D scene.
  • 3D tools have become a reality. Due to the complex structure of many chemical molecules or crystals, a large amount of data calculations will be generated during 3D rendering. Therefore, optimization of performance is particularly important.
  • the purpose of this solution is to solve the problem of 3D molecular visualization interaction in the browser environment. The time-consuming calculations caused the stall and insufficient rendering frame rate.
  • the current interactive operations in the web 3D scene are first based on the click-and-picking of objects in the 3D scene.
  • the main solution for the pickup of objects in the 3D scene is ray picking.
  • the present invention provides a system for user interaction in a complex web 3D scene, including a receiving module, a transmitting module, and a 3D model module;
  • Receiving module receiving molecular data, mol files, cif files, and custom structures containing crystal information Body
  • Transmission module After parsing the received molecular data, enter two branch modules at the same time;
  • the branch module includes:
  • View layer unit manages the rendering of the browser and the construction of the 3D model, and the data generated by this branch will finally be presented on the browser page;
  • Data layer unit processing 3D picking-related business logic, and establishing a list of related model index information for atoms, covalent bonds, hydrogen bonds, and flexible angles in molecular data;
  • 3D model module A color and 3D model-corresponding relationship will be established. All 3D models that need to be picked up will have a unique index in the data layer.
  • the molecular data adopts a mol file, a cif file, and a custom structure containing crystal information.
  • the present invention provides a method for user interaction in a complex web 3D scene, which includes the following steps:
  • Step A After receiving the molecular data, analyze the data;
  • Step B After that, two branch modules will be entered at the same time, including a first branch module and a second branch module.
  • the first branch module serves as the view layer and mainly handles browser rendering and 3D model construction. The generated data will finally be presented on the browser page;
  • Step C The second branch module serves as a data layer, which is specifically responsible for processing 3D pickup-related business logic, and establishes a list of index information of related models for atoms and covalent bonds in molecular data;
  • Step D Establish corresponding simplified model data in an invisible 3D scene according to requirements, and establish a one-to-one correspondence between color and 3D model. All 3D models that need to be picked up will be in the data layer Has a unique index.
  • the index is a hexadecimal color, from #00000 #FFFFFE, a total of 16*16*16*16*16*16-2 units can be marked, but not on the browser page Render on.
  • FIG. 1 is a visual cone model under perspective projection in the prior art
  • FIG. 2 is a frustum model under orthogonal projection in the prior art.
  • FIG. 3 is a perspective view of the cone.
  • FIG. 4 shows the flow of the 3D picking scheme
  • L2 represents the relevant data of the 3D scene rendered in the browser page, which corresponds to the data generated by the view layer in FIG. 1; L1 can be regarded as a computer screen.
  • Figure 4 shows the flow of the 3D picking program, after receiving molecular data (mol, cif files),.
  • branch module on the left is used as the view layer, which mainly deals with the rendering of the browser and the construction of the 3D model.
  • the data generated by the branch will finally be presented on the browser page .
  • branch module on the right as the data layer is responsible for processing 3D pick-up related business logic, and establishes a list of related model index information for atoms and covalent bonds in molecular data.
  • the data generated by this branch module is always Operate in memory, and create corresponding simplified model data in an invisible 3D scene according to requirements, and establish a one-to-one correspondence between color and 3D model, and all 3D models that need to be picked up will be in the data
  • There is a unique index in the layer which is A hexadecimal color can mark 16*16*16*16*16*16-2 units in total without rendering on the browser page.
  • L2 represents the relevant data of the 3D scene rendered in the browser page, which corresponds to the data generated by the view layer in FIG. 4;
  • L1 can be regarded as a computer screen.
  • a 3D picking operation is triggered.
  • the pick-up module will obtain the screen click position of the point and construct a temporary virtual plane, which is similar to the computer screen L1.
  • the plane is the projection of the 3D model data on the 2D plane, just like the sphere S1 is projected on L1
  • the above is shown as a circle P1, the projected 2D shape on the virtual plane uses the index of the projected 3D model as its own color.
  • the index of an atom in the 3D space in the picking module is #123456, then On the virtual plane temporarily constructed by the pickup module, the color of the circle mapped on the plane is #123456. After the community module reads the color #123456 of the mouse position on the virtual plane, the color is used as index information , The 3D model corresponding to the position is found without calculation, and the 3D object information at this point is successfully picked up. In this process, a large number of calculation processes are avoided and the data calculation of the 3D model that does not need to be picked is reduced. Cost, thereby increasing the rendering frame rate of the 3D scene.
  • 1x1x1 as shown in FIG. 7, 2x2x2, as shown in FIG. 8, and 3x3x3 as shown in FIG. 9.
  • 3x3x3 lattice expansion is to expand in the three directions of oa, ob, and oc.
  • 3x3x3 lattice expansion is to expand in the three directions of oa, ob, and oc.

Abstract

一种用于复杂web 3D场景下用户交互的系统和方法,涉及化学计算领域。所述系统包括接收模块、传送模块和3D模型模块;接收模块,用于接收分子数据;传送模块,用于将接收到的分子数据进行解析后,同时传送进入两个分支模块,包括第一分支模块和第二分支模块;第一分支模块作为视图层单元,用于处理浏览器的渲染和3D模型的构建,该分支产生的数据会最终呈现在浏览器的页面;第二分支模块作为数据层单元,用于处理3D的拾取相关的业务逻辑,针对分子数据中的原子、共价键等建立相关模型的索引信息的列表;3D模型模块,用于建立一个颜色和3D模型一一对应的关系,所有的需要被拾取的3D模型都会在数据层中具有一个唯一的索引。所述系统针对web 3D分子可视化的拾取可精简分子的展示模型(棍状模型)较少渲染上的模型数据的计算开销。

Description

发明名称:一种用于复杂 web3D场景下用户交互的系统和方法 技术领域
[0001] 本发明属于化学计算领域, 具体涉及一种用于复杂 web 3D场景下用户交互的系 统和方法。
背景技术
[0002] 在化学研究领域常常需要有一套标准的针对分子 (mol格式) 、 晶体
Figure imgf000003_0001
) 的描述文件以此方便不同的研究组织和机构对同一结构的化学分子或晶体达 成共识, 而 cif、 mol等纯文本格式的数据不利于研究人员直观的观察对应的化学 结构的 3D结构, 虽然在化学领域存在着相关的 3D结构展示的软件, 但是这些客 户端的应用不利于推广使用及传播使用, 而随着现代浏览器性能的提升和 web 3D技术的更新, 基于 JavaScript的编程语言的开发的在浏览器内可以运行的 3D展 示及交互的 web
3d工具成为现实, 由于不少化学分子或晶体结构复杂, 在进行 3D渲染时会产生 大量的数据计算, 因此对于性能的优化尤为重要, 该方案的目的在于解决浏览 器环境下 3D分子可视化交互上的计算耗时导致的卡顿及渲染帧率不足的问题。
[0003] 目前在 web 3D场景中的交互操作首先是要基于 3D场景中的物体的点击拾取的 , 目前针对 3D场景中物体的拾取主要的方案就是射线法拾取。
[0004] 在 webgl渲染引擎中所渲染的物体都位于一个叫做视椎体的空间之中。 如图 1和 图 2所示。
发明概述
技术问题
问题的解决方案
技术解决方案
[0005] 为了解决以上技术问题, 本发明提供一种用于复杂 web 3D场景下用户交互的系 统包括接收模块、 传送模块和 3D模型模块;
[0006] 接收模块: 接收分子数据, mol文件、 cif^:件以及包含晶体信息的自定义结构 体;
[0007] 传送模块: 将接收到的分子数据进行解析后, 同时进入两个分支模块;
[0008] 所述分支模块包括:
[0009] 视图层单元: 理浏览器的渲染和 3D模型的构建, 该分支产生的数据会最终呈现 在浏览器的页面;
[0010] 数据层单元: 处理 3D的拾取相关的业务逻辑, 针对分子数据中的原子、 共 价键、 氢键、 柔性角建立了相关模型的索引信息的列表;
[0011] 3D模型模块: 并会建立一个颜色和 3D模型 -对应的关系, 所有的需要被拾 取的 3D模型都会在数据层中具有一个唯一的索引。
[0012] 优选的, 所述分子数据采用 mol文件、 cif文件以及包含晶体信息的自定义结构 体。
[0013] 相应的, 本发明提供一种用于复杂 web 3D场景下用户交互的方法, 包括如下几 个步骤:
[0014] 步骤 A:接收到分子数据后, 据进行解析;
[0015] 步骤 B:之后会同时进入两个分支模块, 包括第一分支模块和第二分支模块, 所 述第一分支模块作为视图层, 主要处理浏览器的渲染和 3D模型的构建, 该分支 产生的数据会最终呈现在浏览器的页面;
[0016] 步骤 C:所述第二分支模块作为数据层, 专门负责处理 3D的拾取相关的业务逻辑 , 针对分子数据中的原子、 共价键等建立了相关模型的索引信息的列表;
[0017] 步骤 D:根据需求在一个不可见的 3D场景中建立对应的简化的模型数据, 并会建 立一个颜色和 3D模型一一对应的关系所有的需要被拾取的 3D模型都会在数据层 中具有一个唯一的索引。
[0018] 其中, 所述索引就是一个 16进制的颜色, 其从 #00000 #FFFFFE,总计可以标 记 16*16*16*16*16*16 - 2个单位, 而不会在浏览器的页面上进行渲染。
发明的有益效果
有益效果
[0019] 本发明带来了如下有益效果:
[0020] 1、 该方案针对 web 3D分子可视化的拾取首先精简分子的展示模型 (棍状模型 ) 较少渲染上的模型数据的计算开销。
[0021] 2、 通过建立不需要渲染的数据层的精简化的可拾取的模型数据, 减少了 3D场 景渲染的开销, 避免了不必要拾取的模型数据的构建。
对附图的简要说明
附图说明
[0022] 图 1是现有技术中透视投影下的视椎体模型,
[0023] 图 2是现有技术中正交投影下的视椎体模型。
[0024] 图 3是透视投影的视椎体。
[0025] 图 4中显示了该 3D拾取方案的流程
[0026] 图 5中, L2表示的是浏览器页面中所渲染的 3D场景的相关数据, 对应于图 1中 视图层所产生的数据; L1可视为计算机的屏幕。
[0027] 图 6 -图 9为本发明的效果图
实施该发明的最佳实施例
本发明的最佳实施方式
[0028] 在此处键入本发明的最佳实施方式描述段落。
发明实施例
本发明的实施方式
[0029] 下面结合附图, 对本发明的较优的实施例作进一步的详细说明:
[0030] 实施例 1
[0031] 图 4中显示了该 3D拾取方案的流程, 在接收到分子数据 (mol、 cif文件) 后, .
[0032] 据进行解析, 之后会同时进入两个分支模块, 左侧的分支模块作为视图层, 主 要处理浏览器的渲染和 3D模型的构建, 该分支产生的数据会最终呈现在浏览器 的页面, 而右侧的分支模块作为数据层, 专门负责处理 3D的拾取相关的业务逻 辑, 针对分子数据中的原子、 共价键等建立了相关模型的索引信息的列表, 该 分支模块产生的数据始终在内存中进行操作, 并根据需求在一个不可见的 3D场 景中建立对应的简化的模型数据, 并会建立一个颜色和 3D模型一一对应的关系 , 所有的需要被拾取的 3D模型都会在数据层中具有一个唯一的索引,该索引就是 一个 16进制的颜色, 总计可以标记 16*16*16*16*16*16 - 2个单位, 而不会在浏览器的页面上进行渲染。
[0033] 实施例 2
[0034] 如图 5所示, L2表示的是浏览器页面中所渲染的 3D场景的相关数据, 对应于图 4中视图层所产生的数据; L1可视为计算机的屏幕。 当用户点击屏幕上的一点 P1 时, 一个 3D拾取操作就被触发。 当用户点击屏幕上点?1时, 拾取相模块会获得 该点的屏幕点击位置, 并构建一个临时的虚拟平面, 这个平面类似于计算机屏 幕 L1, 平面上是 3D模型数据在 2D平面上的投影, 如同球体 S1投影在 L1上表现为 圆 P1—样, 在虚拟平面上的被投影的 2D形状都以投影出自己的 3D模型的索引作 为自己的颜色, 比如, 3D空间中一个原子在拾取模块的索引是 #123456 , 那在拾 取模块临时构建的虚拟平面上, 该原子映射在平面上的圆的颜色就是 #123456, 在社区模块读取到鼠标位置在该虚拟平面上的颜色 #123456之后, 就根据该颜色 作为索引信息, 无需计算就找到了该位置对应的 3D模型, 从而成功的拾取到了 该点 3D物体信息, 在这一过程中避免了大量的计算过程, 同时减少了不需要被 拾取的 3D模型的数据计算的开销, 以此提升了 3D场景的渲染帧率。
[0035] 1x1x1:如图 7所示, 2x2x2,如图 8所示, 3x3x3如图 9所示。
[0036] 说明: 3x3x3晶格展开就是在 oa、 ob、 oc三个方向上进行扩展, 有单个晶格扩 展成 3x3x3=27个晶格组成的立方体, 2x2x2即扩展出 8个单晶格的立方体。
[0037] 效果对比 (使用阿司匹林 (aspirin) 的结构进行对比测试) 如表 1所示:
[0038] 表 1
[]
[表 1]
Figure imgf000007_0001
[0039] 说明: 3x3x3晶格展开就是在 oa、 ob、 oc三个方向上进行扩展, 有单个晶格扩 展成 3x3x3=27个晶格组成的立方体, 2x2x2即扩展出 8个单晶格的立方体。
[0040] 以上内容是结合具体的优选实施方式对本发明所作的进一步详细说明, 不能认 定本发明的具体实施只局限于这些说明。 对于本发明所属技术领域的普通技术 人员来说, 在不脱离本发明构思的前提下, 还可以做出若干简单推演或替换, 都应当视为属于本发明的保护范围。

Claims

权利要求书
[权利要求 1] 一种用于复杂 web 3D场景下用户交互的系统, 其特征在于, 包括接 收模块、 传送模块和 3D模型模块;
接收模块: 接收分子数据;
传送模块: 将接收到的分子数据进行解析后, 同时进入两个分支模块 所述分支模块包括:
视图层单元: 理浏览器的渲染和 3D模型的构建, 该分支产生的数据 会最终呈现在浏览器的页面;
数据层单元: 处理 3D的拾取相关的业务逻辑, 针对分子数据中的 原子、 共价键等建立了相关模型的索引信息的列表;
3D模型模块: 并会建立一个颜色和 3D模型 -对应的关系, 所有的 需要被拾取的 3D模型都会在数据层中具有一个唯一的索引。
[权利要求 2] 一种如权利要求 1所述的用于复杂 web 3D场景下用户交互的方法, 其 特征在于, 包括如下几个步骤:
步骤 A:接收到分子数据后, 据进行解析;
步骤 B:之后会同时进入两个分支模块, 包括第一分支模块和第二分支 模块, 所述第一分支模块作为视图层, 主要处理浏览器的渲染和 3D 模型的构建, 该分支产生的数据会最终呈现在浏览器的页面; 步骤 C:所述第二分支模块作为数据层, 专门负责处理 3D的拾取相关 的业务逻辑, 针对分子数据中的原子、 共价键等建立了相关模型的索 引信息的列表;
步骤 D:根据需求在一个不可见的 3D场景中建立对应的简化的模型数 据, 并会建立一个颜色和 3D模型一一对应的关系所有的需要被拾取 的 3D模型都会在数据层中具有一个唯一的索引。
[权利要求 3] 如权利要求 2所述的方法, 其特征在于, 所述索引就是一个 16进制的 颜色, 其从 #00000^lj#FFFFFE,总计可以标记 16*16*16*16*16*16- 2 个单位, 而不会在浏览器的页面上进行渲染。
PCT/CN2019/126991 2019-12-20 2019-12-20 一种用于复杂web3D场景下用户交互的系统和方法 WO2021004020A1 (zh)

Priority Applications (2)

Application Number Priority Date Filing Date Title
US17/252,737 US11562549B2 (en) 2019-12-20 2019-12-20 System and method for user interaction in complex web 3D scenes
PCT/CN2019/126991 WO2021004020A1 (zh) 2019-12-20 2019-12-20 一种用于复杂web3D场景下用户交互的系统和方法

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
PCT/CN2019/126991 WO2021004020A1 (zh) 2019-12-20 2019-12-20 一种用于复杂web3D场景下用户交互的系统和方法

Publications (1)

Publication Number Publication Date
WO2021004020A1 true WO2021004020A1 (zh) 2021-01-14

Family

ID=74114926

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/CN2019/126991 WO2021004020A1 (zh) 2019-12-20 2019-12-20 一种用于复杂web3D场景下用户交互的系统和方法

Country Status (2)

Country Link
US (1) US11562549B2 (zh)
WO (1) WO2021004020A1 (zh)

Families Citing this family (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2021004020A1 (zh) * 2019-12-20 2021-01-14 深圳晶泰科技有限公司 一种用于复杂web3D场景下用户交互的系统和方法

Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103885788A (zh) * 2014-04-14 2014-06-25 焦点科技股份有限公司 一种基于模型组件化动态web 3d虚拟现实场景的搭建方法及系统
CN104537705A (zh) * 2015-01-23 2015-04-22 济宁医学院 基于增强现实的移动平台三维生物分子展示系统和方法
CN108763472A (zh) * 2018-05-29 2018-11-06 北京邮电大学 三维数据可视化的装置及方法
US20180330480A1 (en) * 2017-05-10 2018-11-15 Babylon VR Inc. System and methods for generating an optimized 3d model
CN109658992A (zh) * 2018-12-20 2019-04-19 广州市爱菩新医药科技有限公司 一种基于Web的化学结构绘制方法
CN111192641A (zh) * 2019-12-20 2020-05-22 深圳晶泰科技有限公司 一种用于复杂web 3D场景下用户交互的系统和方法

Family Cites Families (28)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US6522632B1 (en) * 1998-05-06 2003-02-18 Avici Systems Apparatus and method for efficient prefix search
US7996156B2 (en) * 2002-03-07 2011-08-09 The United States Of America As Represented By The Secretary, Department Of Health And Human Services Methods for predicting properties of molecules
US20060227241A1 (en) * 2005-04-06 2006-10-12 Dyke Phil V Apparatus and method for adjusting colors of an image
US8706316B1 (en) * 2006-03-14 2014-04-22 Snap-On Incorporated Method and system for enhanced scanner user interface
US8468002B2 (en) * 2007-03-22 2013-06-18 Infosys Limited Annotating descriptions of chemical compounds
US7991730B2 (en) * 2007-07-17 2011-08-02 Novalyst Discovery Methods for similarity searching of chemical reactions
KR20100065418A (ko) * 2008-12-08 2010-06-17 삼성전자주식회사 가요성 표시부를 가지는 단말기 및 그의 데이터 표시 방법
EP2567338B1 (en) * 2010-05-03 2020-04-08 Perkinelmer Informatics, Inc. Method and apparatus for processing documents to identify chemical structures
US20140375530A1 (en) * 2010-08-10 2014-12-25 Stephen E. Delaporte Reconfigurable touch screen computing device
WO2012021525A1 (en) * 2010-08-10 2012-02-16 Aniteal Laboratories Reconfigurable touch screen computing device
WO2013030850A2 (en) * 2011-08-26 2013-03-07 Council Of Scientific & Industrial Research Chemical structure recognition tool
US8963857B2 (en) * 2012-02-21 2015-02-24 Lg Electronics Inc. Electronic device and method of controlling the same
US20130286038A1 (en) * 2012-04-30 2013-10-31 General Electric Company Systems and methods for selection and display of multiplexed images of biological tissue
US9280449B2 (en) * 2012-05-10 2016-03-08 Sap Se HIT testing of visual objects
US11373734B2 (en) * 2012-05-18 2022-06-28 Georgetown University Methods and systems for populating and searching a drug informatics database
KR102163740B1 (ko) * 2012-10-05 2020-10-12 삼성전자주식회사 플렉서블 디스플레이 장치 및 플렉서블 디스플레이 장치의 제어 방법
KR102097361B1 (ko) * 2013-02-01 2020-04-07 삼성디스플레이 주식회사 가요성 디스플레이 장치를 구비한 모바일 기기 및 이의 동작 방법
US9588941B2 (en) * 2013-03-07 2017-03-07 International Business Machines Corporation Context-based visualization generation
US10412131B2 (en) * 2013-03-13 2019-09-10 Perkinelmer Informatics, Inc. Systems and methods for gesture-based sharing of data between separate electronic devices
US11176111B2 (en) * 2013-03-15 2021-11-16 Nuodb, Inc. Distributed database management system with dynamically split B-tree indexes
WO2015045752A1 (ja) * 2013-09-25 2015-04-02 ソニー株式会社 表示装置および電子機器
US10013467B1 (en) * 2014-07-10 2018-07-03 Purdue Pharma L.P. System and method for evaluating chemical entities using and applying a virtual landscape
WO2017161250A1 (en) * 2016-03-17 2017-09-21 Elsevier, Inc. Systems and methods for electronic searching of materials and material properties
US10984579B2 (en) * 2018-08-27 2021-04-20 Microsoft Technology Licensing, Llc Playback for embedded and preset 3D animations
US11043183B2 (en) * 2019-05-23 2021-06-22 Dell Products, L.P. Mitigation of screen burn-in for a foldable IHS
KR20210060874A (ko) * 2019-11-19 2021-05-27 삼성전자주식회사 폴더블 디스플레이를 갖는 전자 장치에서 사용자 인터페이스를 제공하는 방법 및 장치
WO2021004020A1 (zh) * 2019-12-20 2021-01-14 深圳晶泰科技有限公司 一种用于复杂web3D场景下用户交互的系统和方法
US11530184B2 (en) * 2020-06-30 2022-12-20 Imbria Pharmaceuticals, Inc. Crystal forms of 2-[4-[(2,3,4-trimethoxyphenyl)methyl]piperazin-1-yl]ethyl pyridine-3-carboxylate

Patent Citations (6)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN103885788A (zh) * 2014-04-14 2014-06-25 焦点科技股份有限公司 一种基于模型组件化动态web 3d虚拟现实场景的搭建方法及系统
CN104537705A (zh) * 2015-01-23 2015-04-22 济宁医学院 基于增强现实的移动平台三维生物分子展示系统和方法
US20180330480A1 (en) * 2017-05-10 2018-11-15 Babylon VR Inc. System and methods for generating an optimized 3d model
CN108763472A (zh) * 2018-05-29 2018-11-06 北京邮电大学 三维数据可视化的装置及方法
CN109658992A (zh) * 2018-12-20 2019-04-19 广州市爱菩新医药科技有限公司 一种基于Web的化学结构绘制方法
CN111192641A (zh) * 2019-12-20 2020-05-22 深圳晶泰科技有限公司 一种用于复杂web 3D场景下用户交互的系统和方法

Also Published As

Publication number Publication date
US11562549B2 (en) 2023-01-24
US20210375063A1 (en) 2021-12-02

Similar Documents

Publication Publication Date Title
US11538229B2 (en) Image processing method and apparatus, electronic device, and computer-readable storage medium
CN111192641B (zh) 一种用于复杂web 3D场景下用户交互的系统和方法
CN106846497B (zh) 应用于终端的呈现三维地图的方法和装置
US20170186219A1 (en) Method for 360-degree panoramic display, display module and mobile terminal
CN110728755B (zh) 场景间漫游、模型拓扑创建、场景切换方法及系统
WO2021082801A1 (zh) 增强现实处理方法及装置、系统、存储介质和电子设备
CN105892643A (zh) 基于虚拟现实的多界面统一显示系统及方法
US20230186583A1 (en) Method and device for processing virtual digital human, and model training method and device
WO2018028048A1 (zh) 虚拟现实内容生成方法和装置
CN111773709A (zh) 场景地图的生成方法及装置、计算机存储介质、电子设备
CN104183019A (zh) 用于重建3d线的方法
JP7277548B2 (ja) サンプル画像生成方法、装置及び電子機器
WO2014075237A1 (zh) 一种实现增强现实的方法及用户设备
WO2017129105A1 (zh) 一种图形界面更新方法和装置
WO2021004020A1 (zh) 一种用于复杂web3D场景下用户交互的系统和方法
CN112288878B (zh) 增强现实预览方法及预览装置、电子设备及存储介质
CN109816791B (zh) 用于生成信息的方法和装置
CN115619986B (zh) 场景漫游方法、装置、设备和介质
CN113253965B (zh) 海量数据多视口可视化交互方法、系统、设备及存储介质
WO2022160406A1 (zh) 基于增强现实技术的物联网实训系统的实现方法及系统
CN117173378B (zh) 基于CAVE环境的WebVR全景数据展现方法、装置、设备及介质
CN113694519B (zh) 一种贴花效果的处理方法、装置、存储介质及电子设备
CN106101627A (zh) 一种虚拟现实系统中的视频处理方法和装置
WO2022095733A1 (zh) 信息处理方法及装置
Zhang et al. Transmission Method of the Rendered Image based on Cube Environment Mapping

Legal Events

Date Code Title Description
121 Ep: the epo has been informed by wipo that ep was designated in this application

Ref document number: 19936680

Country of ref document: EP

Kind code of ref document: A1

NENP Non-entry into the national phase

Ref country code: DE

32PN Ep: public notification in the ep bulletin as address of the adressee cannot be established

Free format text: NOTING OF LOSS OF RIGHTS PURSUANT TO RULE 112(1) EPC (EPO FORM 1205 DATED 10/11/2022)

122 Ep: pct application non-entry in european phase

Ref document number: 19936680

Country of ref document: EP

Kind code of ref document: A1