简体   繁体   English

使用 CNN 去噪图像中的图像尺寸

[英]Image Dimension Size in Denoising Image using CNN

I have a set of synthetically noisy images.我有一组合成噪声图像。 Example is shown below:示例如下所示:

在此处输入图像描述

I have also their corresponding clean text images as my ground truth data.我也有他们相应的干净文本图像作为我的地面实况数据。 Example below:下面的例子:

在此处输入图像描述

The dimension size of the two images is 4918 x 5856 .两张图片的尺寸为4918 x 5856 Is it an appropriate size for training my Convolutional Neural Network that will perform image denoising.它是否适合训练我的卷积神经网络来执行图像去噪。 If no, what shall I do?如果没有,我该怎么办? Resize or crop?调整大小或裁剪? Thanks.谢谢。

This resolution really is overkill.这个决议真的是矫枉过正。 You can start off with 1/64 of the size ~(600,750), which is already pretty big.您可以从大小的 1/64 ~(600,750) 开始,这已经相当大了。

I was facing this problem recently as well.我最近也面临这个问题。 I learned that you need to crop the image into patches, each of about 500x500.我了解到您需要将图像裁剪成补丁,每个大约 500x500。 Then you need to denoise each patch and put it all together.然后你需要对每个补丁进行去噪并将它们放在一起。 This usually gets the most accurate results.这通常会得到最准确的结果。 Let me know if you need anything else需要帮助请叫我

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM