logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

地图数据可视化库folium

简介:folium是js上著名的地理信息可视化库leaflet.js为Python提供的接口,通过它,我们可以通过在Python端编写代码操纵数据,来调用leaflet的相关功能。通过定义一个Map对象并不断添加图层元素,最后将Map对象保存为html文件并在浏览器中进行显示。安装:pip install folium --user使用:#! /usr/bin/env py...

#python
用evo工具评估SLAM轨迹

evo github 地址:https://github.com/MichaelGrupp/evo不同格式的轨迹文件及相互转换:https://github.com/MichaelGrupp/evo/wiki/Formats问题汇总:https://github.com/MichaelGrupp/evo/issues?q=is%3Aissue+is%3Aclosed1、安装 evo...

#人工智能
C++ 单元测试框架 Google Test (gtest)

一、安装git clone https://github.com/google/googletestcd googletestmkdir buildcd buildcmake .. -DCMAKE_CXX_FLAGS='-std=c++11' # 不指定c++11标准会报错makesudo make install安装完之后生成的头文件位于/usr/local/include/gtest/下,静态

#单元测试#c++#windows
C++ 单元测试框架 Google Test (gtest)

一、安装git clone https://github.com/google/googletestcd googletestmkdir buildcd buildcmake .. -DCMAKE_CXX_FLAGS='-std=c++11' # 不指定c++11标准会报错makesudo make install安装完之后生成的头文件位于/usr/local/include/gtest/下,静态

#单元测试#c++#windows
Eigen库使用(C++例程)

测试程序:#include<iostream>#include<Eigen/Eigen>using namespace std;#define pi 3.14159265359int main(){cout << "##-------------------搞清旋转关系-------------------##" << en...

文章图片
#c++#矩阵#线性代数
Eigen库使用(C++例程)

测试程序:#include<iostream>#include<Eigen/Eigen>using namespace std;#define pi 3.14159265359int main(){cout << "##-------------------搞清旋转关系-------------------##" << en...

文章图片
#c++#矩阵#线性代数
用evo工具评估SLAM轨迹

evo github 地址:https://github.com/MichaelGrupp/evo不同格式的轨迹文件及相互转换:https://github.com/MichaelGrupp/evo/wiki/Formats问题汇总:https://github.com/MichaelGrupp/evo/issues?q=is%3Aissue+is%3Aclosed1、安装 evo...

#人工智能
用evo工具评估SLAM轨迹

evo github 地址:https://github.com/MichaelGrupp/evo不同格式的轨迹文件及相互转换:https://github.com/MichaelGrupp/evo/wiki/Formats问题汇总:https://github.com/MichaelGrupp/evo/issues?q=is%3Aissue+is%3Aclosed1、安装 evo...

#人工智能
使用matplotlib绘图

1、安装:sudo apt-get install python-matplotlib2、常用代码:import matplotlib.pyplot as plt#from matplotlib import pyplot as pltimport numpy as npx1 = [1, 3, 5, 7, 9]y1 = 2 * x1 + [1]x2 = list(ra...

#python#matlab#机器学习
随机数生成(均匀分布、正态分布、C++)

一、生成均匀分布的随机数1. rand生成的随机数在0到RAND_MAX(2147483647)之间,在stdlib中定义,使用 % 结合 / 可生成某个范围内的随机数,但是这里生成的随机数是唯一确定的。#include <iostream>int main () {for (int i = 0; i < 10; ++i) {std::cout << rand() &

    共 17 条
  • 1
  • 2
  • 请选择