mirror of
https://github.com/alicevision/Meshroom.git
synced 2025-06-01 18:31:58 +02:00
[nodes] add some nodes documentation
This commit is contained in:
parent
0e606eef4e
commit
64a4c9426a
30 changed files with 352 additions and 18 deletions
|
@ -7,6 +7,20 @@ class Texturing(desc.CommandLineNode):
|
|||
commandLine = 'aliceVision_texturing {allParams}'
|
||||
cpu = desc.Level.INTENSIVE
|
||||
ram = desc.Level.INTENSIVE
|
||||
|
||||
documentation = '''
|
||||
This node computes the texturing on the mesh.
|
||||
|
||||
If the mesh has no associated UV, it automatically computes UV maps.
|
||||
|
||||
For each triangle, it uses the visibility information associated to each vertex to retrieve the texture candidates.
|
||||
It select the best cameras based on the resolution covering the triangle. Finally it averages the pixel values using multiple bands in the frequency domain.
|
||||
Many cameras are contributing to the low frequencies and only the best ones contributes to the high frequencies.
|
||||
|
||||
## Online
|
||||
[https://alicevision.org/#photogrammetry/texturing](https://alicevision.org/#photogrammetry/texturing)
|
||||
'''
|
||||
|
||||
inputs = [
|
||||
desc.File(
|
||||
name='input',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue