I have seen 3d models of dress items reshape automatically in softwares such as Daz3d, poser, makehuman etc when the model which the dress is put on is modified (usually with a morph). I have a situation where i have to do something similar in opengl es. Can somebody tell me the underlying logic in doing so? Is it again the morphs working or is there some other way?
Auto shaping dress on 3d avatar
146 Views Asked by sreesreenu At
1
There are 1 best solutions below
Related Questions in GRAPHICS
- How to fix "Access violation executing location" when using GLFW and GLAD
- Why is the value of `gl_FragCoord.z` is always 0.5?
- A way to warp an image based on a map
- Spacing out overlapping rectangles: how to translate pseudocode?
- 3D graph in Rstudio (time vs intensity vs coefficient)
- I want to create a creative website based on my project. I am new in this field
- Color each field in a mosaic plot in R
- How to convert raw RGB luminance using OCIO
- CPU Ray Tracer finds intersection for only a certain setup
- How do I dynamically change vertex colors using Direct3d 12 and Visual C++?
- Python Mediapipe replace chest pose landmark lines with custom image
- I was following Computer Graphics from Scratch -- Getting distorted spheres
- Convert coordinates in android
- Python Mediapipe replace pose landmark line drawings with custom image drawings
- Is there a way to automatically export OpenOffice/LibreOffice drawings to bitmaps, with options?
Related Questions in 3D
- Issues with a rotation gizmo and sign flips when converting back to euler angles
- coded one, but renderer renders two 3D models in three.js
- WorldToScreen function
- Sweep shape along 3D path in Python
- How to add another panel or window to the open3d.visualization.O3DVisualizer class? (In python open3d)
- How to estimate the memory size of a binary voxelized geometry?
- LibGDX Normal Textures Not Showing Up in 3D (Blender) Model Java
- A way to warp an image based on a map
- 3D surface won't show data on plotly
- Creating 3D python data from index sums of 2D data
- 3D graph in Rstudio (time vs intensity vs coefficient)
- Combining multiple plots with mayavi
- JavaFX 3D API does not work on all Android deivces
- Manual retargeting - How to compute target pose bone positions correctly?
- How do I dynamically change vertex colors using Direct3d 12 and Visual C++?
Related Questions in BLENDER
- Blender mesh-cleanup reduces number of vertices but in Three.js it doesn't
- how to use knife_project with python script in blender 4.0? it promat me knife project.poll() expected a view3d region & edit mesh
- How do I bake a normal Map in Blender?
- Error: 'Mesh' object has no attribute 'use_auto_smooth' when importing .zmbx (Metabricks) file into Blender
- LibGDX Normal Textures Not Showing Up in 3D (Blender) Model Java
- Spacing out overlapping rectangles: how to translate pseudocode?
- when rendering their project the video size became distorted, resulting in stretched visuals despite the frames being perfectly rendered
- Blender Python Reported texture size limit error
- unable to load .fbx file using bpy on AWS lambda: " IMB_loadifffile: couldn't get mapping /tmp/. "
- Blender animation doesn't import in UNREAL ENGINE
- Cant get this bianchi-Pinkall script to work in blender
- Bake sound to f curve on Geometry Node via Python API
- AttributeError: 'module' object has no attribute 'inputs'
- Blender image sequence (png) to Unity
- Problems with eye shading
Related Questions in MAKEHUMAN
- 3D models (.obj or .fbx or .glb) do not load in Hololens 2 3d-viewer
- How to save to .mhm file
- MakeHuman model physical unit
- What is this markup in my browser... is it gltf?
- I can't figure out Unity / Blender / makehuman root motion
- Exporting Makehuman.js Three.js using THREE.OBJExporter
- webpack-dev-server is not recognized as an internal or external command
- Directly Controlling an .fbx MakeHuman Avatar in Unity With a Script
- Blender to three.js - Materials not appearing correctly when making material not transparent
- How to improve the rig in blender to prevent weird mesh deformations?
- Using Python to write MakeHuman files: Invalid Syntax Error
- Makehuman modelling with py script?
- html5 canvas 2d make human body and fill region
- Auto shaping dress on 3d avatar
- Unity3D frame rate dropped after importing Blender model
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I would approach it like this:
Mesh
Is usually represented as a network of nested points in some topological grid. For this I would break the clothes into "cylinders". Each "cylinder" would be represented by a grid of points something like this:
where
nashould be dependent on the cylinder diameter but usuallyna=36is more then enough in all casesnbshould be dependent on the "cyliner" height and cloth detail ...Each of the points has its 3D coordinates
x,y,zwhich are initially set to cloth's shape as would it filled with air like balloon. Thestretchflags if the point is on some rubber band forcing it to stick to skin. Thedoneis just temp flag for the computation.Dynamics
Now if you want to compute the actual cloth shape then you need to:
done=falsefor all pointsstretched points to their corresponding position on person/dummy skin (mesh surface) and setdone=truefor them. These points will be usually covering whole slice(b=constant,a=0,1,2,...na-1)for each stretched point
(a0,b0)compute the chained points. The math/physics behind it is this:so scan the points
(a0+1,b0),(a0+2,b0)...if you hit anotherstretchpoint use caternary curve and if not use Newtonian / D'Alembert dynamics simulation to obtain position (for that yu need to add speedvx,vy,vzto the_pnt. When the position is computed set thedone=truefor all computed points.Also if the computed position of a point is inside avatar mesh you have to set its position to the avatar surface and set its speed to zero.
Handle mesh self-collisions (dynamic impact)
search all non computed points
done==falseand interpolate their position from their computed neighbors.If you got this working you can add more features like ellasticity,mass,... coefficients for each point and more.