自定义博客皮肤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!

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

转载 20191130每日一句

It is easier to build strong children than to repair broken men.培养强大的孩子比修复破碎的成年人要来得容易。It does not do well to depend on dreams and forget to live, remember that.记住:不要依赖梦想而忘记生活。小编的话:有梦想固然好,但人不...

2019-11-30 08:12:42 230

原创 python全局变量的修改 线程共享全局变量

箭头指向不变,而修改里面的值,则可不加global如果箭头指向的方向变,则必须加global至于哪些可变哪些不可变,要看具体的数据类型 数字,字符串、元组不可变,其它可变num = 100def test(): global num num += 100print(num)test()print(num)import threa...

2019-11-29 20:35:50 1226

原创 python在类中创建线程

import threadingimport timeclass MyThread(threading.Thread): def run(self): for i in range(3): time.sleep(1) msg = "I'm " + self.name print(msg)...

2019-11-29 20:15:28 2252

原创 python enumerate for 使用 主线程和子线程的创建和执行学习笔记

import cv2 as cvstr = "Hope is a good thing and maybe the best of things. And no good thing ever dies."names = ["Hope", "is", "a", "good"]def main(): for i, name in enumerate(names): ...

2019-11-29 14:36:15 321

转载 20191129每日一句

If you have great talents, indusrty will improve them.--------If you have great talents, industry will improve them.如果你很有天赋,勤勉会使其更加完善。We're in the fight of our lives.我们都在生命中奋斗着。Hope is a ...

2019-11-29 08:01:43 208

原创 多任务学习

多任务的概念什么叫“多任务”呢?简单地说,就是操作系统可以同时运行多个任务。打个比方,你一边在用浏览器上网,一边在听MP3,一边在用Word赶作业,这就是多任务,至少同时有3个任务正在运行。还有很多任务悄悄地在后台同时运行着,只是桌面上没有显示而已。现在,多核CPU已经非常普及了,但是,即使过去的单核CPU,也可以执行多任务。由于CPU执行代码都是顺序执行的,那么,单核CPU是怎么执...

2019-11-28 21:50:46 228

原创 python文件下载学习

1 服务器import socketdef send_file_2_client(new_client_socket, client_addr): # 1. 接收客户端 需要下载的文件名 # 接收客户端发送过来的 要下载的文件名 file_name = new_client_socket.recv(1024).decode("utf-8") print...

2019-11-28 20:24:42 203

转载 20191128每日一句感恩节

Wear gratitude like a cloak and it will feed every corner of your life.心怀感恩,就像身穿斗篷那样,它将滋养你生命的每一个角落。At some point, you got to decide for yourself who you're going to be—can't let nobody make that ...

2019-11-28 08:22:32 368

转载 20191127每日一句

Letdowns'll get you, and the critics'll test you. But the strong'll survive; another scar may bless you.你虽然会经历失望,被批评考验,但强者才能生存,新添的伤疤是对你的祝福。Life is but the shipwreck of our plans.人生不过是计划赶不上变化。...

2019-11-27 21:32:26 236

原创 github下载慢时可采用码云快速下载资源

1 在github上有资源很多在码云上都有https://gitee.com/2 可以参考github上的下载评分,然后在码云上下载资源。github上很多时候下载东西超级慢,但码云上就很快。...

2019-11-26 14:59:13 541

转载 每日一句20191126

I exist as I am; that is enough.我以我的方式存在,这已足够。I will be responsible for my fate. I will not be a burden to anyone.我自己的命我自己扛,不连累别人!小编的话:幸运之神更愿意让那些敢于冒险,凡事尽心尽力的人抓住自己~Above all, don't lose hop...

2019-11-26 08:05:08 342

转载 20191124每日一句

Once you replace negative thoughts with positive ones, you'll start having positive results.一旦你淘汰消极思想、选择积极思想,便会开始迎来积极的结果。Be careful how you judge people, most of all friends. You don't sum up a m...

2019-11-24 08:16:45 330

转载 智能制造:三体智能革命

赵敏、宁振波、郭朝晖是走向智能研究院资深专家,《三体智能革命》编委会中三位重要作者。他们从去年5月起多次参加了中国工程院主持的“中国智能制造发展战略研究报告”的研讨、评审与修订工作,对该报告的形成过程、研究主旨和详细内容有比较深入的了解和心得。这是三位资深专家第二次联袂撰文解读该报告,以三体模型的视角阐述他们对智能制造以及三个范式的深刻认识。内容非常丰富,视角比较独到,值得认真阅读。...

2019-11-23 20:28:36 3462

原创 Python迭代器(Iterator)

Python迭代器(Iterator)listmy = [1, 2, 3, 4, 5]print(listmy)listmy2 = []for i in listmy: listmy2.append(i**2)print(listmy2)

2019-11-23 20:24:47 220

原创 TTC - Building a Better Vocabulary

Name Product:TTC – Building a Better VocabularyAuthor:Kevin FlaniganWhat does the word bombast have to do with cushion stuffing? What is the difference between specious and spurious? Would you w...

2019-11-23 20:24:34 564

转载 20190801每日一句

Enjoy it while it lasts.享受当下吧!It takes but one person, one moment, one conviction, to start a ripple of change.——Donna Brazile只需要一个人、一个时刻、一股信念,改变就可能发生。——唐娜·布拉齐尔(美国政治家)conviction [kənˈvɪkʃən]...

2019-11-23 20:24:02 253

转载 人生的一切问题,归根结底就是这三点:无知!恐惧!延迟!

https://blog.csdn.net/weixin_34055910/article/details/87835492导读为什么人很难改变自己?为什么有的人心态积极,有的人心态消极?是什么阻碍了人的自我成长?无论是“未经审视的人生不值得过”,还是“吾日三省吾身”,只有彻底认清消极心态系统运行的这三点本质:无知、恐惧、拖延,人才能真正意义上改变自我,在一个新的世界里找到觉醒...

2019-11-23 20:22:45 795

转载 A New Romance Is Likely to End up like Your Previous Relationship 为什么每次恋爱总会走向相似的结局?

When we get out of a bad relationship we usually promise ourselves that the next romance is going to be different. There’ll probably be less arguing or it’ll provide greater satisfaction. But we don’t...

2019-11-23 20:21:43 315

转载 20191123每日一句

If passion drives you, let reason hold the reins.如果驱策你的是热情,那就让理智握住缰绳。Science is organized knowledge. Wisdom is organized life.科学是井然有序的知识,智慧是井然有序的生活。小编的话:科学和智慧都是有条不紊的,只有这样生活才会井然有序。You ...

2019-11-23 20:13:29 367

转载 20191122每日一句

Silently, like thoughts that come and go, the snowflakes fall, each one a gem.雪落无声,一如来去无声的思绪,每一片都是珍宝。We don't want to tell our dreams. We want to show them.我们不用说出自己的梦想,我们只要秀出它们。小编的话:梦想就像内裤,你...

2019-11-22 07:48:44 320 1

转载 20191121每日一句

Waste no time arguing about what a good man should be. Be one.别再浪费时间去争论何为好人,去成为一个好人吧。The more things you do, the more you can.---------The more things you do, the more you can do.做的愈多,你会...

2019-11-21 08:36:09 328

转载 Adobe Photoshop 中,经常使用的默认键盘快捷键

