自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

moonlightpeng的博客

F = - F‘ & F = GMm/R² @ Change the world by program!

  • 博客(21)
  • 资源 (68)
  • 收藏
  • 关注

原创 VR/AR在疫情期间的好处介绍

[1] Asadzadeh A , Samad-Soltani T . Applications of Virtual and Augmented Reality in Infectious Disease Epidemics with a Focus on the COVID-19 Outbreak[J]. Informatics in Medicine Unlocked, 2021(5):100579.

2021-05-30 10:04:58 427

转载 Ubuntu18.04安装RealsenseD435驱动

1如何在ubuntu 16.04上安装 RealSense(相机型号:Intel SR300)

2021-05-30 08:58:55 841

转载 Ubuntu18.4截图工具flameshot的安装与快捷键设置

flameshot的安装与快捷键设置

2021-05-29 21:13:44 392

原创 windows安装ubuntu系统的注意事项小记

1 提前分出一部分空间比如200G ,用来安装ubuntu2 U盘安装时选择保留windows系统的选项3 其它的问题则上网百度,一般都会有解决方案

2021-05-26 21:13:40 238

转载 RANSAC算法理解

1RANSAC算法理解https://blog.csdn.net/robinhjwy/article/details/791749142https://blog.csdn.net/fandq1223/article/details/53175964

2021-05-26 21:09:45 204

转载 Ubuntu下查看cuda版本的两种方法

方法一: nvidia-smi方法二cat /usr/local/cuda/version.txt

2021-05-26 20:08:48 1870

原创 2021-05-22

Without deviation from the norm, progress is not possible.不偏离常规,就无法取得进步。Any mind that is capable of a real sorrow is capable of good.真正悲伤过的人都是心存善念的。I feel I stand in a desert with my hands outstretched, and you are raining down upon me.我感觉自己张开双

2021-05-22 17:08:49 253

原创 2021-05-19

People rarely succeed unless they have fun in what they are doing.若不能在所做之事中寻到快乐,人便难以成功。Belief, like fear or love, is a force that determines the course of our lives.信仰就像恐惧和爱一样,是一种决定我们人生走向的力量。It's great to be great, but it's greater to be human.成为

2021-05-19 22:21:26 208

原创 unity2019 vuforia 使用小记

2021-05-17 15:32:05 734

原创 算法与数据结构 第3章 高级排序算法下 学习笔记

自底向上进行排序这个过程不需要递归只要迭代即可

2021-05-13 15:41:22 197

原创 算法与数据结构 第3章 高级排序算法中 归并算法改进

算法在之前的基础上做了改进https://blog.csdn.net/moonlightpeng/article/details/1152803001 前后两部分有序时不用归并了2 当数组元素比较小时用插入排序MergeSort.h//// Created by liuyubobobo on 7/21/16.//#ifndef INC_03_MERGE_SORT_ADVANCE_MERGESORT_H#define INC_03_MERGE_SORT_ADVANCE_MERG.

2021-05-12 21:42:42 292

原创 2021-05-12

Eithers you runs day or the day runs you.你不主宰时光,时光就会主宰你It is so nice when you can sit with someone and not have to talk.能与一个坐在一起而不必交谈Time is a great teacher, but unfortunately it kills all its pupils.时间是伟大的导师,但不幸的是它会消蚀每一位学位的生命。I try to learn s.

2021-05-12 08:38:00 207

原创 Ubuntu下设置Pycharm/unity的桌面快捷方式

1, 到/usr/share/applications目录下方法是在桌面启动终端cd /usr/share/applications2 用命令打开记事本sudo gedit /usr/share/applications/pycharm.desktop将如下内容复制到上面打开的文件:[Desktop Entry]Type=ApplicationName=PycharmGenericName=Pycharm3Comment=Pycharm3:The Pytho

2021-05-11 20:16:20 319

原创 python中在一个脚本调用另一个脚本类中函数变量值

1 申明一个类变量 如 value2 赋值 self.value = 需要的函数值3 在另一个脚本中通过类的实例对象调用class Visualizer: # To obtain the Position and Rotation Michael 20210511 posrot = [] def __init__(self): args = DatasetCatalog.get(cfg.test.dataset) self.a.

2021-05-11 14:23:44 1697

原创 Ubuntu下安装Chrome浏览器的方法

通过直接下载安装Google Chrome浏览器deb包。打开Ubuntu终端,以下为32位版本,使用下面的命令。wget https://dl.google.com/linux/direct/google-chrome-stable_current_i386.deb以下为64位版本,使用下面的命令。wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb下载好后32 位安装命

2021-05-11 08:58:06 5350

原创 2021-05-10

I think a man does what he can until his destiny is revealed to him.一个人应该竭尽所能,然后才听天由命。Itisnevertoolatetochangeyourlife.任何时候想改变生活都不会太迟。

2021-05-10 22:17:33 233

原创 递归求和生成区间随机数并排序理解

