U-net: replication using Pytorch [复现U-Net竟然如此简单]
## Objective - Implement U-net use Pytorch ## Paper Ronneberger, O., Fischer, P., & Brox, T. (2015). U-net: Convolutional networks f...
Read more »## Objective - Implement U-net use Pytorch ## Paper Ronneberger, O., Fischer, P., & Brox, T. (2015). U-net: Convolutional networks f...
Read more »Turtlebot: Turtlebot development environment 开发环境搭建 # Objectives: - Install Turtlebot2 on Ubuntu 16.04 (ROS Kinetic) - Install Turtleb...
Read more »## Objective: - Install and use Realsense camera in Docker image 如何在Docker中安装与使用Realsense camera ## Docker image ### Ubuntu 16 ```...
Read more »# End-to-End Driving Via Conditional Imitation Learning
Read more »# 简介 - PPT 往往对数学公式的支持很不友好,录入Latex格式的数学公式非常麻烦 - Markdown较好的支持了Latex数学公式 - Markdown可以快速的调整格式,比如 标题级别,列表 等等 # revealjs 这是一个Javascript 工程,用...
Read more »# Issue GUI cannot be started when I run RVIZ and other GUI programs ```sh root@yubao-desktop:~/catkin_ws/src# rosrun rviz rviz QStandard...
Read more »# Synopsis - Study Notes of the paper: Detect-SLAM Zhong, F., Wang, S., Zhang, Z., Chen, C., & Wang, Y. (2018). Detect-SLAM: Making ...
Read more »## Skey-symmetirc symple: a^\hat{} b ## Example: $$ a \times b = \begin{bmatrix} i & j & k \\\ a_1 & a_2 & a_3 \\\ b...
Read more »## Latex source code - Method 1: ```latex \documentclass{article} \usepackage{amsmath} \begin{document} \begin{equation} D_{it} = ...
Read more »# Imagej Download - https://imagej.nih.gov/ij/download.html
Read more »## Objective: - create directory - create temporary directory - delete directory
Read more »# Install doxygen ```sh sudo apt install doxygen* ``` # How to use doxygen - Step 1: Creating a configuration file ```sh doxygen -g...
Read more »## Method 1 ```sh git checkout gh-pages git checkout -- git add . git commit -m "update" git push git checkout master ```
Read more »# Objective - Build development environment - Build RGBD SLAM v2 - Run RGBD SLAMv2 use TUM dataset # Environment - Host: Ubuntu18 - Dock...
Read more »# Installation ## Install Eigen from source code ```sh git clone https://gitlab.com/libeigen/eigen.git ``` In fact, the header files in ...
Read more »# Environment - Host: ubuntu 18.04 with cuda 10.2 and nvidia-440 - Docker image: ubuntu 16.04 # Example: Run Rviz ```sh # rosrun rviz ...
Read more »## Error Description ```sh locate libGL.so bash: locate: command not found ```
Read more »Docker: disable setting time zones and keyboard
Read more »教你免费搭建自己的wordpress博客 [toc] # 利用 Google Cloud Platform免费搭建Wordpress 永久免费方案: https://cloud.google.com/free/ 在这个范围内是永久免费的
Read more »# 目标 - 如何使用TUM数据集? - 如何用SLAM跑TUM数据集? - 如何评价SLAM定位的好坏? # 获取数据集 - [TUM RGBD dataset](https://vision.in.tum.de/data/datasets/rgbd-dataset/d...
Read more »## Error Description ```sh File "/home/yubao/data/software/rgbd_benchmark_tools/scripts/evaluate_ate.py", line 210, in imp...
Read more »## Target - 在类中如何使用回调函数? - 如何在回调函数中绑定当前类? - 如何对回调函数进行传参?
Read more »## 目标 - 如何在类中使用非静态成员函数创建线程
Read more »# Targets - Run pangolin in a seperate thread <--more--> # Source code ```cpp #include #include #include <pangolin/p...
Read more »# 目标 - 在着色器之间传送数据 - 从CPU向GPU里传送数据(使用uniform), 动态改变颜色的值 # 在着色器之间传送数据 ## 关键代码: ```cpp // 顶点着色器 const char* vertexShaderSource ...
Read more »# 目标 - 画一个矩形 # 原理 ## 坐标 一个矩形相当于两个三角形 两个三角形的坐标为: ```cpp float vertices[] = { // first triangle 0.5f, 0.5f, 0.0f, // t...
Read more »## 目标: - 使用顶点着色器对三角形向右平移0.8个单位 ## 顶点着色器 ```cpp // 顶点着色器 const char* vertexShaderSource = "#version 400 core\n" ...
Read more »# 目标 - 学会使用VAO, VBO - 画一个三角形 (使用默认着色器) # 原理 ## 归一化坐标表示 ![](https://learnopengl.com/img/getting-started/ndc.png) ## vertex buffer ob...
Read more »Share study experience about Computer Vision, SLAM, Deep Learning, Machine Learning, and Robotics