How batch renormalization can be implemented in tensorflow for speckle noise removal
Hi @alok_tripathi, To remove speckle noise you can use Gaussian blur technique which can be implemented by using tfa.image.gaussian_filter2d. For normalization you can use tf.keras.layers.BatchNormalization
layer. Thank You.