#include <iostream>int* creatRandNum(const int num, const int left, const int right){// int arr[num] = {0}; int *arr = new int[num]; srand(time(NULL)); for (int i = 0; i < num; ++i) { arr[i] = rand() % (right - le...

2021-05-08 16:41:15 323

原创 2021-05-04

This is the last game so make it count, it's now or never.不要辜负这最后的比赛,时不我待。Youth comes but once in a lifetime.青春一生只有一次。

2021-05-04 21:35:50 178

原创 2021-05-03

The farther backward you can look, the farther forward you can see.你回首看得越远,你向前也会看得越远。The closer you think you are, the less you'll actually see.离得越近,其实看见的越少。Natural abilites are like natural plants that need pruning by study.天生的能力如同自然生长的植物一样,需要靠学

2021-05-03 16:13:24 184

转载 如何写好一份专利交底书?

https://mp.weixin.qq.com/s/n2m6yYkoBcIWBMgt2sxZxw

2021-05-02 09:52:45 518

原创 2021-05-02

Weak people revenge. Strong people forgive, Intelligent people ignore.软弱的人寻求复仇,坚强的人选择原谅,聪明的人则会无视。Gentle attitude for a heart to be contempt indeed is a great comfort.柔和的态度对于一颗被轻蔑的心是很大的安慰。Work gives you meaning and purpose and life is empty without it.

2021-05-02 09:19:42 252

caai2019.pdf

2019中国人工智能产业年会重磅发布《2019人工智能发展报告》(Report of Artificial Intelligence Development 2019)。该报告由清华大学-中国工程院知识智能联合研究中心、中国人工智能学会吴文俊人工智能科学技术奖评选基地联合发布,北京智谱华章科技有限公司提供技术支持。报告力图综合展现中国乃至全球人工智能重点领域发展现状与趋势,助力产业健康发展,服务国家战略决策。 报告依托于AMiner平台数据资源及技术挖掘成果生成相关数据报告及图表,邀请清华大学、同济大学等高校专家解读核心技术及提出观点建议,在一定程度上保证了报告的科学性和权威性。 唐杰教授介绍说,“该报告对人工智能每一个子领域进行了详细的分析,包括基本概念、发展历史、人才概况、代表性论文解读和前沿技术进展。” “相比于2018年的人工智能发展报告,具有两方面亮点,一方面体现在'AI技术的近期发展',另一方面体现在'人才脉络一网打尽'。”

2019-12-03

VIVE_SRanipalInstaller_1.1.2.0.msi

HTC Vive Eye Pro眼动追踪的sdk最新版本2019年11月11日下载的,在官网下载很慢。

2019-11-11

LATEX Class for the Association for Computing.pdf

ACM 官方的提供的latex文档(英文),对于向ACM投稿的人来说非常实用,因为现在ACM录用的所有论文必需通过TAPS提交论文,如果使用word会遇到各种各样的错误,导致无法提交。而Latex相对可以轻松搞定。

2019-10-04

ws2_32.dll和lib文件

Windows 下的 socket 程序依赖 Winsock.dll 或 ws2_32.dll,c++使用完成socket通讯

2019-09-15

UnityVideoCapture.rar

一个在unity里面实现对虚拟相机录制视频的插件AVPro Movie Capture 3.3 在unity2017.4.17上测试可以运行

2019-07-17

Why Every Organization Needs an Augmented Reality Strategy.pdf

详细全面的描述增强现实的优点,特点,和一些相关应用,英文评论,快速了解AR的好资料。

2019-07-12

VRTK20170417.unitypackage

unity2017.4.17对应的VRTK可以使用,两个版本相对应,测试可以用。使用时必需要有steamvr不然不能使用。

2019-06-18

SteamVRTK2017.4.17.unitypackage

Unity2017.4.17使用的steamvr版本和VRTK版本,测试正确通用。

2019-06-18

VIVE_SRanipalInstaller_1.0.3.0.msi

htc vive eye pro自带眼动追踪,使用前要安装这个驱动程序。

2019-06-12

Vive-SRanipal-Unity-Plugin.zip

HTC vive eye pro里面自带眼动追踪,这个是unity里使用的一个package,导入并让unity工程支持openvr,里面的例子就可以用了

2019-06-12

Vive-SRanipal-Unity-Plugin.zip

HTC vive eye pro里面自带眼动追踪,这个是unity里使用的一个package,导入并让unity工程支持openvr,里面的例子就可以用了

2019-06-12

Vive-SRanipal-Unity-Plugin.unitypackage

HTC vive eye pro里面自带眼动追踪,这个是unity里使用的一个package,导入并让unity工程支持openvr,里面的例子就可以用了

2019-06-12

beginning-python-3ed-master.rar

python3中文pdf和书对应的源码。Magnus Lie Hetland著第三版,袁国忠译。

2019-05-28

廖雪峰Python3pdf和源码.rar

廖雪峰python3 pdf完整版,感觉讲的很棒,以及Python学习廖雪峰Python3书的随书源码

2019-05-28

廖雪峰Python.txt

廖雪峰python3 pdf完整版,感觉讲的很棒,以及Python学习廖雪峰Python3书的随书源码

