Pinned Loading
-
-
tf_perspective_projection
tf_perspective_projection PublicTensorFlow implementation of perspective projection.
Python 1
-
-
TensorFlow (Python) implementation o...
TensorFlow (Python) implementation of Gaussian blur of image with variable input kernel size and sigma 1def gaussian_blur(img, kernel_size=11, sigma=5):
2def gauss_kernel(channels, kernel_size, sigma):
3ax = tf.range(-kernel_size // 2 + 1.0, kernel_size // 2 + 1.0)
4xx, yy = tf.meshgrid(ax, ax)
5kernel = tf.exp(-(xx ** 2 + yy ** 2) / (2.0 * sigma ** 2))
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.