-
Notifications
You must be signed in to change notification settings - Fork 186
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to create 3D custom dataset? #239
Comments
The experiments were conducted in 2D coordinates, and the code isn't optimized for 3D. However, I have experience adapting it for 3D applications. By converting 25 3-dimensional keypoints into xy, xz, yz planes, transforming them into 75 channels, I was able to achieve high performance. |
@HoBeom Thank you for your reply! |
@seekFire |
@HoBeom Got it! Thank you for your detailed response! Thank you very much! |
Hello, have you managed to customize the videos dataset into into 3D?? |
@dvskabangira The methods mentioned above are literally “tricks”. No paper has yet discussed the results of experiments by projecting 3D coordinates into 2D heatmap representation. However, I achieved high performance in my experiments with projecting SMPL's 25 3D coordinates into 2D. |
@HoBeom |
@dvskabangira The paper mentions that the projection takes place in the 2D image space and that the number of 3D keypoints matches the number of channels, thereby resulting in information loss. The method I described involves tripling the number of channels while projecting onto a 2D heatmap. This is also a different approach compared to using a 3D heatmap (voxel). |
@HoBeom Thanks for the detailed explanation, Can i email you if you don't mind? |
@dvskabangira Yes, you can email me. |
I noticed the python script(tools/data/custom_2d_skeleton.py) for creating 2D custom data, so how to create 3D dataset? or what script tools should we use?
The text was updated successfully, but these errors were encountered: