Text-to-3D HyperGene 1
HyperGen™ Text-to-3D works as follows:
Specify object: User queries the MIRAI world builder for a specific object they in need in-world such as a sword.
Text Analysis: MIRAI sorts through its own and partners pre-existing database of objects that matches the description of the object requested. If the 3D model is found it is imported to the world.
Model Generation: If no pre-existing 3D model is found from the database then the model is generated.
Model Optimization: The generated 3D model is optimized for rendering and interaction within the game.
Let:
QQ be the user query for a specific object.
DD be the database of pre-existing 3D models.
MM be the 3D model of the object.
GG be the function for generating a new 3D model.
OO be the function for optimizing the 3D model.
II be the function for importing the 3D model into the world.
The process can be described as follows:
Q→FindModel(Q,D)→{Mif M∈DG(Q)→O(G(Q))if M∉D→I(M)
Where:
QQ represents the user query.
FindModel(Q,D)FindModel(Q,D) determines if MM exists in the database DD.
If M∈DM∈D, then MM is imported directly. If M∉DM∈/D, then a new model is generated G(Q)G(Q) and optimized O(G(Q))O(G(Q)).
Finally, the model MM is imported into the world I(M)I(M).
Last updated