Code Monkey home page Code Monkey logo

Comments (6)

dgrzech avatar dgrzech commented on July 17, 2024 1

unfortunately you're facing a choice between reconstruction quality and speed. you can lower the time taken per frame by decreasing the maximum number of iterations of the solver and simultaneously increasing the gradient descent step size, or by increasing the parameter which controls the convergence criterion for the solver. you will also get a minor speed-up if you set the verbosity of the solver to 0. however, if you're not satisfied with the reconstruction quality, you'll have to increase the max. number of steps and lower the step size.

please try to increase the dimensions of the tsdf, set a much higher max. no. of steps, and lower the step size, and see if the quality is better. when prioritising quality, i would use 192^3 voxels, max_iter=16384, and alpha=2e-4. beware that the processing time will increase--it will be a couple of minutes per frame

from sobfu.

buddyhs avatar buddyhs commented on July 17, 2024 1

Thank you for your help! I will take your advice to see the effect of reconstruction.

from sobfu.

dgrzech avatar dgrzech commented on July 17, 2024

hi! what data did you test it on? how did the quality compare to the quality shown on the youtube videos?

from sobfu.

buddyhs avatar buddyhs commented on July 17, 2024

My computer configuration is Inter i7, gtx108ti and 64g memory. My cuda Edition is cuda9.1. I ran the program with umbrella data sets, first the time consuming for every per frame for me is too long. It take about 5s everyframe.Then the reconstrucion effect is not good than shown on youtube videos.

from sobfu.

dgrzech avatar dgrzech commented on July 17, 2024

disregard the parameters from the previous reply. these should give you a reconstruction of similar quality to the one on the video at a more reasonable speed of ~10s per frame. the comments i made stand but there's an issue with the tsdf when trying to reconstruct just the umbrella rather than both the umbrella and the person. i hadn't ran the code on the umbrella data since august and i forgot about this

# TSDF
VOL_DIMS_X=128
VOL_DIMS_Y=128
VOL_DIMS_Z=128

VOL_SIZE_X=1.15
VOL_SIZE_Y=1.15
VOL_SIZE_Z=1.15

TSDF_TRUNC_DIST=10
ETA=5
TSDF_MAX_WEIGHT=128

GRADIENT_DELTA_FACTOR=0.5

# CAMERA
INTR_FX=570.342
INTR_FY=570.342
INTR_CX=320.0
INTR_CY=240.0

TRUNC_DEPTH=1.5

VOL_POSE_T_Z=0.3

# BILATERAL FILTER
BILATERAL_SIGMA_DEPTH=0.04
BILATERAL_SIGMA_SPATIAL=4.5
BILATERAL_KERNEL_SIZE=7

# SOLVER
START_FRAME=1

MAX_ITER=4096
MAX_UPDATE_NORM=1e-10

S=7
LAMBDA=0.1

ALPHA=0.1
W_REG=0.2

the reconstruction shown on the video was the best that i managed to get out of the code. i don't think that sobolevfusion is able to produce a better one, so the way forward would be to apply some kind of post-processing to the tsdf or the mesh

from sobfu.

LinLi-DL avatar LinLi-DL commented on July 17, 2024

Could I run it in Windows or Linux? @buddyhs

from sobfu.

Related Issues (17)

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.