- 浏览: 700594 次
- 性别:
- 来自: 沈阳
-
文章分类
- 全部博客 (270)
- Ant Tool Script (12)
- XMLDigest (5)
- MyEclipse8.6 (1)
- RedHat (5)
- SVNVersionController (4)
- BatOperation (6)
- JspAndFaceWeb (66)
- javaSwing (18)
- PHP (12)
- J2SE (6)
- TestToolAndTestManual (12)
- C# (34)
- Java PatternDesign (20)
- Axis2AndWebService (5)
- ITLive (2)
- DBAndControl (10)
- C/C++ (8)
- Andriod (7)
- Python (7)
- JavaWork (16)
- Android-QA (1)
- Apache-Wicket (1)
- POI (1)
- JQuery (2)
- Struts2 (1)
- Flex&Flash (6)
- sdsdsd (0)
- 1212 (0)
最新评论
-
anayomin:
对九楼继续改进
public static <T> ...
Java List 分页 -
H4X0R:
来学习学习,赞一个
Aqua Data Studio 导出SQL -
yankai0219:
现在出现这个错误 Fatal error: Class 'PH ...
纯PHP搭建Apache+Eclipse+xDebug+PHPUnit+MakeGood -
yankai0219:
您好,我在搭建环境中提示PHPUnit_Framework_T ...
纯PHP搭建Apache+Eclipse+xDebug+PHPUnit+MakeGood -
wilsonchen:
chenhailong 写道wilsonchen 写道chen ...
C# RSA和Java RSA互通
今天遇到了一个问题,就是让Winform中的事件提前运行的问题,下面我给出解决方案
Main函数
using System; using System.Windows.Forms; namespace FormLoadCompletedDemo { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); } } }
using System; using System.Windows.Forms; namespace FormLoadCompletedDemo { public partial class MainForm : Form { public MainForm() { InitializeComponent(); } private void ShowChildForm(ChildForm.LoadStyle ls) { ChildForm frm = new ChildForm(ls); frm.ShowDialog(); } private void btnLoad_Click(object sender, EventArgs e) { ShowChildForm(ChildForm.LoadStyle.OnLoad); } private void btnShown_Click(object sender, EventArgs e) { ShowChildForm(ChildForm.LoadStyle.OnShown); } private void btnShownDoEvents_Click(object sender, EventArgs e) { ShowChildForm(ChildForm.LoadStyle.OnShownDoEvents); } private void btnChildUsingBase_Click(object sender, EventArgs e) { ChildFormUsingBase frm = new ChildFormUsingBase(); frm.ShowDialog(); } } }
namespace FormLoadCompletedDemo { partial class MainForm { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.btnShown = new System.Windows.Forms.Button(); this.btnShownDoEvents = new System.Windows.Forms.Button(); this.btnLoad = new System.Windows.Forms.Button(); this.btnChildUsingBase = new System.Windows.Forms.Button(); this.SuspendLayout(); // // btnShown // this.btnShown.Location = new System.Drawing.Point(50, 49); this.btnShown.Name = "btnShown"; this.btnShown.Size = new System.Drawing.Size(193, 23); this.btnShown.TabIndex = 1; this.btnShown.Text = "Open Form Without DoEvents"; this.btnShown.UseVisualStyleBackColor = true; this.btnShown.Click += new System.EventHandler(this.btnShown_Click); // // btnShownDoEvents // this.btnShownDoEvents.Location = new System.Drawing.Point(50, 78); this.btnShownDoEvents.Name = "btnShownDoEvents"; this.btnShownDoEvents.Size = new System.Drawing.Size(193, 23); this.btnShownDoEvents.TabIndex = 2; this.btnShownDoEvents.Text = "Open Form *With* DoEvents"; this.btnShownDoEvents.UseVisualStyleBackColor = true; this.btnShownDoEvents.Click += new System.EventHandler(this.btnShownDoEvents_Click); // // btnLoad // this.btnLoad.Location = new System.Drawing.Point(50, 20); this.btnLoad.Name = "btnLoad"; this.btnLoad.Size = new System.Drawing.Size(193, 23); this.btnLoad.TabIndex = 0; this.btnLoad.Text = "Do processing in Load event"; this.btnLoad.UseVisualStyleBackColor = true; this.btnLoad.Click += new System.EventHandler(this.btnLoad_Click); // // btnChildUsingBase // this.btnChildUsingBase.Location = new System.Drawing.Point(50, 138); this.btnChildUsingBase.Name = "btnChildUsingBase"; this.btnChildUsingBase.Size = new System.Drawing.Size(193, 23); this.btnChildUsingBase.TabIndex = 3; this.btnChildUsingBase.Text = "Open Form derived from BaseForm"; this.btnChildUsingBase.UseVisualStyleBackColor = true; this.btnChildUsingBase.Click += new System.EventHandler(this.btnChildUsingBase_Click); // // MainForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(292, 183); this.Controls.Add(this.btnChildUsingBase); this.Controls.Add(this.btnLoad); this.Controls.Add(this.btnShownDoEvents); this.Controls.Add(this.btnShown); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "MainForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "FormLoadCompleteDemo"; this.ResumeLayout(false); } #endregion private System.Windows.Forms.Button btnShown; private System.Windows.Forms.Button btnShownDoEvents; private System.Windows.Forms.Button btnLoad; private System.Windows.Forms.Button btnChildUsingBase; } }
Children form
using System; using System.Windows.Forms; namespace FormLoadCompletedDemo { public partial class ChildForm : Form { public enum LoadStyle { OnLoad, OnShown, OnShownDoEvents } private LoadStyle _ls; public ChildForm(LoadStyle ls) { InitializeComponent(); _ls = ls; } private void ChildForm_Load(object sender, EventArgs e) { if (_ls == LoadStyle.OnLoad) LoadList(); } private void ChildForm_Shown(object sender, EventArgs e) { if (_ls == LoadStyle.OnShown) LoadList(); else if (_ls == LoadStyle.OnShownDoEvents) { Application.DoEvents(); LoadList(); } } private void LoadList() { this.Cursor = Cursors.WaitCursor; for (int l = 0; l < 50000; l++) this.listBox1.Items.Add("Item " + l.ToString()); this.Cursor = Cursors.Default; } private void ChildForm_FormClosed(object sender, FormClosedEventArgs e) { // Without the following, subsequent instances of this form would load // slower than the 1st call, distorting the time-delay of this demo. listBox1.Items.Clear(); GC.Collect(); } } }
namespace FormLoadCompletedDemo { partial class ChildForm { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.listBox1 = new System.Windows.Forms.ListBox(); this.comboBox1 = new System.Windows.Forms.ComboBox(); this.comboBox2 = new System.Windows.Forms.ComboBox(); this.comboBox3 = new System.Windows.Forms.ComboBox(); this.groupBox1 = new System.Windows.Forms.GroupBox(); this.groupBox2 = new System.Windows.Forms.GroupBox(); this.comboBox4 = new System.Windows.Forms.ComboBox(); this.comboBox5 = new System.Windows.Forms.ComboBox(); this.groupBox1.SuspendLayout(); this.groupBox2.SuspendLayout(); this.SuspendLayout(); // // listBox1 // this.listBox1.FormattingEnabled = true; this.listBox1.Location = new System.Drawing.Point(6, 59); this.listBox1.Name = "listBox1"; this.listBox1.Size = new System.Drawing.Size(112, 134); this.listBox1.TabIndex = 0; // // comboBox1 // this.comboBox1.FormattingEnabled = true; this.comboBox1.Location = new System.Drawing.Point(6, 59); this.comboBox1.Name = "comboBox1"; this.comboBox1.Size = new System.Drawing.Size(174, 21); this.comboBox1.TabIndex = 1; // // comboBox2 // this.comboBox2.FormattingEnabled = true; this.comboBox2.Location = new System.Drawing.Point(6, 86); this.comboBox2.Name = "comboBox2"; this.comboBox2.Size = new System.Drawing.Size(174, 21); this.comboBox2.TabIndex = 2; // // comboBox3 // this.comboBox3.FormattingEnabled = true; this.comboBox3.Location = new System.Drawing.Point(6, 113); this.comboBox3.Name = "comboBox3"; this.comboBox3.Size = new System.Drawing.Size(174, 21); this.comboBox3.TabIndex = 3; // // groupBox1 // this.groupBox1.Controls.Add(this.comboBox5); this.groupBox1.Controls.Add(this.comboBox4); this.groupBox1.Controls.Add(this.comboBox3); this.groupBox1.Controls.Add(this.comboBox1); this.groupBox1.Controls.Add(this.comboBox2); this.groupBox1.Location = new System.Drawing.Point(166, 12); this.groupBox1.Name = "groupBox1"; this.groupBox1.Size = new System.Drawing.Size(193, 199); this.groupBox1.TabIndex = 4; this.groupBox1.TabStop = false; this.groupBox1.Text = "These controls don\'t fully render in form_Shown() unless you call DoEvents() *bef" + "ore* loading listBox1"; // // groupBox2 // this.groupBox2.Controls.Add(this.listBox1); this.groupBox2.Location = new System.Drawing.Point(12, 12); this.groupBox2.Name = "groupBox2"; this.groupBox2.Size = new System.Drawing.Size(135, 199); this.groupBox2.TabIndex = 5; this.groupBox2.TabStop = false; this.groupBox2.Text = "This list is loaded with 50k items in order to delay the initial rendering of the" + " form."; // // comboBox4 // this.comboBox4.FormattingEnabled = true; this.comboBox4.Location = new System.Drawing.Point(6, 140); this.comboBox4.Name = "comboBox4"; this.comboBox4.Size = new System.Drawing.Size(174, 21); this.comboBox4.TabIndex = 4; // // comboBox5 // this.comboBox5.FormattingEnabled = true; this.comboBox5.Location = new System.Drawing.Point(6, 167); this.comboBox5.Name = "comboBox5"; this.comboBox5.Size = new System.Drawing.Size(174, 21); this.comboBox5.TabIndex = 5; // // ChildForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(374, 224); this.Controls.Add(this.groupBox1); this.Controls.Add(this.groupBox2); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ChildForm"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "ChildForm"; this.Load += new System.EventHandler(this.ChildForm_Load); this.Shown += new System.EventHandler(this.ChildForm_Shown); this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ChildForm_FormClosed); this.groupBox1.ResumeLayout(false); this.groupBox2.ResumeLayout(false); this.ResumeLayout(false); } #endregion private System.Windows.Forms.ListBox listBox1; private System.Windows.Forms.ComboBox comboBox1; private System.Windows.Forms.ComboBox comboBox2; private System.Windows.Forms.ComboBox comboBox3; private System.Windows.Forms.GroupBox groupBox1; private System.Windows.Forms.GroupBox groupBox2; private System.Windows.Forms.ComboBox comboBox5; private System.Windows.Forms.ComboBox comboBox4; } }
using System; using System.Windows.Forms; namespace FormLoadCompletedDemo { public partial class ChildFormUsingBase : BaseForm { public ChildFormUsingBase() { InitializeComponent(); } private void ChildFormUsingBase_LoadCompleted() { this.Cursor = Cursors.WaitCursor; for (int l = 0; l < 50000; l++) this.listBox1.Items.Add("Item " + l.ToString()); this.Cursor = Cursors.Default; } private void ChildFormUsingBase_FormClosed(object sender, FormClosedEventArgs e) { // Without the following, subsequent instances of this form would load // slower than the 1st call, distorting the time-delay of this demo. listBox1.Items.Clear(); GC.Collect(); } } }
namespace FormLoadCompletedDemo { partial class ChildFormUsingBase { /// <summary> /// Required designer variable. /// </summary> private System.ComponentModel.IContainer components = null; /// <summary> /// Clean up any resources being used. /// </summary> /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.listBox1 = new System.Windows.Forms.ListBox(); this.comboBox1 = new System.Windows.Forms.ComboBox(); this.comboBox2 = new System.Windows.Forms.ComboBox(); this.comboBox3 = new System.Windows.Forms.ComboBox(); this.label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // // listBox1 // this.listBox1.FormattingEnabled = true; this.listBox1.Location = new System.Drawing.Point(12, 12); this.listBox1.Name = "listBox1"; this.listBox1.Size = new System.Drawing.Size(120, 95); this.listBox1.TabIndex = 0; // // comboBox1 // this.comboBox1.FormattingEnabled = true; this.comboBox1.Location = new System.Drawing.Point(192, 21); this.comboBox1.Name = "comboBox1"; this.comboBox1.Size = new System.Drawing.Size(121, 21); this.comboBox1.TabIndex = 1; // // comboBox2 // this.comboBox2.FormattingEnabled = true; this.comboBox2.Location = new System.Drawing.Point(192, 48); this.comboBox2.Name = "comboBox2"; this.comboBox2.Size = new System.Drawing.Size(121, 21); this.comboBox2.TabIndex = 2; // // comboBox3 // this.comboBox3.FormattingEnabled = true; this.comboBox3.Location = new System.Drawing.Point(192, 75); this.comboBox3.Name = "comboBox3"; this.comboBox3.Size = new System.Drawing.Size(121, 21); this.comboBox3.TabIndex = 3; // // label1 // this.label1.Location = new System.Drawing.Point(22, 129); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(277, 35); this.label1.TabIndex = 4; this.label1.Text = "This form performs post-Shown() processing by attaching to BaseForm\'s LoadComplet" + "ed() event"; // // ChildFormUsingBase // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(328, 187); this.Controls.Add(this.label1); this.Controls.Add(this.comboBox3); this.Controls.Add(this.comboBox2); this.Controls.Add(this.comboBox1); this.Controls.Add(this.listBox1); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "ChildFormUsingBase"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "ChildFormUsingBase"; this.LoadCompleted += new FormLoadCompletedDemo.BaseForm.LoadCompletedEventHandler(this.ChildFormUsingBase_LoadCompleted); this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ChildFormUsingBase_FormClosed); this.ResumeLayout(false); } #endregion private System.Windows.Forms.ListBox listBox1; private System.Windows.Forms.ComboBox comboBox1; private System.Windows.Forms.ComboBox comboBox2; private System.Windows.Forms.ComboBox comboBox3; private System.Windows.Forms.Label label1; } }
下面给出工程,有问题请联系我哦
- FormLoadCompletedDemo.zip (12.7 KB)
- 下载次数: 1
发表评论
-
减少winform的内存使用量
2013-06-01 06:49 1262今天看到有趣的代码,功能主要是减少winform的内存使用量。 ... -
C# Timer运行时,系统时间修改
2012-10-19 15:55 2979今天遇到一个问题: C# Time 运行的时候,将系统时间修 ... -
C# 一步一步的开始
2012-09-09 11:02 0------------------------------- ... -
C# 书写window简单服务
2012-03-30 19:59 1301代码如下: using System.Co ... -
手工添加window 服务依赖
2012-03-29 15:11 1977这里是bat文件 复制就可以添加 ... -
Services do not start and Event ID 7022
2012-03-29 15:07 1435今天遇到一个问题 具体的如题 解决方案: ... -
C# 读2007Excel文件
2012-03-27 13:51 2446今天遇到一个问题: C# ... -
C# 胡乱实现,程序 占用CPU50%
2012-02-28 07:05 3814今天早上看到了编程之美,我很兴奋,大早上看书,有吗? 有木有? ... -
IIS not work because of Com+ Application error or IWAM user not have password
2012-02-24 16:19 1818今天遇到了一个问题。XP的IIS 5.1 安装成功后会出现: ... -
IIS 7.0 HTTP Error 403.14
2012-02-23 13:09 1551刚才碰到一个问题:如题 下面是解决方案: 方法 ... -
C# Chart详细解析(待)
2012-02-07 19:25 55110一年有过去了, 很长时间也没有写什么文章了,准确的说是2个月, ... -
ProcessBar 2种经典实现
2011-12-15 14:05 1212我今天实装了ProcessBar 的两种实现方式 下面 ... -
using C# modify app.config in the run time
2011-12-13 11:19 1383今天在印度的网站上发现一个很经典的代码,也对比了国内的网站的答 ... -
winform 方向键焦点丢失问题(keydown event not work)
2011-12-10 11:47 2042在项目中遇到了,方向键不能被keydown event 捕捉的 ... -
Windows Install SQL Manager Error
2011-11-21 09:52 1134在安装SQL Manager的时候会出现异常,是由于操作系统的 ... -
C# 文件Copy 不包含.svn文件
2011-11-18 11:48 1892今天遇到了C#文件copy的问题 现在写出了解决方案 ... -
实现winform 代码导入dll
2011-11-14 14:48 1597代码如下: [DllImport(" ... -
C# winform 应用程序只打开一次(实现)
2011-11-14 13:43 7119winform 有的时候只能打开一次,下一次不要打开的应用 ... -
.net 3.5 Form Chart 解决方案
2011-11-12 16:49 1794刚刚写了一篇关于自己生活的文章,下面写下,最近我一直在做个项目 ... -
Window Form所有组件按主Form扩大
2011-11-08 13:08 1332今天遇到了Form 扩大到问题,写下了如下代码,希望对大家有用 ...
相关推荐
基于arm64版本的docker-compose文件
台区终端电科院送检文档
埃夫特机器人Ethernet IP 通讯配置步骤
rv320e机器人重型关节行星摆线减速传动装置研发
气缸驱动爬杆机器人的设计().zip
56tgyhujikolp[
内容概要:本文档提供了基于OpenCV的数字身份验证系统的Python代码示例,涵盖人脸检测、训练和识别三个主要功能模块。首先,通过调用OpenCV的CascadeClassifier加载预训练模型,实现人脸检测并采集多张人脸图像用于后续训练。接着,利用LBPH(局部二值模式直方图)算法对面部特征进行训练,生成训练数据集。最后,在实际应用中,系统能够实时捕获视频流,对比已有的人脸数据库完成身份验证。此外,还介绍了必要的环境配置如依赖库安装、文件路径设置以及摄像头兼容性的处理。 适合人群:对计算机视觉感兴趣的研发人员,尤其是希望深入了解OpenCV库及其在人脸识别领域的应用者。 使用场景及目标:适用于构建安全认证系统的企业或机构,旨在提高出入管理的安全性和效率。具体应用场景包括但不限于门禁控制系统、考勤打卡机等。 其他说明:文中提供的代码片段仅为基本框架,可根据实际需求调整参数优化性能。同时提醒开发者注意隐私保护法规,合法合规地收集和使用个人生物识别信息。
内容概要:本文档详细介绍了Java并发编程的核心知识点,涵盖基础知识、并发理论、线程池、并发容器、并发队列及并发工具类等方面。主要内容包括但不限于:多线程应用场景及其优劣、线程与进程的区别、线程同步方法、线程池的工作原理及配置、常见并发容器的特点及使用场景、并发队列的分类及常用队列介绍、以及常用的并发工具类。文档旨在帮助开发者深入理解和掌握Java并发编程的关键技术和最佳实践。 适合人群:具备一定Java编程经验的研发人员,尤其是希望深入了解并发编程机制、提高多线程应用性能的中级及以上水平的Java开发者。 使用场景及目标:①帮助开发者理解并发编程的基本概念和技术细节;②指导开发者在实际项目中合理运用多线程和并发工具,提升应用程序的性能和可靠性;③为准备Java技术面试的候选人提供全面的知识参考。 其他说明:文档内容详尽,适合用作深度学习资料或面试复习指南。建议读者结合实际编码练习,逐步掌握并发编程技巧。文中提到的多种并发工具类和容器,均附有具体的应用场景和注意事项,有助于读者更好地应用于实际工作中。
这个数据集包含了日常步数统计、睡眠时长、活跃分钟数以及消耗的卡路里,是个人健康与健身追踪的一部分。 该数据集非常适合用于以下实践: 数据清洗:现实世界中的数据往往包含缺失值、异常值或不一致之处。例如,某些天的步数可能缺失,或者存在不切实际的数值(如10,000小时的睡眠或负数的卡路里消耗)。通过处理这些问题,可以学习如何清理和准备数据进行分析。 探索性分析(发现日常习惯中的模式):可以通过分析找出日常生活中的模式和趋势,比如一周中哪一天人们通常走得最多,或是睡眠时间与活跃程度之间的关系等。 构建可视化图表(步数趋势、睡眠与活动对比图):将数据转换成易于理解的图形形式,有助于更直观地看出数据的趋势和关联。例如,绘制步数随时间变化的趋势图,或是比较睡眠时间和活动量之间的关系图。 数据叙事(将个人风格的追踪转化为可操作的见解):通过讲述故事的方式,把从数据中得到的洞察变成具体的行动建议。例如,根据某人特定时间段内的活动水平和睡眠质量,提供改善健康状况的具体建议。
资源内项目源码是来自个人的毕业设计,代码都测试ok,包含源码、数据集、可视化页面和部署说明,可产生核心指标曲线图、混淆矩阵、F1分数曲线、精确率-召回率曲线、验证集预测结果、标签分布图。都是运行成功后才上传资源,毕设答辩评审绝对信服的保底85分以上,放心下载使用,拿来就能用。包含源码、数据集、可视化页面和部署说明一站式服务,拿来就能用的绝对好资源!!! 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、大作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.txt文件,仅供学习参考, 切勿用于商业用途。
nginx
资源内项目源码是来自个人的毕业设计,代码都测试ok,包含源码、数据集、可视化页面和部署说明,可产生核心指标曲线图、混淆矩阵、F1分数曲线、精确率-召回率曲线、验证集预测结果、标签分布图。都是运行成功后才上传资源,毕设答辩评审绝对信服的保底85分以上,放心下载使用,拿来就能用。包含源码、数据集、可视化页面和部署说明一站式服务,拿来就能用的绝对好资源!!! 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、大作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.txt文件,仅供学习参考, 切勿用于商业用途。
资源内项目源码是来自个人的毕业设计,代码都测试ok,包含源码、数据集、可视化页面和部署说明,可产生核心指标曲线图、混淆矩阵、F1分数曲线、精确率-召回率曲线、验证集预测结果、标签分布图。都是运行成功后才上传资源,毕设答辩评审绝对信服的保底85分以上,放心下载使用,拿来就能用。包含源码、数据集、可视化页面和部署说明一站式服务,拿来就能用的绝对好资源!!! 项目备注 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、大作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.txt文件,仅供学习参考, 切勿用于商业用途。
模拟知识付费小程序,可流量主运营模式
什么是普通上传 调用接口一次性完成一个文件的上传。 普通上传2个缺点 文件无法续传,比如上传了一个比较大的文件,中间突然断掉了,需要重来 大文件上传太慢 解决方案 分片上传
英二2010-2021阅读理解 Part A 题干单词(补).pdf
2023-04-06-项目笔记-第四百五十五阶段-课前小分享_小分享1.坚持提交gitee 小分享2.作业中提交代码 小分享3.写代码注意代码风格 4.3.1变量的使用 4.4变量的作用域与生命周期 4.4.1局部变量的作用域 4.4.2全局变量的作用域 4.4.2.1全局变量的作用域_1 4.4.2.453局变量的作用域_453- 2025-04-01
微信小程序项目课程设计,包含LW+ppt
GP300单缸液压圆锥破碎机CAD().zip
超实用telnet调试工具,支持重连,命令定时发送,日志存储等。