Background-Matting icon indicating copy to clipboard operation
Background-Matting copied to clipboard

What is compose_image_withshift

Open bluesky314 opened this issue 4 years ago • 4 comments

I had some confusion about the function compose_image_withshift and why is needed as opposed to just the regular composition? How is it using the seg mask?

bluesky314 avatar Jul 16 '20 10:07 bluesky314

While training on real images without supervision, we compose the foreground on the same background but after shifting it left or right. We use a discriminator on the composed image to pick inconsistency in matting. Now if it is composed back to the same background this inconsistency is not noticeable, but after applying a random shift it might be more noticeable. We do also compose the image into a random background from a different scene. So either compose into a random background or same background with a small shift.

senguptaumd avatar Jul 21 '20 21:07 senguptaumd

this function n=np.random.randint(-(y1-10),al_tmp.shape[1]-y2-10), sometimes will happen ValueError: low >= high. why? @senguptaumd

leemengxing avatar Aug 26 '20 15:08 leemengxing

np.random.randint(x,y) generates random integers between x and y. This error means y<x.

senguptaumd avatar Aug 26 '20 15:08 senguptaumd

If people account for a large proportion of the image, it is easy to approach the boundary. that mean -(y1-10)>0,and al_tmp.shape[1]-y2-10<0. In this case, I'd better not shift. Is it possible to remove this operation? thks @senguptaumd

leemengxing avatar Aug 27 '20 02:08 leemengxing