上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
摘要: 配置方法 ~$ qmake -query QT_SYSROOT: QT_INSTALL_PREFIX:/home/***/Qt5.9.8/5.9.8/gcc_64 QT_INSTALL_ARCHDATA:/home/***/Qt5.9.8/5.9.8/gcc_64 QT_INSTALL_DATA:/ 阅读全文
posted @ 2022-06-29 10:53 小小灰迪 阅读(1725) 评论(0) 推荐(0)
摘要: 数据库可视化软件 sudo apt-get install sqlitebrowser 打开数据库 sqlitebrowser test.db SQLITE3 STMT 机制操作 sqlite3: sqlite3_step 函数 选中表 #include "sqlite3.h" void FixdC 阅读全文
posted @ 2022-06-29 10:34 小小灰迪 阅读(174) 评论(0) 推荐(0)
摘要: int main() { int cam_num = 1; //读取所有图像 vector<string> imgLs; vector<string> imgRs; char imgLName[255] = "/home/Gradute/3dReconstruction/datasets/0602/ 阅读全文
posted @ 2022-06-20 18:11 小小灰迪 阅读(367) 评论(0) 推荐(0)
摘要: template <typename T1, typename T2> inline double setDoublePrecicious(const T1 &number, const T2 &n){ stringstream str_number; str_number<<std::setpre 阅读全文
posted @ 2022-05-31 19:05 小小灰迪 阅读(146) 评论(0) 推荐(0)
摘要: Point cv::circle 官方文档地址 void cv::circle (InputOutputArray img, Point center, int radius, const Scalar & color, int thickness = 1, int lineType = LINE_ 阅读全文
posted @ 2022-05-31 11:28 小小灰迪 阅读(473) 评论(0) 推荐(0)
摘要: ```c++ #include #include #include #include #include // opencv Aruco官方示例 // https://github.com/opencv/opencv_contrib/tree/4.x/modules/aruco/samples usi 阅读全文
posted @ 2022-05-26 11:34 小小灰迪 阅读(1492) 评论(0) 推荐(0)
摘要: nodejs的child_process模块,官方文档 异步加载 以下几种方式都是异步加载 child_process.exec(command[, options][, callback]) 启动子进程来执行shell命令,可以通过回调参数来获取脚本shell执行结果 child_process. 阅读全文
posted @ 2022-04-06 16:20 小小灰迪 阅读(1620) 评论(0) 推荐(0)
摘要: shell echo "$(readlink -f "${0}")" > /home/lhw/Gradute/365/allsystem/DLL/MeshLab/AppRun HERE="$(dirname "$(readlink -f "${0}")")" echo "${HERE}" > /ho 阅读全文
posted @ 2022-03-31 21:23 小小灰迪 阅读(209) 评论(0) 推荐(0)
摘要: 下载linux版本的nodejs,网址:https://nodejs.org/en/ 下载解压后添加环境变量 gedit ~/.bashrc export PATH=/home/lhw/Software/node-v16.14.2-linux-x64/bin:$PATH export LD_LIBR 阅读全文
posted @ 2022-03-31 15:57 小小灰迪 阅读(292) 评论(0) 推荐(0)
摘要: eigen 安装 eigen 3.3.7 cmake \ -DCMAKE_BUILD_TYPE=Release \ -DEIGEN_BUILD_PKGCONFIG=ON \ .. sudo make install # 安装位置:/usr/local/include/eigen3/ eigen 3. 阅读全文
posted @ 2022-03-30 21:29 小小灰迪 阅读(1036) 评论(0) 推荐(0)
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页