Skip to content

Instantly share code, notes, and snippets.

View SteveMacenski's full-sized avatar
👾

Steve Macenski SteveMacenski

👾
View GitHub Profile
@DLu
DLu / top_report.txt
Created April 10, 2020 01:41
Top ROS Packages (Full List)
---- ------------------------------------------------ -------
0 tf2-ros 3325544
1 tf 3259208
2 rviz 3231705
3 tf2-py 3145816
4 actionlib 3123089
5 tf2-msgs 3080931
6 tf2 3071916
7 sensor-msgs 3047194
8 robot-state-publisher 3034778
*** Steve's ROS Bloom Guide ***
A Release your project using GitHub releases.
Name the release the version (e.g. `0.4.3`) off the branch (e.g. diamondback-devel).
This version must also match the `package.xml` version number.
- If this is the first time releasing, you need to make a release repository.
It should be of name `<project_name>-release` (e.g. https://github.com/ros-planning/navigation2-release.git).
- Run `bloom-release navigation2 --track diamondback --rosdistro diamondback --edit`
@safijari
safijari / depth_image_filter_ros.py
Created August 2, 2016 17:20
The code I used to apply a median filter to the Intel R200 camera's depth image coming from ROS. Note that you will need to remap topics and that once the filtering is done, you will need to pass it through a depth_image_proc/point_cloud_xyz node to get a point cloud (more info here http://wiki.ros.org/depth_image_proc#depth_image_proc.2BAC8-poi…
#!/usr/bin/env python
"""
Purpose of the file: subscribe to a topic called /image_raw of type sensor_msgs/Image
Apply filter to the resulting image
"""
from __future__ import print_function
import cv2
import numpy as np
import rospy
from sensor_msgs.msg import Image
@alfredodeza
alfredodeza / how-to.txt
Last active February 2, 2024 18:47
pdf output from sphinx with rst2pdf
1. Install rst2pdf
- use your package manager (or)
- pip install rst2pdf (or)
- easy_install rst2pdf
2. Add rst2pdf to the list of extensions in conf.py
extensions = ['rst2pdf.pdfbuilder']