Skip to content
View hq-jiang's full-sized avatar
Block or Report

Block or report hq-jiang

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

  1. instance-segmentation-with-discriminative-loss-tensorflow instance-segmentation-with-discriminative-loss-tensorflow Public

    Tensorflow implementation of "Semantic Instance Segmentation with a Discriminative Loss Function"

    Python 171 47

  2. CarND-Behavioral-Cloning CarND-Behavioral-Cloning Public

    A car in a simulated environment learns the behaviour from a human driver

    Python 1

  3. CarND-Capstone CarND-Capstone Public

    Forked from cruise-control/CarND-Capstone

    Jupyter Notebook

  4. front-end-travel-app front-end-travel-app Public

    This web app gives the user weather data and images for their desired travel destination

    JavaScript

  5. homography_estimation.py homography_estimation.py
    1
    def find_homography(points_source, points_target):
    2
        A  = construct_A(points_source, points_target)
    3
        u, s, vh = np.linalg.svd(A, full_matrices=True)
    4
        
    5
        # Solution to H is the last column of V, or last row of V transpose