ggc
September 19, 2023, 3:18pm
#1
Hello everyone, i have tried to scan an old postcard.
How can i get rid of the print “effect”? In Italy i call it retinatura, maybe it’s called halftone printing in english.
here you can find the scan: SwissTransfer.com - Envoi sécurisé et gratuit de gros fichiers
Thank you in advance.
Claes
September 19, 2023, 3:24pm
#2
Ciao @ggc ,
Search for Gimp remove raster
and gimp fft
I have a scanned-in picture, that I think was originally printed on paper that had a texture. I suppose it was okay as a print, but it makes it hard to GIMP it. Is there a way to smooth out the pattern?
Here is a sample at 200% zoom.
[Screenshot 2022-07-31 115630]
Cord. Sal.,
Claes a Lund, Svezia
3 Likes
ggc
September 19, 2023, 8:14pm
#3
Thank you, i have tried by hand with g’mic fft and after with the g’mic repair-descreen plugin that in a click does the same and maybe even better!
3 Likes
paulmatth
(Paul Matthijsse)
September 20, 2023, 12:39pm
#4
Hello, I use G’mic descreen for that, works fine for scans of printed materials.
On the picture below: left original scan, right after descreening, both at 100%.
3 Likes
ggc
September 20, 2023, 4:27pm
#5
yes it’s the one i mentioned.
btw, how do i call it from commandline gimp? I have almost never use gmic from commandline, but haven’t found a way to call this particular filter.
xpatUSA
(Ted Cousins)
September 20, 2023, 5:27pm
#6
In the GIMP, I applied 2.5 px Gaussian Blur, downsized 50% cubic, up sized 200% cubic, voila
Effect reduced but not “got rid of”
full size here: http://kronometric.org/phot/temp/CartolinaCaviLavagna-Viaggiata1968%20gimp%20Ted.jpg
1 Like
paulmatth
(Paul Matthijsse)
September 21, 2023, 10:05am
#7
From the commandline, it used to be ‘fx_pahlsson_descreen’.
But when I use this now, with a newer version of gmic, it says
[gmic]-1./ *** Error *** Unknown command or filename ‘fx_pahlsson_descreen’.
When I use this filter from Gimp and say ‘copy command to clipboard’, it outputs exactly the above string.
So we must ask @David_Tschumperle what’s going on…
1 Like
The difference between the command line tool and the GIMP plug-in is that the CLI tool does not embed the gmic-community filters by default.
fx_pahlsson_descreen is a command defined in the community filters.
$ gmic update
allows to get this command back in the CLI tool.
1 Like
paulmatth
(Paul Matthijsse)
September 21, 2023, 11:49am
#9
Thanks David, that worked!
1 Like
paulmatth
(Paul Matthijsse)
September 21, 2023, 11:54am
#10
ggc, here’s the command to descreen your postcards in batch, assuming you store them in a folder called postcards :
cd ~/postcards
for i in *
do
gmic input $i fx_pahlsson_descreen 0 output descreen_$i
done
exit
1 Like
ggc
September 23, 2023, 8:19am
#11
That is exactly what i wanted to do, thank you!