Skip to main content
. 2021 Aug;9(16):1307. doi: 10.21037/atm-21-3457
Algorithm 1: Standard Expression Model Construction Algorithm
Input: set of frames F, Number of iterations N;
Output: SEM
1 First_F ← Read first frame
2 Base_img ← Preprocess (First_F)
3 While N > 0 do
4    New_F ← Read next frame
5    New_img ← Preprocess (New_F)
6    Base_img ← Average (Base_img, New_img)
7    N--
8 SEM ← Base_img
9 Return SEM