logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

SLAM算法的一些杂谈

你需要使用 **`Octomap`** 将 FAST-LIVO2 的**三维体素/点云地图**进行**体素化**,并投影生成**二维占据栅格地图(2D Occupancy Grid Map)**,供 Nav2 的全局规划器使用。| **Sphere-VIO** | **统一球面表示**(专为多相机设计) | EuRoC数据集上ATE RMSE为**0.1072米**,优于VINS-Fusion约*

#机器人
解决QSocketNotifier: Socket notifiers cannot be enabled or disabled from another thread

例如在主线程中:m_Client = new MyClient();在新开的线程:std::thread sendThread(&socketTest::sendThreadProc, this);sendThreadProc里面不要使用m_Client发送数据,而是再创建一个MyClient对象来发送数据。不要在新创建的线程中使用另一个线程的socket发送数据,需要新建一个socket来发送数

文章图片
#java#服务器#网络
tensorrt获取输入输出

【代码】tensorrt获取输入输出。

文章图片
#java#前端#服务器
tensorrt C++推理

【代码】tensorrt C++推理。

文章图片
#c++#开发语言
onnx转tensorrt

【代码】onnx转tensorrt。

文章图片
#python#深度学习#机器学习
VLA研究常用数据集

VLA SOTA哪家强? 盘点20个VLA benchmarks_vlabench-CSDN博客

#机器人
pytorch简单的二分类

train.py# from torchvision.models.resnet import resnet34# from dataset import datasest# from torch.optim.lr_scheduler import StepLR# from torch.nn import CrossEntropyLoss# import torch# from torch.uti

#pytorch#分类#深度学习
各种IOUloss的pytorch实现

def bbox_iou(box1, box2, x1y1x2y2=True, GIoU=False, DIoU=False, CIoU=False):# Returns the IoU of box1 to box2. box1 is 4, box2 is nx4box2 = box2.t()# Get the coordinates of bounding boxesif x1y1x2y2:#

SPP的pytorch实现

from torch import nnimport torchclass SPP(nn.Module):def __init__(self):super(SPP, self).__init__()self.pool1 = nn.MaxPool2d(kernel_size=5,stride=1,padding=5 // 2)self.pool2 = nn.MaxPool2d(kernel_size

Darknet53 pytorch版

import torchfrom torch import nnimport torch.nn.functional as Fclass ConvolutionalLayer(nn.Module):def __init__(self,in_channels,out_channels,kernal_size,stride,padding):super(Con...

    共 69 条
  • 1
  • 2
  • 3
  • 7
  • 请选择