随笔分类 -  C#

摘要:C# opencv Form显示图片 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System. 阅读全文
posted @ 2021-06-16 19:50 西北逍遥 阅读(890) 评论(0) 推荐(0)
摘要:C# opencv 加载图片 using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; using Open 阅读全文
posted @ 2021-06-15 15:04 西北逍遥 阅读(632) 评论(0) 推荐(0)
摘要:首先要安装好:NuGet, 然后: 【工具】->【库程序包管理器】->【管理解决方案的NuGet程序包】,在其中搜索OpenCVSharp,选择合适的点击【安装】,等待完成。 正在尝试收集与目标为“.NETFramework,Version=v4.5.2”的项目“WindowsFormsApplic 阅读全文
posted @ 2021-06-15 14:55 西北逍遥 阅读(751) 评论(0) 推荐(0)
摘要:private Queue<int> speedFBList = new Queue<int>(200); private void UpdateQueue2Value(int nowValue) { if (speedFBList.Count > 200) { speedFBList.Dequeu 阅读全文
posted @ 2021-06-14 21:36 西北逍遥 阅读(71) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2018-06-01 12:20 西北逍遥 阅读(755) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2018-05-19 12:52 西北逍遥 阅读(768) 评论(0) 推荐(1)
摘要:RRT(快速探索随机树) 是一种通用的方法,不管什么机器人类型、不管自由度是多少、不管约束有多复杂都能用。而且它的原理很简单,这是它在机器人领域流行的主要原因之一。不过它的缺点也很明显,它得到的路径一般质量都不是很好,例如可能包含棱角,不够光滑,通常也远离最优路径。 RRT 能在众多的规划方法中脱颖 阅读全文
posted @ 2018-05-14 07:48 西北逍遥 阅读(1921) 评论(1) 推荐(0)
摘要:Non-convex MeshCollider with non-kinematic Rigidbody is no longer supported in Unity 5.If you want to use a non-convex mesh either make the Rigidbody 阅读全文
posted @ 2018-05-06 10:45 西北逍遥 阅读(1125) 评论(0) 推荐(0)
摘要:有好多教程里面没有资源包,现在加密分享给大家 unity4.* 链接: https://pan.baidu.com/s/1XMo2zVpV3ZhkNZKOb6H0yw 密码: tqnt unity5.* 链接: https://pan.baidu.com/s/1Vr9HExcElnr9AYSBesR 阅读全文
posted @ 2018-05-06 10:08 西北逍遥 阅读(577) 评论(0) 推荐(0)
摘要:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;u 阅读全文
posted @ 2017-11-17 13:18 西北逍遥 阅读(605) 评论(0) 推荐(0)
摘要:1、首先制作图片,需要把图片用Ps制作成psd格式,制作6张 2、把6个psd文件导入工程目录 Assets下, 3、在project属性列表中选中Assets,单击鼠标右键选择 Create —> Material,即可在项目中创建一个材质 4、选中该材质,在属性查看其中修改其渲染模式为Skybo 阅读全文
posted @ 2017-08-22 15:06 西北逍遥 阅读(18468) 评论(0) 推荐(1)
摘要:using System;using System.Text;using System.Net.Sockets;using System.Net;using System.Threading; /// <summary>/// 服务端/// </summary> namespace SocketSe 阅读全文
posted @ 2017-06-20 14:47 西北逍遥 阅读(276) 评论(0) 推荐(0)
摘要:Test.cs脚本 using System.Collections;using System.Collections.Generic;using UnityEngine;using AssemblyCSharp;using System.Text;using System;using System 阅读全文
posted @ 2017-06-20 13:15 西北逍遥 阅读(3150) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2017-04-21 08:09 西北逍遥 阅读(1541) 评论(0) 推荐(0)
摘要:mysql.data.dll下载_c#连接mysql必要插件mysql.data.dll是C#操作MYSQL的驱动文件,是c#连接mysql必要插件,使c#语言更简洁的操作mysql数据库。当你的电脑弹出提示“丢失mysql.data.dll”或“无法找到mysql.data.dll”等错误问题,请 阅读全文
posted @ 2017-02-25 16:53 西北逍遥 阅读(10558) 评论(0) 推荐(0)