Code Monkey home page Code Monkey logo

Comments (3)

quyanqiu avatar quyanqiu commented on September 22, 2024 3

Hi,I am not the author of this paper,but I would like to share some my understanding.
Actually,Yes, you are right,The output of the network is generally speaking '(u,v,d)'.I wanna talk about the GT mesh generation step,e.g the “itterative fitting” method in the paper ,In fact this optimization based method did generate 3D hand mesh in camera C.S,But for better convergence for spiralNet ,the Arthur align these vertices to image C.S,which in your words '(u,v,d)',
And this is why spiral-cov-net working because of this strict constraint of "point(x,y)-to-point(u,v,d)",so you can regard these approach as a "dense 3D hand keypoints estimation task".some of the other scholars work such as https://github.com/mks0601/I2L-MeshNet_RELEASE also did the same thing

As for normalization of mesh‘s gt,you can use following code:
`
train_db_np, val_db_np = np.array(data_splits['train'], dtype=np.float32), np.array(data_splits['val'], dtype=np.float32)

mean_points = np.mean(train_db_np, axis=0)
std_points = np.std(train_db_np, axis=0)

# Normalize vertices.
train_db_np = (train_db_np - mean_points) / std_points
val_db_np = (val_db_np - mean_points) / std_points

`

This is also @dkulon ‘s work

from arielai_youtube_3d_hands.

quyanqiu avatar quyanqiu commented on September 22, 2024 1

@dumyy,Actually the gt of mesh already in 3d format(Although we call it 'u v d'),you could use meshlab to visualize these vertices,just like below:
image
(BTW the faces are from mano website)

from arielai_youtube_3d_hands.

dumyy avatar dumyy commented on September 22, 2024

@quyanqiu In fact, I have also another confusion. If I have got the mesh output, or just use the gt of mesh, how to project the points to 3d format ( in camera C.S. or just root-relative C.S.)?

from arielai_youtube_3d_hands.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.