会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
西北逍遥
每一个不能早起的日子,都是对生命的浪费!
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
81
82
83
84
85
86
87
88
89
···
96
下一页
2019年6月6日
c++ for each
摘要: #include <iostream>#include <vector>#include <list> using namespace std; int main(){ vector<int> a; for (int k=0;k<10;k++) { a.push_back(k); } list<ch
阅读全文
posted @ 2019-06-06 08:41 西北逍遥
阅读(3970)
评论(0)
推荐(1)
2019年6月5日
c++ 指针
摘要: #include <iostream> using namespace std; class AHasPtr {public: AHasPtr(int *p, int i):ptr(p), val(i) {} int getVal() { return this->val; } int *getPt
阅读全文
posted @ 2019-06-05 09:47 西北逍遥
阅读(155)
评论(0)
推荐(0)
深复制、浅复制
摘要: #include <iostream> using namespace std; class CDemo {public: CDemo(int pa,char *cstr) { this->a = pa; this->str = new char[104]; strcpy(this->str,cst
阅读全文
posted @ 2019-06-05 08:53 西北逍遥
阅读(139)
评论(0)
推荐(0)
2019年6月4日
test result
摘要:
阅读全文
posted @ 2019-06-04 20:30 西北逍遥
阅读(279)
评论(0)
推荐(0)
2019年6月3日
c++函数模板
摘要: #include <iostream>#include <string>#include <fstream>#include <sstream> using namespace std; template<typename T>int compare(const T &v1, const T &v2
阅读全文
posted @ 2019-06-03 21:15 西北逍遥
阅读(183)
评论(0)
推荐(0)
c++ template Queue
摘要: #pragma once#include <iostream>#include <iomanip> using namespace std; template<class T>class Queue{ struct Node { T a; Node *next; }; public: Queue()
阅读全文
posted @ 2019-06-03 20:29 西北逍遥
阅读(352)
评论(0)
推荐(0)
Queue class
摘要: #pragma once#include <iostream>#include <iomanip> using namespace std; class Queue{ struct Node { int a; Node *next; }; public: Queue(); void push(int
阅读全文
posted @ 2019-06-03 19:46 西北逍遥
阅读(271)
评论(0)
推荐(0)
2019年6月2日
test
摘要: public slots: //打开Pts文件按钮点击事件 void OnOpenFileButtonClick(); //分析按钮点击事件 void OnAnalysisButtonClick(); //保存按钮点击事件 void OnSaveButtonClock(); //连接按钮点击事件 v
阅读全文
posted @ 2019-06-02 18:52 西北逍遥
阅读(283)
评论(0)
推荐(0)
2019年5月31日
智能指针-共享式shared_ptr
摘要: #include <iostream>#include <string>#include <vector>#include <memory> using namespace std; class Person{ public: string name; shared_ptr<Person> moth
阅读全文
posted @ 2019-05-31 15:10 西北逍遥
阅读(306)
评论(0)
推荐(0)
shared pointer
摘要: #include <string>#include <fstream>#include <memory>#include <cstdio> class FileDeleter{ private: std::string filename; public: FileDeleter(const std:
阅读全文
posted @ 2019-05-31 14:18 西北逍遥
阅读(372)
评论(0)
推荐(0)
realsense数据分析
摘要: line: (434,300) (453,144) (0,0,0),(-0.926698,-1.25853,2.032) 0.781452 line: (259,104) (472,107) (-1.14799,-1.27092,2.052),(-1.11387,-1.25048,2.019) 0.
阅读全文
posted @ 2019-05-31 13:57 西北逍遥
阅读(481)
评论(0)
推荐(0)
2019年5月30日
cmake log
摘要: 20:28:54: 为项目RoboticArmProject_CarTerminal_V20190530执行步骤 ...20:28:54: 正在启动 "/usr/bin/make" clean -j4 rm -f moc_predefs.hrm -f moc_mainwindow.cpprm -f
阅读全文
posted @ 2019-05-30 20:33 西北逍遥
阅读(801)
评论(0)
推荐(0)
2019年5月29日
openpose关节图
摘要:
阅读全文
posted @ 2019-05-29 09:37 西北逍遥
阅读(1427)
评论(0)
推荐(0)
2019年5月28日
Qt自定义类添加qvector报错
摘要: PtsData& PtsData::operator=(const PtsData& obj){ return *this;} PtsData::~PtsData(){ }
阅读全文
posted @ 2019-05-28 20:14 西北逍遥
阅读(1102)
评论(0)
推荐(0)
Java csv
摘要: CsvWriter csvWriter = new CsvWriter("data2019052803.csv", ',', Charset.forName("UTF-8")); String[] header1 = {"","holdf","holdb","dropf","dropb","swin
阅读全文
posted @ 2019-05-28 15:45 西北逍遥
阅读(287)
评论(0)
推荐(0)
2019年5月27日
opencv C++ mask_rcnn
摘要: https://github.com/spmallick/learnopencv/tree/master/Mask-RCNN https://www.learnopencv.com/deep-learning-based-object-detection-and-instance-segmentat
阅读全文
posted @ 2019-05-27 14:02 西北逍遥
阅读(790)
评论(0)
推荐(0)
2019年5月25日
realsense data
摘要: line: (43,350) (558,350) (-0.448628,-0.554531,0.995),(0,0,0) 0.713282 line: (334,247) (516,244) (-0.605746,-0.552859,0.992),(0,0,0) 0.820111 line: (11
阅读全文
posted @ 2019-05-25 16:47 西北逍遥
阅读(158)
评论(0)
推荐(0)
2019年5月24日
Test
摘要: 0--֡ Angle:156.70107362674617 Start_joint_type:20 Center_joint_type:8 end_joint_type:9 x:-0.1622750163078308 y:0.0280570387840271 z:7.600784301757812E
阅读全文
posted @ 2019-05-24 20:36 西北逍遥
阅读(200)
评论(0)
推荐(0)
2019年5月23日
ubuntu18 bluebooth
摘要: 19:36:14: The program has unexpectedly finished. 19:36:14: The process was ended forcefully.<!--EndFragment--> <!--EndFragment-->
阅读全文
posted @ 2019-05-23 19:39 西北逍遥
阅读(328)
评论(0)
推荐(0)
LSTM_Model
摘要: #!/usr/bin/python# -*- coding: utf-8 -*- import tensorflow as tf class TRNNConfig(object): """RNN配置参数""" # 模型参数 embedding_dim = 64 # 词向量维度 seq_length
阅读全文
posted @ 2019-05-23 17:15 西北逍遥
阅读(918)
评论(0)
推荐(0)
2019年5月21日
QThread
摘要: if (vcrealsensethread != Q_NULLPTR) { if (vcrealsensethread->isRunning()) { vcrealsensethread->terminate(); } }
阅读全文
posted @ 2019-05-21 21:08 西北逍遥
阅读(154)
评论(0)
推荐(0)
2019年5月20日
object_detection faster-rcnn
摘要: (t20190518) luo@luo-All-Series:~/MyFile/TensorflowProject/Faster_RCNN/models/research$ (t20190518) luo@luo-All-Series:~/MyFile/TensorflowProject/Faste
阅读全文
posted @ 2019-05-20 07:22 西北逍遥
阅读(873)
评论(0)
推荐(0)
2019年5月19日
github上有对应官方的各种模型
摘要: https://github.com/tensorflow/models/blob/master/research/object_detection/g3doc/detection_model_zoo.md python object_detection/model_main_2019051801.
阅读全文
posted @ 2019-05-19 10:39 西北逍遥
阅读(745)
评论(0)
推荐(0)
ubuntu Tensorflow object detection API 开发环境搭建
摘要: https://blog.csdn.net/dy_guox/article/details/79111949 luo@luo-All-Series:~$ luo@luo-All-Series:~$ source activate t20190518(t20190518) luo@luo-All-Se
阅读全文
posted @ 2019-05-19 10:34 西北逍遥
阅读(428)
评论(0)
推荐(0)
protobuf ubuntu 18.04环境下安装
摘要: (t20190518) luo@luo-All-Series:~/MyFile$ (t20190518) luo@luo-All-Series:~/MyFile$ (t20190518) luo@luo-All-Series:~/MyFile$ (t20190518) luo@luo-All-Ser
阅读全文
posted @ 2019-05-19 10:04 西北逍遥
阅读(1976)
评论(0)
推荐(0)
2019年5月18日
TensorFlow Object Detection API —— 制作自己的模型
摘要: https://blog.csdn.net/qq_24474463/article/details/81530900 (t20190518) luo@luo-All-Series:~/MyFile/TensorflowProject/Faster_RCNN/models/research$ (t20
阅读全文
posted @ 2019-05-18 21:14 西北逍遥
阅读(347)
评论(0)
推荐(0)
computer5 environment
摘要: luo@luo-All-Series:~/MyFile/Anaconda3$ luo@luo-All-Series:~/MyFile/Anaconda3$ luo@luo-All-Series:~/MyFile/Anaconda3$ conda create -n t20190518 python=
阅读全文
posted @ 2019-05-18 15:52 西北逍遥
阅读(204)
评论(0)
推荐(0)
2019年5月17日
qt application logging
摘要: “AnalysisPtsDataTool201905.exe”(Win32): 已加载“F:\OpencvProject\ZY-Project\x64\Debug\AnalysisPtsDataTool201905.exe”。已加载符号。“AnalysisPtsDataTool201905.exe”
阅读全文
posted @ 2019-05-17 12:01 西北逍遥
阅读(5510)
评论(0)
推荐(0)
Qt打开文件QFileDialog
摘要: //打开Pts文件按钮点击事件void AnalysisPtsDataTool201905::OnOpenFileButtonClick(){ qDebug()<<"open file..."; //定义文件对话框类 QFileDialog *fileDialog = new QFileDialog
阅读全文
posted @ 2019-05-17 10:45 西北逍遥
阅读(9665)
评论(0)
推荐(0)
Windows Qt 项目中文乱码
摘要: 在头文件中加入 #if _MSC_VER >= 1600 #pragma execution_character_set("utf-8") #endif
阅读全文
posted @ 2019-05-17 09:20 西北逍遥
阅读(713)
评论(0)
推荐(0)
上一页
1
···
81
82
83
84
85
86
87
88
89
···
96
下一页
公告