|
Algorithm 1: MR imaging modality transformation algorithm with CT as input. |
|
Input: CT-MR dataset with corresponding relationship, initial model weight |
|
Output: model weight W * after training |
| 1: for i = 1 to n//n indicates the number of training sessions |
| 2: Randomly read data from the corresponding CT-MR dataset
|
| 3: if i%3==0: |
| 4: Update the parameters and of the discriminator in the model through the objective optimization function
|
| 5: End if
|
| 6: Update the parameters of the generator and of the inverse generator in the model through the objective optimization function
|
| 7: End for
|
| 8: Return generator
|