Skip to content
View blzq's full-sized avatar

Highlights

  • Pro

Block or report blzq

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. 3D-pose-estimation 3D-pose-estimation Public

    Python 1 1

  2. tf_smpl tf_smpl Public

    TensorFlow interface for SMPL model. Code by https://github.com/akanazawa/hmr extracted as a separate repo.

    Python 34 11

  3. tf_perspective_projection tf_perspective_projection Public

    TensorFlow implementation of perspective projection.

    Python 1

  4. realistic-manipulable-faces realistic-manipulable-faces Public

    Python

  5. TensorFlow (Python) implementation o... TensorFlow (Python) implementation of Gaussian blur of image with variable input kernel size and sigma
    1
    def gaussian_blur(img, kernel_size=11, sigma=5):
    2
        def gauss_kernel(channels, kernel_size, sigma):
    3
            ax = tf.range(-kernel_size // 2 + 1.0, kernel_size // 2 + 1.0)
    4
            xx, yy = tf.meshgrid(ax, ax)
    5
            kernel = tf.exp(-(xx ** 2 + yy ** 2) / (2.0 * sigma ** 2))