Skip to main content
. 2026 Feb 12;12(2):23. doi: 10.3390/tomography12020023
Algorithm 2. HR and LR Relationship Acquisition Process
Input: Training set T=PH1,pL1,PH2,pL2,,PHN,pLN, where pLiR is the value of the LR pixel, PHiR(R+2)2×1 is the corresponding pixel values within the region block of the HR projection image, i=1,2,,N, and η is the learning rate.
Output: The predicted value of the LR pixel p˜LiR.
(1) Randomly select the initial value W(0).
(2) Select the sample PHi,pLi from the training set.
(3) Calculate the output of the perceptron and the mean squared error.
                  p˜Li=WPHi
                  Error=12pLip˜Li
(4) Update the weight coefficients using the SGD method.
                WWηErrorW
(5) Repeat steps (2) to (4) until the stopping criteria are met (such as reaching the maximum number of iterations or error convergence).