自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(22)
  • 收藏
  • 关注

原创 ROCM报错cmath

rocm报错cmath

2023-08-17 16:26:00 189

原创 ubuntu安装openslide教程

ubuntu安装openslide

2023-06-19 17:53:14 507 1

原创 c++使用dlopen

c++使用dlopen

2023-05-25 19:25:34 777

原创 阿帕奇配置pem证书

apache2

2023-05-23 15:32:56 421

原创 pytorch导出动态batch的onnx文件

pytorch导出动态batch onnx

2023-03-28 14:32:45 249

原创 pytorch转onnx自定义算子

pytorch导出含有自定义算子的onnx文件

2022-12-21 14:45:15 1030 2

原创 linux c++遍历文件夹下文件

linux系统下c++遍历文件夹下文件

2022-12-05 16:20:37 1227 2

原创 c++计算程序执行时间

c++计算程序执行时间

2022-11-16 17:54:24 259

原创 c++单例写法

c++单例写法

2022-10-26 13:18:38 543

原创 pybind11案例

pybind11使用教程

2022-10-20 17:14:46 289

转载 cmake设置debug和release版本

cmake debug release

2022-06-23 16:18:18 2511

原创 libtorch读取数组(读取内存)

at::Tensor tensor = torch::from_blob(array, Height * Width * Chanels, torch::TensorOptions().dtype(torch::kInt32)).clone();

2022-05-11 14:03:59 781

原创 undefined reference to `google::protobuf::internal::VerifyVersion(int, int, char const*)‘ 错误解决方法

解决方法:在工程CMakeLists.txt中添加find_package(Protobuf REQUIRED)include_directories(${PROTOBUF_INCLUDE_DIR})target_link_libraries(main student ${PROTOBUF_LIBRARY})

2022-04-21 14:05:04 1357 1

原创 ubuntu18.04安装远程桌面

方法:利用xrdp1.下载以及安装。wget http://www.c-nergy.be/downloads/install-xrdp-3.0.zipunzip install-xrdp-3.0.zipchmod +x Install-xrdp-3.0.sh./Install-xrdp-3.0.sh2.然后输入账户密码,等待安装结束安装结束后可能还会出现闪退现象,此时:echo gnome-session > ~/.xsession3.所有工作完成。参考链接:ubuntu18

2022-04-14 09:53:40 1206

原创 c++ 对结构体分级排序

对于结构体分级排序,例如:typedef struct Point{ int x; int y; float z; int index;}Point;现在要将vector<Point>数据按照x从小到大,y从小到大,z从大到小排序。解决方法:利用运算符重载。typedef struct Point{ int x; int y; float z; int index; bool operator < (const Point &b){ if(x !=

2022-04-13 16:38:31 1018

原创 linux clock函数

由于之前踩坑,发现clock计时不准确。特意记录一下程序计时方法。结论:程序计时使用c++ 11的chrono,不要使用clock。原文链接:c++异步处理和clock函数踩坑1. 异步处理异步处理,在本文,只是为了多线程加速程序运行速度。异步处理一般需要有如下步骤,1.1 确认或者封装需要异步处理的函数这个过程可以理解为,将一个运行速度慢,需要加速的部分,拆解为很多小模块,每个小模块自身比较快。那么,在每个线程中,只运行这个小块,多个线程同时工作的时候,总体的时间就会比较少。1.2 调用异

2022-04-11 17:04:21 1556

原创 c++ lambda函数

c++ lambda函数能够提升性能,减少函数开销例子如下:#include <iostream>#include <time.h>using namespace std;#define N 10000000void test(){ for(int i = 0; i < N; i++){}}int main(){ clock_t start, end; start = clock(); test(); end =

2022-04-11 11:25:27 1279 1

原创 ubuntu开机启动程序 supervisor

1.安装supervisorsudo apt-get updatesudo apt-get install supervisor2.建立启动项目cd /etc/supervisor/conf.dsudo vim pwm.conf3.所有启动项目都是一个xxx.conf的文件,例如我的pwm程序如下:[program:pwm]command = /home/wsy/install/pwm_setautostart = true此处,我需要开机执行的命令是/home/wsy/insta

2022-03-24 10:04:47 2341

原创 python open3d报错 DeprecationWarning: `np.float` is a deprecated

根据警告原因,发现是sklearn导致。解决方法:更新sklearnpip install --upgrade scikit-learn问题解决

2022-03-17 17:39:29 1157

原创 opencv c++配置测试

操作系统:ubuntu20.04版本:opencv4.xCMakeLists.txtcmake_minimum_required(VERSION 3.0 FATAL_ERROR)project(main)find_package(OpenCV REQUIRED)include_directories(${OpenCV_INCLUDE_DIRS})message("OpenCV include: " ${OpenCV_INCLUDE_DIRS})link_directories(${OpenC

2022-03-17 15:31:42 3930 1

原创 ubuntu20.04安装pycharm并创建快捷方式

1.下载pycharm安装包,放在安装目录,比如我是在home/user/install目录下2.在桌面创建快捷方式pycharm.desktop[Desktop Entry]Version=1.0Type=ApplicationName=PycharmIcon=/home/user/install/pycharm-community-2021.3.2/bin/pycharm.pngExec=sh /home/user/install/pycharm-community-2021.3.2/bi

2022-03-17 10:09:25 1219

转载 2021-06-21

tensorflow 如何保存pb文件和读取pb文件本文章参考tensorflow如何保存pb文件和读取pb文件 ,主要目的是记录学习tensorflow的过程以及防止找不到原文章。保存pb文件import tensorflow as tfx = tf.placeholder(tf.float32,name="input")a = tf.Variable(tf.constant(5.,shape=[1]),name="a")b = tf.Variable(tf.constant(6.,sha

2021-06-21 15:52:18 246

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除