摘要:
1.参考blibli 北邮鲁鹏老师的视频 2.参考文章 “什么!卷积要旋转180度?!” 阅读全文
摘要:
tensorflow学习网站 https://www.w3cschool.cn/tensorflow_python/ 1.安装Python 和TensorFlow 套件依附元件 sudo apt install python3-dev python3-pip 2.安装TensorFlow pip套件 阅读全文
摘要:
f(x,y)分别对x,y二次求导 f‘(x)=f(x+1)-f(x) f''(x)=f'(x+1)-f'(x)=f(x+2)-f(x+1)-( f(x+1)-f(x)) = f(x+2)+f(x)-2*f(x+1) 阅读全文
摘要:
通过文章: 高斯卷积核滤波的实现 我发现:高斯卷积核矩阵的值由矩阵的坐标和Sigma标准差决定,也就是说越靠近核矩阵中心的位置,在滤波过程中所占比重越大。 #include "iostream" #include "math.h" using namespace std; using namespa 阅读全文
摘要:
机械臂示教盒 按键驱动程序 阅读全文
摘要:
sizeof只能计算出静态数组的大小,无法计算动态分配或外部数组大小。 7.请写出以下代码输出结果 char str1[] = "abc"; char str2[] = "abc"; const char str3[] = "abc"; const char str4[] = "abc"; cons 阅读全文
摘要:
描述 一个机器人在m×n大小的地图的左上角(起点)。 机器人每次向下或向右移动。机器人要到达地图的右下角(终点)。 可以有多少种不同的路径从起点走到终点? 备注:m和n小于等于100,并保证计算结果在int范围内 #include <iostream> int TotalPath(int toX, 阅读全文
摘要:
#pragma once #include<vector> #include<list> class Solution { public: Solution() :members(NULL) {}; std::vector<double> flowmedian(std::vector<std::ve 阅读全文
摘要:
1.Time Synchronizer 时间同步器 2.Policy-Based Synchronizer基于策略的同步器 2.1ExactTime策略 message_filters :: sync_policies :: ExactTime策略要求消息具有完全相同的时间戳以便匹配。 只有在具有相 阅读全文
摘要:
类似java中的netty c++中也有类似的 boost asio、grpc、zeromq和一个也可以用的mqtt,据说boost asio在申请进入std标准库 以及facebook wangle 关于实现:使用了future/promise,喜欢modern c++的其实可以认真学习下,官方说 阅读全文