I've taken the task to decipher a bit of handwritten text of an old birth/baptism statement (1734), which has washed ink at the bottom of the page (see original photo Chavane.jpg).
More specifically, it is for the erased text, beginning just after the last name entry, Chavane, where you could barely read "Le dix neuf décembre...".. The best attempt our president could do is shown as Chavane2.jpg.
I tried isolating only the erased part, and this should be really our starting point, before applying different techniques (for example these), but my knowledge on image processing is very low, and the result is not much better. The best I could obtain is under clahe_2.png, with this code:
import cv2 as cv
img = cv.imread('Chavane.jpg',0)
# create a CLAHE object (Arguments are optional).
clahe = cv.createCLAHE(clipLimit=2.0, tileGridSize=(8,8))
cl1 = clahe.apply(img)
Before trying to erase with Gimp pixel by pixel, I would like to be sure this is really the best base.
You can use division normalization in Python/OpenCV to improve the quality.
Input:
Division image:
Unsharp image: