-
Hi. I saw that when generating a gaussian heatmap, I found that 3-sigma rule is followed, that the value of cut-off range is three times larger than the sigma value. I wonder whether there are any references about it? Whether it is useful to make any modifications on it to train a better model? |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments
-
This is a common practice to generate the heatmap target, used by many recent papers (e.g. simple baseline, HRNet) |
Beta Was this translation helpful? Give feedback.
-
Thanks for your explanation. But I am still confused about the sigma and distance. I wonder whether the value of dist and sigma relevant to the output image size? As soon as I am concerned, when dist and sigma fixed, the size of the distribution will be fixed. However, as the output image size grows larger, the distribution will occupy a smaller area comparing with the whole image, meaning that it is easier for neural network to be make mistakes. |
Beta Was this translation helpful? Give feedback.
-
It sounds reasonable to also adjust the sigma/distance according to the input image size. But I am not sure what is the best choice. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your idea. Maybe the most common used one is the best one hhhhh. |
Beta Was this translation helpful? Give feedback.
This is a common practice to generate the heatmap target, used by many recent papers (e.g. simple baseline, HRNet)
If dist > 3 sigma, the value is too small (near zero). In order to speed up the heatmap generation, we keep these values as zero.