I am tryin to implement skeletal animation in OpenGL ES2 in Android, I have a JSON model exported from Blender using io_three , I can read from this file Bones array each one has Position as 3 floats array, quaternion rotation as 4 floats array and scale and an integer which is parent, also I has animation which has hierarchy list as I understand which handles each bone matrix every frame, each hierarchy has a parent and list of keys each key has same components as the bone, so I read many tutorials and made many tries but unfortunately I did not success, I need the logic explained simply. so I have a bone class each one has vectors and I can get the relative matrix for each bone then multiply it with the parent absolute matrix to get the absolute matrix of the bone then inverse it to get the inversed matrix, I can make same calculations for each key but I can not bind them together, I need to understand the relation between the bone and each frame. my problem is not with the code but with logic.
OpenGL skeletal animation logic
783 Views Asked by Mohamed At
1
There are 1 best solutions below
Related Questions in JAVA
- in R, recovering strings that have been converted to factors with factor()
- How to reinstall pandoc after removing .cabal?
- How do I code a Mixed effects model for abalone growth in Aquaculture nutrition with nested individuals
- How to save t.test result in R to a txt file?
- how to call function from library in formula with R type provider
- geom_bar define border color with different fill colors
- Different outcome using model.matrix for a function in R
- Creating a combination data.table in R
- Force specific interactions in Package 'earth' in R
- Output from recursive function R
Related Questions in ANDROID
- in R, recovering strings that have been converted to factors with factor()
- How to reinstall pandoc after removing .cabal?
- How do I code a Mixed effects model for abalone growth in Aquaculture nutrition with nested individuals
- How to save t.test result in R to a txt file?
- how to call function from library in formula with R type provider
- geom_bar define border color with different fill colors
- Different outcome using model.matrix for a function in R
- Creating a combination data.table in R
- Force specific interactions in Package 'earth' in R
- Output from recursive function R
Related Questions in OPENGL-ES
- in R, recovering strings that have been converted to factors with factor()
- How to reinstall pandoc after removing .cabal?
- How do I code a Mixed effects model for abalone growth in Aquaculture nutrition with nested individuals
- How to save t.test result in R to a txt file?
- how to call function from library in formula with R type provider
- geom_bar define border color with different fill colors
- Different outcome using model.matrix for a function in R
- Creating a combination data.table in R
- Force specific interactions in Package 'earth' in R
- Output from recursive function R
Related Questions in OPENGL-ES-2.0
- in R, recovering strings that have been converted to factors with factor()
- How to reinstall pandoc after removing .cabal?
- How do I code a Mixed effects model for abalone growth in Aquaculture nutrition with nested individuals
- How to save t.test result in R to a txt file?
- how to call function from library in formula with R type provider
- geom_bar define border color with different fill colors
- Different outcome using model.matrix for a function in R
- Creating a combination data.table in R
- Force specific interactions in Package 'earth' in R
- Output from recursive function R
Related Questions in SKELETAL-ANIMATION
- in R, recovering strings that have been converted to factors with factor()
- How to reinstall pandoc after removing .cabal?
- How do I code a Mixed effects model for abalone growth in Aquaculture nutrition with nested individuals
- How to save t.test result in R to a txt file?
- how to call function from library in formula with R type provider
- geom_bar define border color with different fill colors
- Different outcome using model.matrix for a function in R
- Creating a combination data.table in R
- Force specific interactions in Package 'earth' in R
- Output from recursive function R
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 will try to explain how to compute the animated skeleton at some
t
of your animation wheret
is between the start and end times of your entire animation.You must also be having the timing data for the above i.e. if you have say 17 frames in your animation, the time information for each frame. Assuming you have this or can obtain this data from
io_three
, you can compute the animation matrix. The more granular steps are:t
i.e. you find the 2 frames with timest1
andt2
such that:t1 < t < t2
. Now you can compute the interpolated translation matrix.You can see a sample of this kind of computation here: note that it is in ObjectiveC, using Assimp.
You will do the steps 1 to 4 for each bone in your skeleton and you traverse from the root of the skeleton all the way down, which ensures that for each bone you have a cumulative animation matrix. You start with the
IdentityMatrix
as the parent matrix.As you have to start with the root of the skeleton, you have to also know that root. Either your data provides the root of the skeleton or else you have to derive the skeleton root. If you have a tree of bone nodes, then the node with the lowest depth will be root!
Once you have the animation matrix for each bone, you also need to know the number of bones that influence each vertex and the weighting of that influence. Then you can compute the deformed vertex, either on the CPU or the GPU. Note that both have their pros and cons.
A much better explanation of skeletal animation but with Assimp library is described in this post's top answer.
Overall, while the overall logic of skeletal animation is simple; the hard part is in navigation of your data structure which contains all that data and building the correct animation matrices, identification of the root node of the skeleton and the mapping from vertices to bone/animation data.