2019-05-28

Consolas+YaHei+hybrid.rar

matlab不识别中文,中文显示的是乱码,把这个字体下载后放到C:\Windows\Fonts,然后打开matlab字体选择YaHei Consolas Hybrid,

2019-05-11

1994Nonlinear Dynamics and Chaos - Strogatz

该书作者是steven strogatz。是研究非线性和混沌的好书。1994年版的全英文的。

2019-05-09

1th Research Methods in Human Computer interaction

人机交互领域中一本不错的书,这是第一版,全面详细的讲述如何进行HCI的相关研究。

2019-03-25

2007Guidelines for performing Systematic Literature Reviews

Guidelines for performing Systematic Literature Reviews in Software Engineering,讲述如何写科研论文的综述。

2019-03-24

Creating a PDF with Embedded Fonts for MS Word

“Embedding fonts” ensures that all of the font information used to make your document look the way it does is stored in the PDF file. So, no matter what fonts a balloter (or reader) has on their computer, they'll be able to see the file as you intended it to be seen. If you don't embed fonts, Adobe AcrobatTM or an equivalent PDF creator will make its best guess at font substitution using whatever fonts are available on the balloter’s computer. Substitution can result in significant differences between your intended output and what the balloter observes (particularly with symbol fonts), so it is best to have the fonts embedded.

2019-03-13

AW.Augmented.Reality.Principles.and.Practice

介绍增强现实应用的一本好书,全英文的。As users move away from the desktop, it increasingly makes sense to include the physical world in our computing experience. Given that the physical world is not flat and is not composed of written documents, a new user interface metaphor becomes necessary. Augmented reality (AR) has the potential to become the leading user interface metaphor for situated computing. Augmented reality has the unique quality of providing a direct link between the physical reality and virtual information about that reality.

2019-03-10

上传错误请管理员删除1111111111111111111111111111

1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111

2019-03-10

Vectrosity 5.6and5.4

Vectrosity为unity中绘制2D或3D的直线/曲线的插件

2023-11-01

OpenCV for Unity 2.4.4.unitypackage

在unity2020上运行测试没有问题,其他版本上没有测试过。

2023-09-25

pixyz 2021用于向unity中直接导入cad模型

pixyz 2021用于向unity中直接导入cad模型在unity2020上测试可以用,破解文件在里面按readme自己替换即可使用。

2023-09-08

pixyz用于unity导入cad模型

pixyz用于unity导入cad模型,unity2018,2020测试都可以使用

2023-09-08

运用3ds max 2022完成三个物体的简单运动

圆锥体是匀速运动、球是像乒乓球一样往复运动、茶壶是平移的同时旋转

2023-04-29

Delmia 2018安装文件

ds公司Delmia 2018安装文件

2023-04-28

unity Ultimate rope 绳锁模拟插件

unity Ultimate rope 绳锁模拟插件

2023-04-18

unity Do tween动画插件

if (Input.GetKey(KeyCode.A)) {

2023-04-18

unity Dotween动画插件

unity Dotween动画插件

2023-04-18

直齿圆柱齿建模:catia参数化建模渐开线生成点集,样条曲线拟合齿廓曲线

catia参数化建模渐开线生成点集,样条曲线拟合齿廓曲线。

2022-12-29

101*101迷宫生成txt

101*101迷宫生成txt

2022-08-27

101*101迷宫生成txt

101*101迷宫生成txt

2022-08-27

haarcascade.rar

Haarcascade opencv人脸识别用的xml 数据文件 一个是face xml一个是eye xml文件

2020-12-07

工作流程与模型调优.rar

七月机器学习算法中和第七部分工作流程与模型调优 以天池数据集泰坦尼克号为例全面的分析和示例机器学习算法 其中包括泰坦尼克问题的excel数据和算法的notebook代码

2020-06-28

Forge Networking Remastered.unitypackage

ForgeNetworkingRemastered In short, Forge Networking is a free and open source multiplayer game (multi-user) networking system that has a very good integration with the Unity game engine. You wanna make a multiplayer game or real time multi-user application? This is the library for you.

2020-06-24

七月算法特征工程代码和天池数据kaggle_bike_competition_train.rar

机器学习视频中讲解数据处理的特征工程的代码和共享 自 行车的相关数据 可以学习和理解机器学习的特征工程

2020-06-22

MRTK=UnityPackage.rar

Mixed reality toolkit是微软为hololens开发做的package,与unity相结合可以实现hololens和unity的调试发布和远程数据传输等,这个与unity2019.3.13结合可以完美用运行

2020-06-10

Concave Collider 1.23百度云盘下载链接.txt

凹对撞机是一个团结,使复杂和精确的碰撞检测和raycasts组件。在Unity中,网格-网格碰撞只工作,如果至少有一个网格是凸的。 凹对撞机可以自动计算一组碰撞,可以适应任何形状提供一个方法克服这一局限;凸或不。只需点击一下! 包括5个不同的示例场景。

2019-12-02

空空如也

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

TA关注的人

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