Shape-Guided icon indicating copy to clipboard operation
Shape-Guided copied to clipboard

Why align the mean ±3× standard deviation of RGB scores with the mean ±3× standard deviation of SDF scores?

Open limaodaxia opened this issue 1 year ago • 2 comments

To calibrate the distributions of scores, we align the mean ±3× standard deviation of RGB scores with the mean ±3× standard deviation of SDF scores by applying an affine transformation to the RGB scores.

Hello @jayliu0313 , where you got this idea?

limaodaxia avatar Feb 23 '24 11:02 limaodaxia

Due to the significant numerical gap between these the image feature and the SDF feature, we use statistical methods to align them, ensuring that scoring is appropriate between them.

jayliu0313 avatar Feb 23 '24 18:02 jayliu0313

for L in range(sdf_c.shape[0]):
    tmp_map[index[L]] = sdf_c[L]
    if(s_map[index[L]] == 0) or (s_map[index[L]] > sdf_c[L]):
        s_map[index[L]] = sdf_c[L]

when get the score map of sdf, why use the min val of distance to update the map?

limaodaxia avatar Mar 03 '24 09:03 limaodaxia