Skip to content
View Harimus's full-sized avatar

Block or report Harimus

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. Kaixhin/imitation-learning Kaixhin/imitation-learning Public

    Imitation learning algorithms

    Python 461 39

  2. PyTorch implementation of Laplacian ... PyTorch implementation of Laplacian Pyramid Loss. Only 2D images, the code only takes stride=1, but kernel size can be modified.
    1
    import torch
    2
    import numpy as np
    3
    import torch.nn.functional as F
    4
    
                  
    5
    
                  
  3. felixengstrom/RAS-2017-group1 felixengstrom/RAS-2017-group1 Public

    Jupyter Notebook

  4. hand_eye_calibration_solver.py hand_eye_calibration_solver.py
    1
    """ A hand-eye calibration with minimal (numpy) dependency
    2
    The calibration algorithm is from 'Hand-eye calibration using dual quaternion'
    3
    by Konstantinos Daniilidis 1998.
    4
    5
    It comes with helper functions for rotation/quaternion transformations.