Open tobyshooters opened 4 years ago
hello @tobyshooters , have you finished you project yet ? What i am doing now is quite familiar with your step . I am trying to use the IUV output to find specific point of the image and point it in the original image . I would be quite grateful if you can show me your step or code.
I'm writing my own post-processing step for DensePose. I want to align the IUV output to my source image. To do this, I use the
bbox_XYXY
to copy the IUV array into a largernp.zeros(frame.shape)
.Very frequently I get an off-by-1 error, but not always.
This is likely a rounding error somewhere in the Densepose pipeline. After looking around the codebase, I've realized that for visualization, you resize the array to match the image.
I wanted to double-check that the reason for the resize is this rounding error, or if there's a bug somewhere else in my code.