在 Adobe Photoshop 中,使用键盘快捷键可提高您的工作效率。注释:您可以在 Photoshop 桌面版中自定义键盘快捷键。请参阅自定义键盘快捷键。 您可以在“键盘快捷键”对话框中查看、编辑和归纳键盘快捷键。要在 Photoshop 中查看键盘快捷键,请选择编辑 > 键盘快捷键,或使用以下键盘快捷键: Alt + Shift + Control + K (Wind...

2019-11-20 19:55:21 892

原创 Photoshop怎样快速调整画笔大小

三种快捷方法:1.使用快捷键:“[”(增大画笔直径)和“]”(减少画笔直径);注意输入法的切换2.选择画笔之后,在画布上右键弹出快捷菜单,选择相应的画笔大小;3.按住“Alt”键的同时,按住鼠标右键,向左(减少画笔直径)或向右(增大画笔直径)拖动,即可。...

2019-11-20 19:44:14 2542

转载 .h头文件 .lib库文件 .dll动态库文件之间的关系

.h头文件是编译时必须的,lib是链接时需要的,dll是运行时需要的。附加依赖项的是.lib不是.dll,若生成了DLL,则肯定也生成 LIB文件。如果要完成源代码的编译和链接,有头文件和lib就够了。如果也使动态连接的程序运行起来,有dll就够了。在开发和调试阶段,当然最好都有。.h .lib .dll三者的关系是:H文件作用是:声明函数接口DLL文件作用是: 函数可执行代码...

2019-11-19 21:54:56 331

转载 20191119每日一句

what you do makes a difference, and you have to decide what kind of difference you want to make.If you have great talents, industry will improve them; if you have but moderate abilities, indu...

2019-11-19 10:39:55 230

转载 20191118每日一句

When you are conviced that your cause is right, have cougare to take a stand.----------When you are convinced that your cause is right, have the courage to take a stand.当你相信自己的理由是正当的,...

2019-11-18 08:26:47 344

原创 OpenCV人工智能图像处理学习笔记2 opencv初识图片保存像素理解

图形的分类与识别http://www.image-net.org/导入模块要点击运行,不然点击table键就没有提示。import tensorflow as tfhello = tf.constant("hello tf")sess = tf.Session()print(sess.run(hello))tensorflow模块运行,安装正确。 Op...

2019-11-17 22:49:20 515

原创 OpenCV人工智能图像处理学习笔记1目录

因为有需求所以有提供,可以查看招聘岗位的需要以及需要的那些技能

2019-11-17 17:30:24 205

原创 python机器学习依赖库

资源链接https://www.lfd.uci.edu/~gohlke/pythonlibs/#matplotlibpip 自己网上查

2019-11-17 14:20:12 264

转载 20191117每日一句 EVERYBODY DIES, BUT NOT EVERYBODY LIVES

Dwell on the beauty life, and the watch on the stars, you walk with them.-----Dwell on the beauty of life. Watch the stars, and see yourself running with them.细想生活之美,遥望星辰,想象自己在其中遨游。You must never...

2019-11-17 08:16:25 1026

原创 6.2神经网络算法应用上学习笔记

2019-11-16 17:12:12 196

原创 麦子学院6.1 神经网络算法(Nerual Networks)(上) 学习笔记

1. 背景: 1.1 以人脑中的神经网络为启发,历史上出现过很多不同版本 1.2 最著名的算法是1980年的backpropagation2. 多层向前神经网络(Multilayer Feed-Forward Neural Network) 2.1 Backpropagation被使用在多层向前神经网络上 2.2 多层向前神经...

2019-11-16 16:32:59 410

原创 python pip 快速安装第三方库和下载好whl文件

1 清华镜像python3 -m pip install paddlepaddle -i https://pypi.tuna.tsinghua.edu.cn/simplehttps://www.paddlepaddle.org.cn/start2 如果安装了vS可以VS的phthon environment下安装升级相关模块https://blog.csdn.net/mo...

2019-11-16 16:20:09 1839

原创 word在试图打开文件时遇到错误,检查稳定或驱动器文件权限

查网上说属性---解除锁定,就好了我看很多人也是这问题,这种方案就可以解决。但我的是根本就没有“解除锁定”这一选项。我用的是2013版的word,但可以用office 2010打开(我电脑上安装了两个office版本)。而且在其它电脑上office2013可以打开。我的解决方案是用office2010打开后把昨天写的部分删除,发现用office2013可以打开了。然后再从201...

2019-11-16 11:15:58 2313 1

转载 20191116每日一句

like to walk around the fields alone to keep alive the thoughts of you.我喜欢独自徜徉于田野,每时每刻想着你。That was my way of getting through difficult times of low confidence - hard work.我渡过没自信那困难时刻的方法是:努力。...

2019-11-16 11:05:13 307

转载 HTC Vive安装及如何连接电脑详细教程(全程图解)

在市场上的诸多VR产品当中,htc Vive无疑是体验最佳的设备之一,不过在享受高端硬件带来美妙沉浸感之前,必须要经过一段略微复杂的“手续”,以下是HTC Vive安装详细教程。在安装之前首先要确认下你的Vive附带了下列物品。■设置部分一、规划选择游玩区游玩区即设定的 Vive 虚拟边界。 你与虚拟现实物体的互动都将在游玩区中进行。 Vive 设计用于房间尺度设置,但...

2019-11-15 09:58:35 31272

转载 20191115英文每日一句

Always walk through life as if you have something new to learn, and you will.在生活中时刻准备着学习新东西,那么你就会有所得。生活中无论何时都做好学习新事物的准备,你就能有所学。One thorn of experience is worth a whole wilderness of warning....

2019-11-15 08:35:49 490

转载 20191114每日一句

The souls that sees beauty may sometimes walk alone.----The soul that sees beauty may sometimes walk alone.看见美的灵魂,有时只能独行。People of accomplishment rarely sat back and let things happen to the...

2019-11-14 09:45:27 287

原创 VS通过opencv显示图片和打开相机的显示生成dll用unity调用

1 VS 工程// OpencvTest.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。//#include <iostream>#include <opencv.hpp>using namespace cv;//int main()//{// // std::cout << "Hello Wor...

2019-11-14 09:40:22 562 2

转载 20191113每日一句

Prefection doesn't extiest, you can alwasys do better and grow. ---MichaelPrefection does not exist, you canalways do better and you can always grow.完美是不存在的,但你可以一直做的更好,一直成长。---完美并不存在,你永远可以做得更好,...

2019-11-13 08:14:35 310 1

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关注的人

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