Skip to content
View silgon's full-sized avatar

Block or report silgon

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. ems ems Public

    Emoji Search Bash (EMS)

    Shell 7

  2. group_detection_ws group_detection_ws Public

    Algorihtm for detection of groups based on low level features

    Python 1 2

  3. Python curve_fit function with 2d data Python curve_fit function with 2d data
    1
    # curvefit with non linear least squares (curve_fit function)
    2
    import numpy as np
    3
    from scipy.optimize import curve_fit
    4
    
                  
    5
    def func(x, a, b, c):
  4. minimize_circle_ellipse_size_points.md minimize_circle_ellipse_size_points.md
    1
    ![image](https://user-images.githubusercontent.com/901061/172669661-7bf65f60-254a-469a-980f-9194c579e9f5.png)
  5. Get distance and angle of the closes... Get distance and angle of the closest obstacle from pose and map
    1
    #include <ros/ros.h>
    2
    #include <nav_msgs/OccupancyGrid.h>
    3
    #include <geometry_msgs/PoseStamped.h>
    4
    #include <tf/tf.h>
    5
    #include <tf/transform_listener.h>
  6. Boost Log example with channel and f... Boost Log example with channel and file generation.
    1
    // compile with
    2
    // g++ -std=c++11 test_log_default.cpp -DBOOST_LOG_DYN_LINK -lboost_log -lboost_thread -lpthread -lboost_system
    3
    #include <iostream>
    4
    #include <boost/log/expressions.hpp>
    5
    #include <boost/log/sources/severity_channel_logger.hpp>