兵马逐浪去,将象入海流。炮声震心动,惊起卧龙游。
我的博客园主页 --------- 我的知乎主页 --------- 我的github主页 --------- 我的csdn主页 --------- 我的新浪微博

03 2021 档案

摘要:原址: https://blog.csdn.net/u012501459/article/details/48229399 C++没有像java那样的垃圾回收机制,但是我们可以实现一个。一种很简单的方式就是使用引用计数。它实际上是一种用对象来管理资源的方式,因为普通的栈上的对象在离开作用域时会调用对 阅读全文
posted @ 2021-03-29 10:12 leoking01 阅读(231) 评论(0) 推荐(0) 编辑
摘要:下面是编程之家 jb51.cc 通过网络收集整理的代码片段。 编程之家小编现在分享给大家,也给大家做个参考。 C++中调用Python脚本的意义就不讲了,至少你可以把它当成文本形式的动态链接库,需要的时候还可以改一改,只要不改变接口, C++的程序一旦编译好了,再改就没那么方便了先看Python的代 阅读全文
posted @ 2021-03-29 10:06 leoking01 阅读(332) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/hobertony_7/article/details/88875246?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-4.control& 阅读全文
posted @ 2021-03-29 09:53 leoking01 阅读(699) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/fjsd155/article/details/79380735 一、问题 Python模块和C/C++的动态库间相互调用在实际的应用中会有所涉及,在此作一总结。 二、Python调用C/C++ 1、Python调用C动态链接库 Python调用C库比较简 阅读全文
posted @ 2021-03-29 09:51 leoking01 阅读(380) 评论(0) 推荐(0) 编辑
摘要:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-contrib-python pip install -i https://pypi.tuna.tsinghua.edu.cn/simple opencv-pythoncon 阅读全文
posted @ 2021-03-28 23:09 leoking01 阅读(1781) 评论(0) 推荐(0) 编辑
摘要:1:安装 conda install jupyter notebook 2:启动 jupyter notebook 阅读全文
posted @ 2021-03-28 22:11 leoking01 阅读(142) 评论(0) 推荐(0) 编辑
摘要:进入win10操作系统, 安装miniconda, 我用的版本有 python3.9.1 miniconda3.4.9.2 eric6.21.3 python3.7.4 Miniconda3.4.7.12.1 eric6.20.12.1 python3.6.13, miniconda 3.3.1.9 阅读全文
posted @ 2021-03-28 12:33 leoking01 阅读(118) 评论(0) 推荐(0) 编辑
摘要:https://paperswithcode.com/task/object-detection About Edit Object detection is the task of detecting instances of objects of a certain class within a 阅读全文
posted @ 2021-03-18 10:54 leoking01 阅读(686) 评论(0) 推荐(0) 编辑
摘要:https://zhuanlan.zhihu.com/p/195699093 欢迎大家关注我的公众号:一刻AI http://weixin.qq.com/r/kChDW_bEAbt_raI4932C (二维码自动识别) 本文目前汇总了常见的24个开源工业缺陷数据集,持续更新中 (欢迎大家留言补充,共 阅读全文
posted @ 2021-03-18 10:01 leoking01 阅读(3045) 评论(0) 推荐(0) 编辑
摘要:https://www.jianshu.com/p/607f1e51e3ab geaus关注 2016.05.17 14:31:53字数 540阅读 4,272 前言:本文参考博客denny402这里简要的介绍了下如何使用自己准备的图片数据来训练和测试网络。主要的几个步骤有,图片数据转换为lmdb格 阅读全文
posted @ 2021-03-17 09:25 leoking01 阅读(59) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/legalhighhigh/article/details/82284126 Li_GaoGao 2018-09-01 09:12:50 2585 收藏 5 分类专栏: 深度学习之点滴 版权 这个基本上按照大神的笔记来的。 学习参考大神不仅提供了训练图片, 阅读全文
posted @ 2021-03-17 09:23 leoking01 阅读(68) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/qq_27923041/article/details/54139887 Cche1 2017-01-06 16:59:05 61232 收藏 55 分类专栏: caffe 文章标签: caffe 测试 图片 深度学习 训练 版权 学习的caffe的目的, 阅读全文
posted @ 2021-03-17 09:21 leoking01 阅读(124) 评论(0) 推荐(0) 编辑
摘要:conda install pytorch torchvision torchaudio cudatoolkit=10.2 -c pytorch NOTE: 'conda-forge' channel is required for cudatoolkit 11.1conda install pyt 阅读全文
posted @ 2021-03-15 10:08 leoking01 阅读(2520) 评论(0) 推荐(0) 编辑
摘要:%% 调用 clothoid函数,并将终点位置的曲率半径设置为 0.1:0.2:3 for i = 0.1:0.2:3 clothoid(i) end %%%% 计算回旋曲线,并绘图 function [] = clothoid(Rmin) N = 100; %% sk = 2; %% 曲线长 c 阅读全文
posted @ 2021-03-09 16:55 leoking01 阅读(977) 评论(0) 推荐(0) 编辑
摘要:下載miniconda: 這裏使用第一個,python3.5 安裝到D盤: 執行activate.bat: D:\win10\Miniconda3319x64Py35\Scripts\activate.bat pip install pyqt5==5.10 -i https://pypi.tuna. 阅读全文
posted @ 2021-03-01 13:02 leoking01 阅读(68) 评论(0) 推荐(0) 编辑

#back-to-top { background-color: #00CD00; bottom: 0; box-shadow: 0 0 6px #00CD00; color: #444444; padding: 10px 10px; position: fixed; right: 50px; cursor: pointer; }
点击右上角即可分享
微信分享提示