Instant NGP in 100 lines of PyTorch code | NeRF #13

Sdílet
Vložit
  • čas přidán 3. 05. 2024
  • Pure Python / PyTorch implementation of the paper "Instant Neural Graphics Primitives with a Multiresolution Hash Encoding" in 100 lines of PyTorch code.
    Udemy course about NeRF: www.udemy.com/course/neural-r...
    Link to the paper: arxiv.org/abs/2201.05989
    GitHub: github.com/MaximeVandegar/Pap...
    -----------------------------------------------------------------------------------------------------
    CONTACT: papers.100.lines@gmail.com
    #python #pytorch #nerf #neuralnetworks #machinelearning #artificialintelligence #deeplearning #data #research #neural #function #relu #positionalencoding #neuralrendering #rendering #neuralradiancefields #deeplearning #fastnerf #kilonerf #autoint #squeezenerf #3dreconstruction #novelviewsynthesis #instantngp #nvidia #radiance #fields #pleoctree #pose #estimation #learning #camera #parameters #colmap #realtime #real #time #freenerf #sparse #inputs #few #views #tutorial #tutorials #coding #implementation #prior #metalearning #reptile #ngp #instantngp #hashencoding #python #pytorch
  • Věda a technologie

Komentáře • 16

  • @williamzhang7083
    @williamzhang7083 Před 18 dny +1

    Exactly what im looking for. Thanks friend! Make more of these

  • @dronaacharya2183
    @dronaacharya2183 Před 28 dny +1

    Here before this channel blows up ;
    Really nice works 🔥

  • @rajeshnagula8440
    @rajeshnagula8440 Před 18 dny +1

    Really great work!🎉
    Would love to see implementation of RL papers and foundational models.

  • @BenignVishal
    @BenignVishal Před 28 dny +1

    great tutorial brother!

  • @billy.n2813
    @billy.n2813 Před 22 dny +1

    Thank you very much for this video.

  • @gautamvashishtha3923
    @gautamvashishtha3923 Před 28 dny +2

    Thank you so muchhh!!

  • @anhtth2207
    @anhtth2207 Před 19 dny +1

    great tutorial. I am also wondering which theme you use in the video btw

    • @papersin100linesofcode
      @papersin100linesofcode  Před 18 dny

      Hi @anhtth2207, thank you for your question. Do you mean the sublime text theme? If yes, this is the default theme

  • @eigensmith8316
    @eigensmith8316 Před 28 dny +1

    hey can you please explain how can we render the images in 'novel_view' in to a 3D object. Does it require photogrammetry?

    • @papersin100linesofcode
      @papersin100linesofcode  Před 26 dny

      Thank you for your question.
      The learned NeRF representation is a 3D model of the object.
      The most commonly used approach to obtain another representation (e.g. mesh) is to do a 3D to 3D conversion using algorithms such as Marching Cubes.
      Another possible approach, more closely related to what you suggest, is to use the NeRF representation to generate more views -- and potentially depths -- so that they can be fed to an algorithm such as TSDF (truncated signed distance function) Fusion.