我有1000张带背景的猫图片。我想试着用UNet从这些图片中去除背景。欢迎任何建议。
我应该创建注解还是像Json文件一样的其他文件?我还没有找到一个合适的方法来做这件事。
发布于 2019-10-23 20:48:35
实现背景去除的一个很好的方法是使用cGAN或pix2pix图像到图像转换的end2end方法(您可以在gan架构中使用U-Net )
我强烈建议你阅读这篇文章:https://github.com/eti-p-doray/unet-gan-matting/blob/master/exploringImageMattingReport.pdf
你也可以使用pix2pix方法:
https://phillipi.github.io/pix2pix
http://www.k4ai.com/imageops/index.html
https://stackoverflow.com/questions/58518559
复制相似问题