Is there implementation available for MAPS in Appendix D
jiangzhongshi opened this issue · 3 comments
jiangzhongshi commented
Hi,
Thanks for the work and the code. I wonder if there is some pointer to the implementation of Maps, as in Appendix D?
HTDerekLiu commented
Hi,
I couldn't find an existing implementation online, so I only have my (slow) reimplementation. Roughly speaking, you will need to change the SSP_decimation.m
to do vertex removal, instead of edge collapses. The vertices get removed at each level is a maximum independent set. The rest of the "MAPS" will be very similar to neural subdivision!
jiangzhongshi commented
Thanks for the prompt response, if I understand correctly, the major
difference is DK vs. QSlim and the conformal map is similarly
used?
…On Wed, Oct 14, 2020 at 2:55 PM Hsueh-Ti Derek Liu ***@***.***> wrote:
Hi,
I couldn't find an existing implementation online, so I only have my
(slow) reimplementation. Roughly speaking, you will need to change the
SSP_decimation.m to do *vertex removal*, instead of edge collapses. The
vertices get removed at each level is a maximum independent set. The rest
of the "MAPS" will be very similar to neural subdivision!
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_HTDerekLiu_neuralSubdiv_issues_2-23issuecomment-2D708596271&d=DwMCaQ&c=slrrB7dE8n7gBJbeO0g-IQ&r=2v3jiwtgToNyGgWlUiot8g&m=lXmSlaEpdwp84TZ1g5U06pea85EmRiLBn-FcxQwCaTk&s=LObbZxifA8w1FnRCrhimX_zBqei8Am3MBXgHJHGpcio&e=>,
or unsubscribe
<https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_notifications_unsubscribe-2Dauth_ADBLCF7JI6WFECROYXPUMVTSKXXZ7ANCNFSM4SQ7K4EQ&d=DwMCaQ&c=slrrB7dE8n7gBJbeO0g-IQ&r=2v3jiwtgToNyGgWlUiot8g&m=lXmSlaEpdwp84TZ1g5U06pea85EmRiLBn-FcxQwCaTk&s=ROUgwx6RxINWAHKwoCxcTs15pQjXOKXtSyfeRQ40G3U&e=>
.
HTDerekLiu commented
Correct!