Reputation: 2244
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
. 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.
Upvotes: 0
Views: 178
Reputation: 11
I was facing this problem recently as well. I learned that you need to crop the image into patches, each of about 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!
Upvotes: 1
Reputation: 456
This resolution really is overkill. You can start off with 1/64 of the size ~(600,750), which is already pretty big.
Upvotes: 1