- 浏览: 91037 次
- 性别:
- 来自: 深圳
最新评论
-
Csf_java:
是不是少了什么东西?加载不了dll吗?Exception in ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。 -
zaizai13:
请问我的为什么总是报log4j:WARN No appende ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。 -
stjauns:
chairmanwang 写道楼主您好,我使用了您的程序,但是 ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。 -
chairmanwang:
楼主您好,我使用了您的程序,但是程序报错log4j:WARN ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。 -
stjauns:
daizhe 写道楼主好!感谢分享!我的系统是win7 64位 ...
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。
系统要增加工作计划功能,让每个营业部每周末分派下周本部门每个人的工作量。
用到了这个周次选择Panel。网上随便搜搜没有,就自己弄了个。
界面如图:
主功能代码
日期处理工具,网上随便搜的:
自定义颜色类:
用到了这个周次选择Panel。网上随便搜搜没有,就自己弄了个。
界面如图:
主功能代码
package transms.app._0all.util.weekselect; import javax.swing.ButtonGroup; import javax.swing.JPanel; import java.awt.GridLayout; import java.awt.Color; import java.awt.BorderLayout; import java.awt.Insets; import javax.swing.JButton; import java.text.ParseException; import java.util.HashMap; import java.util.Map; import javax.swing.JToggleButton; import org.apache.log4j.Logger; import transms.app._0all.util.VOUtil; import transms.app._0all.util.providers.Colors; import util.Info; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.BorderFactory; import javax.swing.JToolBar; import javax.swing.JComboBox; public class WeekselectPanel extends JPanel { private static final long serialVersionUID = 1L; /** * This is the default constructor */ public WeekselectPanel() { super(); initialize(); selectedyear = Integer.valueOf(VOUtil.now().substring(0, 4)); getComboYear().setSelectedItem(String.valueOf(selectedyear)); try { addWeeks(selectedyear); } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); } setToday(); } private int selectedyear = -1; public String getYear() { return String.valueOf(selectedyear); } private int selectedweek = -1; public int getWeek() { return selectedweek; } /** * 选中今天 */ private void setToday() { try { int currentweek = du.getWeekNumOfYearDay(VOUtil.now()); mapButton.get(currentweek).setSelected(true); action(String.valueOf(currentweek)); } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); } } Logger logger = Logger.getLogger(WeekselectPanel.class); // @jve:decl-index=0: Map<Integer, JToggleButton> mapButton = new HashMap<Integer, JToggleButton>(); // @jve:decl-index=0: Map<Integer, Color> mapMonthcolor = new HashMap<Integer, Color>(); // @jve:decl-index=0: Map<Integer, Color> mapSeasoncolor = new HashMap<Integer, Color>(); // @jve:decl-index=0: private JPanel panelWeek = null; private JToolBar jToolBar = null; private JComboBox comboYear = null; private JButton jButtonOK = null; { mapMonthcolor.put(1, Colors.Chartreuse3); mapMonthcolor.put(2, Colors.DarkOliveGreen2); mapMonthcolor.put(3, Colors.DarkOrange1); mapMonthcolor.put(4, Colors.Firebrick1); mapMonthcolor.put(5, Colors.Ivory2); mapMonthcolor.put(6, Colors.Khaki1); mapMonthcolor.put(7, Colors.LightSalmon); mapMonthcolor.put(8, Colors.OrangeRed); mapMonthcolor.put(9, Colors.PaleGreen); mapMonthcolor.put(10, Colors.PaleTurquoise1); mapMonthcolor.put(11, Colors.Purple3); mapMonthcolor.put(12, Color.CYAN); mapSeasoncolor.put(1, Colors.Ivory2); mapSeasoncolor.put(2, Colors.Ivory2); mapSeasoncolor.put(3, Colors.Ivory2); mapSeasoncolor.put(4, Colors.Chartreuse3); mapSeasoncolor.put(5, Colors.Chartreuse3); mapSeasoncolor.put(6, Colors.Chartreuse3); mapSeasoncolor.put(7, Colors.Purple3); mapSeasoncolor.put(8, Colors.Purple3); mapSeasoncolor.put(9, Colors.Purple3); mapSeasoncolor.put(10, Colors.DarkOrange1); mapSeasoncolor.put(11, Colors.DarkOrange1); mapSeasoncolor.put(12, Colors.DarkOrange1); } private DateUtil du = new DateUtil(); // @jve:decl-index=0: private void addWeeks(int year) throws ParseException { ButtonGroup bg = new ButtonGroup(); getPanelWeek().removeAll(); mapButton.clear(); for (int i = 1; i < 55; i++) { String sun = du.getYearWeekFirstDay(year, i); String sat = du.getYearWeekEndDay(year, i); if (!sat.startsWith(String.valueOf(year))) { continue; } if (mapButton.get(i) == null) { JToggleButton button = new JToggleButton(String.valueOf(i)); mapButton.put(i, button); getPanelWeek().add(mapButton.get(i)); bg.add(mapButton.get(i)); mapButton.get(i).addActionListener(getButtonAction()); } mapButton.get(i).setMargin(new Insets(0, 0, 0, 0)); mapButton.get(i).setToolTipText( i + " " + du.getMonth(sun) + " " + sun + " - " + sat); mapButton.get(i).setForeground(mapMonthcolor.get(du.getMonth(sat))); mapButton.get(i).setBackground(mapSeasoncolor.get(du.getMonth(sat))); mapButton.get(i).setActionCommand(String.valueOf(i)); } } private ActionListener getButtonAction() { return new ActionListener() { public void actionPerformed(ActionEvent e) { action(e.getActionCommand()); } }; } private void action(String actionCommand) { selectedweek = Integer.valueOf(actionCommand); try { getJButtonOK().setText( actionCommand + "周 " + du.getYearWeekFirstDay(Integer.valueOf(getComboYear() .getSelectedItem().toString()), selectedweek) + Info.labelInfo("to") + du.getYearWeekEndDay(Integer.valueOf(getComboYear() .getSelectedItem().toString()), selectedweek)); } catch (NumberFormatException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } catch (ParseException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } } /** * This method initializes this * * @return void */ private void initialize() { this.setLayout(new BorderLayout()); this.setSize(312, 102); this.add(getPanelWeek(), BorderLayout.CENTER); this.add(getJToolBar(), BorderLayout.NORTH); this.setBorder(BorderFactory.createEtchedBorder()); } /** * This method initializes panelWeek * * @return javax.swing.JPanel */ private JPanel getPanelWeek() { if (panelWeek == null) { GridLayout gridLayout1 = new GridLayout(0, 13); panelWeek = new JPanel(); panelWeek.setLayout(gridLayout1); } return panelWeek; } /** * This method initializes jToolBar * * @return javax.swing.JToolBar */ private JToolBar getJToolBar() { if (jToolBar == null) { jToolBar = new JToolBar(); jToolBar.add(getComboYear()); jToolBar.add(getJButtonOK()); } return jToolBar; } /** * This method initializes comboYear * * @return javax.swing.JComboBox */ private JComboBox getComboYear() { if (comboYear == null) { String[] years = { "2009", "2010", "2011", "2012", "2013", "2014", "2015", "2016", "2017", "2018", "2019", "2020" }; comboYear = new JComboBox(years); comboYear.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent e) { selectedyear = Integer .valueOf(comboYear.getSelectedItem().toString()); try { addWeeks(selectedyear); } catch (NumberFormatException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } catch (ParseException e1) { // TODO Auto-generated catch block e1.printStackTrace(); } } }); } return comboYear; } /** * This method initializes jButtonOK * * @return javax.swing.JButton */ private JButton getJButtonOK() { if (jButtonOK == null) { jButtonOK = new JButton(); jButtonOK.addActionListener(new java.awt.event.ActionListener() { public void actionPerformed(java.awt.event.ActionEvent e) { logger.info(selectedyear + " " + selectedweek); } }); } return jButtonOK; } } // @jve:decl-index=0:visual-constraint="10,9"
日期处理工具,网上随便搜的:
package transms.app._0all.util.weekselect; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Calendar; import java.util.GregorianCalendar; /** * 说明: 取日期时间工具 */ public class DateUtil { /** * @see 取得当前日期(格式为:yyyy-MM-dd) * @return String */ public String GetDate() { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); String sDate = sdf.format(new Date()); return sDate; } /** * @see 取得当前时间(格式为:yyy-MM-dd HH:mm:ss) * @return String */ public static String GetDateTime() { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String sDate = sdf.format(new Date()); return sDate; } /** * @see 按指定格式取得当前时间() * @return String */ public String GetTimeFormat(String strFormat) { SimpleDateFormat sdf = new SimpleDateFormat(strFormat); String sDate = sdf.format(new Date()); return sDate; } /** * @see 取得指定时间的给定格式() * @return String * @throws ParseException */ public String SetDateFormat(String myDate, String strFormat) throws ParseException { SimpleDateFormat sdf = new SimpleDateFormat(strFormat); String sDate = sdf.format(sdf.parse(myDate)); return sDate; } public String FormatDateTime(String strDateTime, String strFormat) { String sDateTime = strDateTime; try { Calendar Cal = parseDateTime(strDateTime); SimpleDateFormat sdf = null; sdf = new SimpleDateFormat(strFormat); sDateTime = sdf.format(Cal.getTime()); } catch (Exception e) { } return sDateTime; } public static Calendar parseDateTime(String baseDate) { Calendar cal = null; cal = new GregorianCalendar(); int yy = Integer.parseInt(baseDate.substring(0, 4)); int mm = Integer.parseInt(baseDate.substring(5, 7)) - 1; int dd = Integer.parseInt(baseDate.substring(8, 10)); int hh = 0; int mi = 0; int ss = 0; if (baseDate.length() > 12) { hh = Integer.parseInt(baseDate.substring(11, 13)); mi = Integer.parseInt(baseDate.substring(14, 16)); ss = Integer.parseInt(baseDate.substring(17, 19)); } cal.set(yy, mm, dd, hh, mi, ss); return cal; } public int getDay(String strDate) { Calendar cal = parseDateTime(strDate); return cal.get(Calendar.DATE); } public int getMonth(String strDate) { Calendar cal = parseDateTime(strDate); return cal.get(Calendar.MONTH) + 1; } public int getWeekDay(String strDate) { Calendar cal = parseDateTime(strDate); return cal.get(Calendar.DAY_OF_WEEK); } public String getWeekDayName(String strDate) { String mName[] = { "日", "一", "二", "三", "四", "五", "六" }; int iWeek = getWeekDay(strDate); iWeek = iWeek - 1; return "星期" + mName[iWeek]; } public int getYear(String strDate) { Calendar cal = parseDateTime(strDate); return cal.get(Calendar.YEAR) + 1900; } public String DateAdd(String strDate, int iCount, int iType) { Calendar Cal = parseDateTime(strDate); int pType = 0; if (iType == 0) { pType = 1; } else if (iType == 1) { pType = 2; } else if (iType == 2) { pType = 5; } else if (iType == 3) { pType = 10; } else if (iType == 4) { pType = 12; } else if (iType == 5) { pType = 13; } Cal.add(pType, iCount); SimpleDateFormat sdf = null; if (iType <= 2) sdf = new SimpleDateFormat("yyyy-MM-dd"); else sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String sDate = sdf.format(Cal.getTime()); return sDate; } public String DateAdd(String strOption, int iDays, String strStartDate) { if (!strOption.equals("d")) ; return strStartDate; } public int DateDiff(String strDateBegin, String strDateEnd, int iType) { Calendar calBegin = parseDateTime(strDateBegin); Calendar calEnd = parseDateTime(strDateEnd); long lBegin = calBegin.getTimeInMillis(); long lEnd = calEnd.getTimeInMillis(); int ss = (int) ((lBegin - lEnd) / 1000L); int min = ss / 60; int hour = min / 60; int day = hour / 24; if (iType == 0) return hour; if (iType == 1) return min; if (iType == 2) return day; else return -1; } /*************************************************************************** * @功能 判断某年是否为闰年 * @return boolean * @throws ParseException **************************************************************************/ public boolean isLeapYear(int yearNum) { boolean isLeep = false; /** 判断是否为闰年,赋值给一标识符flag */ if ((yearNum % 4 == 0) && (yearNum % 100 != 0)) { isLeep = true; } else if (yearNum % 400 == 0) { isLeep = true; } else { isLeep = false; } return isLeep; } /*************************************************************************** * @功能 计算当前日期某年的第几周 * @return interger * @throws ParseException **************************************************************************/ public int getWeekNumOfYear() { Calendar calendar = Calendar.getInstance(); int iWeekNum = calendar.get(Calendar.WEEK_OF_YEAR); return iWeekNum; } /*************************************************************************** * @功能 计算指定日期某年的第几周 * @return interger * @throws ParseException **************************************************************************/ public int getWeekNumOfYearDay(String strDate) throws ParseException { Calendar calendar = Calendar.getInstance(); SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd"); Date curDate = format.parse(strDate); calendar.setTime(curDate); int iWeekNum = calendar.get(Calendar.WEEK_OF_YEAR); return iWeekNum; } /*************************************************************************** * @功能 计算某年某周的开始日期 * @return interger * @throws ParseException **************************************************************************/ public String getYearWeekFirstDay(int yearNum, int weekNum) throws ParseException { Calendar cal = Calendar.getInstance(); cal.set(Calendar.YEAR, yearNum); cal.set(Calendar.WEEK_OF_YEAR, weekNum); cal.set(Calendar.DAY_OF_WEEK, Calendar.MONDAY); // 分别取得当前日期的年、月、日 String tempYear = Integer.toString(cal.get(Calendar.YEAR)); String tempMonth = Integer.toString(cal.get(Calendar.MONTH) + 1); String tempDay = Integer.toString(cal.get(Calendar.DATE)); String tempDate = tempYear + "-" + tempMonth + "-" + tempDay; return SetDateFormat(tempDate, "yyyy-MM-dd"); } /*************************************************************************** * @功能 计算某年某周的结束日期 * @return interger * @throws ParseException **************************************************************************/ public String getYearWeekEndDay(int yearNum, int weekNum) throws ParseException { Calendar cal = Calendar.getInstance(); cal.set(Calendar.YEAR, yearNum); cal.set(Calendar.WEEK_OF_YEAR, weekNum + 1); cal.set(Calendar.DAY_OF_WEEK, Calendar.SUNDAY); // 分别取得当前日期的年、月、日 String tempYear = Integer.toString(cal.get(Calendar.YEAR)); String tempMonth = Integer.toString(cal.get(Calendar.MONTH) + 1); String tempDay = Integer.toString(cal.get(Calendar.DATE)); String tempDate = tempYear + "-" + tempMonth + "-" + tempDay; return SetDateFormat(tempDate, "yyyy-MM-dd"); } /*************************************************************************** * @功能 计算某年某月的开始日期 * @return interger * @throws ParseException **************************************************************************/ public String getYearMonthFirstDay(int yearNum, int monthNum) throws ParseException { // 分别取得当前日期的年、月、日 String tempYear = Integer.toString(yearNum); String tempMonth = Integer.toString(monthNum); String tempDay = "1"; String tempDate = tempYear + "-" + tempMonth + "-" + tempDay; return SetDateFormat(tempDate, "yyyy-MM-dd"); } /*************************************************************************** * @功能 计算某年某月的结束日期 * @return interger * @throws ParseException **************************************************************************/ public String getYearMonthEndDay(int yearNum, int monthNum) throws ParseException { // 分别取得当前日期的年、月、日 String tempYear = Integer.toString(yearNum); String tempMonth = Integer.toString(monthNum); String tempDay = "31"; if (tempMonth.equals("1") || tempMonth.equals("3") || tempMonth.equals("5") || tempMonth.equals("7") || tempMonth.equals("8") || tempMonth.equals("10") || tempMonth.equals("12")) { tempDay = "31"; } if (tempMonth.equals("4") || tempMonth.equals("6") || tempMonth.equals("9") || tempMonth.equals("11")) { tempDay = "30"; } if (tempMonth.equals("2")) { if (isLeapYear(yearNum)) { tempDay = "29"; } else { tempDay = "28"; } } // System.out.println("tempDay:" + tempDay); String tempDate = tempYear + "-" + tempMonth + "-" + tempDay; return SetDateFormat(tempDate, "yyyy-MM-dd"); } }
自定义颜色类:
package transms.app._0all.util.providers; import java.awt.Color; public class Colors extends Color { private static final long serialVersionUID = 3680677118390160469L; public Colors(int rgb) { super(rgb); } /** * 淡黄 */ public static final Color Khaki1 = new Color(255, 246, 143); /** * 浅蓝 */ public static final Color PaleTurquoise1 = new Color(187, 255, 255); /** * 背景色 */ public static final Color Ivory2 = new Color(238, 238, 224); /** * 火红 */ public static final Color Firebrick1 = new Color(255, 48, 48); /** * 暗绿 */ public static final Color Chartreuse3 = new Color(69, 139, 0); /** * 紫 */ public static final Color Purple3 = new Color(125, 38, 205); /** * 橘红 */ public static final Color OrangeRed = new Color(255, 69, 0); /** * 暗橙 */ public static final Color DarkOrange1 = new Color(255, 127, 0); /** * 暗橄榄绿 */ public static final Color DarkOliveGreen2 = new Color(188, 238, 104); /** * 淡红 */ public static final Color LightSalmon = new Color(255, 160, 122); /** * 淡绿 */ public static final Color PaleGreen = new Color(152, 251, 152); }
发表评论
-
双击一个jar文件打开另一个jar文件中的main方法
2022-12-01 14:08 261做一个仅有META-INF的jar文件,其下MANIFEST. ... -
JSP网站从Tomcat7升级到Tomcat9抛出错误Unable to compile class for JSP] with root cause
2020-03-05 13:10 1014一个历史遗留的JSP网站,部署在Tomcat7上,一切正常 现 ... -
解决JTextPane设定其Background颜色无法导出正确的HTML的问题
2018-06-26 18:09 1330设定foreground代码如下: SimpleAttribu ... -
java和mysql的week周次对应方法
2018-04-13 13:43 1104MYSQL方法: select dt,if(month(dt) ... -
使用WindowBuilder来代替VisualEditor
2016-07-02 10:54 1@wbp.factory 标记static方法为Compone ... -
Eclipse Mars.2 refactory rename提示大量syntax error,编译器却无error仅warning
2016-07-01 12:26 752折腾半天,发现还是'_'作为包名和变量名的问题 最终把所有的' ... -
java8中的getTimeZone表现与java7中不同
2015-01-13 17:44 1046原来的代码中使用TimeZone.setDefault(Tim ... -
Java-Swing界面的摄像头\高拍仪抓图功能,有预览视频-使用xuggle。
2013-05-27 15:56 8872需求:要直接使用SWING来抓高拍仪的图,亦即支持摄像头。 曾 ... -
Eclipse+Subclipse插件,设定一个文件取消其版本控制,添加到svn:ignor。
2013-03-14 23:15 4982原始帖子见: http://www.oschina.net/q ... -
tomcat:A docBase *** inside the host appBase has been specified...问题及解决
2013-01-15 18:33 13448eclipse galileo升级到indigo,发布项目到t ... -
ftp4j连接Microsoft FTP Service 7.5的list错误it.sauronsoftware.ftp4j.FTPListParse问题及解决
2012-11-12 18:28 3359源代码参见前几篇的附件。 FTP服务器准备从cuteFTP换 ... -
深圳地铁线路大图-PNG格式
2011-06-25 12:04 1980上网找一圈,只有老图,在官方网站上也没有能下载的图片格式,于是 ... -
从MYSQL的binlog恢复指定的SQL语句,解决中文乱码问题。
2011-04-09 21:24 3452系统错误导致3天中的部分数据被错误覆盖,只能从MYSQL的bi ... -
eclipst+tomcat 发布多个互相依赖的project问题
2010-10-28 16:32 1611若一个Dynamic Web project的java bui ... -
JAVA自动更新下载FTP服务器上的文件,带Swing进度。
2010-05-24 17:56 6037使用ftp4j-1.5,见http://www.saurons ... -
OY!原来是JAVA的BUG呀~~~在SwingWorker中嵌套调用SwingWorker的死锁问题解决方法。
2010-05-08 14:18 1244java6update18开始,在一个SwingWorker的 ... -
20100426,放弃EJB,转向轻量级的Hessian
2010-04-28 15:25 1783公司系统的远程调用层从EJB2.1转换为Hessian了,现正 ... -
设定窗口的默认按钮按键:ESC和ENTER等按键
2010-03-03 17:44 1577在Google上查到的代码见下面的链接 http://www. ... -
JSplitPane用代码调用OneTouchExpand/Collapse
2009-10-26 15:49 1062直接设定: getJsp1().setDividerLocat ... -
AutoCodeGenTool自动生成重复代码
2009-10-24 23:44 1143公司系统用tikeswing做表现层,配置布局的时候有很多重复 ...
相关推荐
【资源说明】 果壳处理器研究小组(Topic基于RISCV64果核处理器的卷积神经网络加速器研究)详细文档+全部资料+优秀项目+源码.zip 【备注】 1、该项目是个人高分项目源码,已获导师指导认可通过,答辩评审分达到95分 2、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 3、本项目适合计算机相关专业(人工智能、通信工程、自动化、电子信息、物联网等)的在校学生、老师或者企业员工下载使用,也可作为毕业设计、课程设计、作业、项目初期立项演示等,当然也适合小白学习进阶。 4、如果基础还行,可以在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于计算机科学与技术等相关专业,更为适合;
资源说明:https://blog.csdn.net/m0_38106923/article/details/144637354 一分价钱一分货,项目代码可顺利编译运行~
有java环境就可以运行起来 ,zip里包含源码+论文+PPT, 系统设计与功能: 文档详细描述了系统的后台管理功能,包括系统管理模块、新闻资讯管理模块、公告管理模块、社区影院管理模块、会员上传下载管理模块以及留言管理模块。 系统管理模块:允许管理员重新设置密码,记录登录日志,确保系统安全。 新闻资讯管理模块:实现新闻资讯的添加、删除、修改,确保主页新闻部分始终显示最新的文章。 公告管理模块:类似于新闻资讯管理,但专注于主页公告的后台管理。 社区影院管理模块:管理所有视频的添加、删除、修改,包括影片名、导演、主演、片长等信息。 会员上传下载管理模块:审核与删除会员上传的文件。 留言管理模块:回复与删除所有留言,确保系统内的留言得到及时处理。 环境说明: 开发语言:Java 框架:ssm,mybatis JDK版本:JDK1.8 数据库:mysql 5.7及以上 数据库工具:Navicat11及以上 开发软件:eclipse/idea Maven包:Maven3.3及以上
【资源说明】 基于python3+selenium+unittest的WebUI自动化测试框架,使用POM(页面对象模型)设计模式,适合几乎所有web项目,可集成Jenkins部署自动化测试资料齐全+详细文档+高分项目+源码.zip 【备注】 1、该项目是个人高分项目源码,已获导师指导认可通过,答辩评审分达到95分 2、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 3、本项目适合计算机相关专业(人工智能、通信工程、自动化、电子信息、物联网等)的在校学生、老师或者企业员工下载使用,也可作为毕业设计、课程设计、作业、项目初期立项演示等,当然也适合小白学习进阶。 4、如果基础还行,可以在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!
智能车开发案例,使用Python语言在一个文件中实现。这里我们将添加一些额外的功能,如自动驾驶模式、避障、超声波传感器读取以及通过TCP/IP网络远程控制。 首先,确保你已经安装了pyserial、socket库: pip install pyserial
屏幕截图 2024-12-21 165859
电缆、树木检测15-YOLO(v5至v11)、COCO、CreateML、Paligemma、TFRecord、VOC数据集合集.rarPL + VG-V4 2024-01-04 6:04 PM ============================= *与您的团队在计算机视觉项目上合作 *收集和组织图像 *了解和搜索非结构化图像数据 *注释,创建数据集 *导出,训练和部署计算机视觉模型 *使用主动学习随着时间的推移改善数据集 对于最先进的计算机视觉培训笔记本,您可以与此数据集一起使用 该数据集包括5082张图像。 Powerlines-Tree以可可格式注释。 将以下预处理应用于每个图像: *调整大小为640x640(拉伸) 应用以下扩展用于创建每个源图像的2个版本: *水平翻转的50%概率 *垂直翻转的50%概率 *以下90度旋转之一的同等概率:无,顺时针,逆时针方向
Matlab领域上传的视频均有对应的完整代码,皆可运行,亲测可用,适合小白; 1、代码压缩包内容 主函数:main.m; 调用函数:其他m文件;无需运行 运行结果效果图; 2、代码运行版本 Matlab 2019b;若运行有误,根据提示修改;若不会,私信博主; 3、运行操作步骤 步骤一:将所有文件放到Matlab的当前文件夹中; 步骤二:双击打开main.m文件; 步骤三:点击运行,等程序运行完得到结果; 4、仿真咨询 如需其他服务,可私信博主; 4.1 博客或资源的完整代码提供 4.2 期刊或参考文献复现 4.3 Matlab程序定制 4.4 科研合作
圣诞树代码 这段代码会生成一个简单的圣诞树图形,包括: 三层树冠,使用不同深度的绿色。 一个棕色的树干。 一颗黄色的星星作为树顶。 随机分布的彩色小圆点作为装饰。 请确保你已经安装了matplotlib库,如果没有,可以通过pip install matplotlib来安装。运行这段代码后,你应该能看到一个圣诞树的图形。
1、资源项目源码均已通过严格测试验证,保证能够正常运行; 2、项目问题、技术讨论,可以给博主私信或留言,博主看到后会第一时间与您进行沟通; 3、本项目比较适合计算机领域相关的毕业设计课题、课程作业等使用,尤其对于计算机科学与技术等相关专业,更为适合;
【资源说明】 基于 Node.js、MongoDB、Redis 开发的系统小商城后台全部资料+详细文档+源码+高分项目.zip 【备注】 1、该项目是个人高分项目源码,已获导师指导认可通过,答辩评审分达到95分 2、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 3、本项目适合计算机相关专业(人工智能、通信工程、自动化、电子信息、物联网等)的在校学生、老师或者企业员工下载使用,也可作为毕业设计、课程设计、作业、项目初期立项演示等,当然也适合小白学习进阶。 4、如果基础还行,可以在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!
zip里包含源码+论文+PPT,有java环境就可以运行起来 ,功能说明: 文档开篇阐述了随着计算机技术、通信技术和网络技术的快速发展,智慧社区门户网站的建设成为了可能,并被视为21世纪信息产业的主要发展方向之一 强调了网络信息管理技术、数字化处理技术和数字式信息资源建设在国际竞争中的重要性。 指出了智慧社区门户网站系统的编程语言为Java,数据库为MYSQL,并实现了新闻资讯、社区共享、在线影院等功能。 系统设计与功能: 文档详细描述了系统的后台管理功能,包括系统管理模块、新闻资讯管理模块、公告管理模块、社区影院管理模块、会员上传下载管理模块以及留言管理模块。 系统管理模块:允许管理员重新设置密码,记录登录日志,确保系统安全。 新闻资讯管理模块:实现新闻资讯的添加、删除、修改,确保主页新闻部分始终显示最新的文章。 公告管理模块:类似于新闻资讯管理,但专注于主页公告的后台管理。 社区影院管理模块:管理所有视频的添加、删除、修改,包括影片名、导演、主演、片长等信息。 会员上传下载管理模块:审核与删除会员上传的文件。 留言管理模块:回复与删除所有留言,确保系统内的留言得到及时处理。
ECharts散点图-日历图
有java环境就可以运行起来 ,zip里包含源码+论文+PPT, 系统设计与功能: 文档详细描述了系统的后台管理功能,包括系统管理模块、新闻资讯管理模块、公告管理模块、社区影院管理模块、会员上传下载管理模块以及留言管理模块。 系统管理模块:允许管理员重新设置密码,记录登录日志,确保系统安全。 新闻资讯管理模块:实现新闻资讯的添加、删除、修改,确保主页新闻部分始终显示最新的文章。 公告管理模块:类似于新闻资讯管理,但专注于主页公告的后台管理。 社区影院管理模块:管理所有视频的添加、删除、修改,包括影片名、导演、主演、片长等信息。 会员上传下载管理模块:审核与删除会员上传的文件。 留言管理模块:回复与删除所有留言,确保系统内的留言得到及时处理。 环境说明: 开发语言:Java 框架:ssm,mybatis JDK版本:JDK1.8 数据库:mysql 5.7及以上 数据库工具:Navicat11及以上 开发软件:eclipse/idea Maven包:Maven3.3及以上
四川采矿场消防管理规定
有java环境就可以运行起来 ,zip里包含源码+论文+PPT, 系统设计与功能: 文档详细描述了系统的后台管理功能,包括系统管理模块、新闻资讯管理模块、公告管理模块、社区影院管理模块、会员上传下载管理模块以及留言管理模块。 系统管理模块:允许管理员重新设置密码,记录登录日志,确保系统安全。 新闻资讯管理模块:实现新闻资讯的添加、删除、修改,确保主页新闻部分始终显示最新的文章。 公告管理模块:类似于新闻资讯管理,但专注于主页公告的后台管理。 社区影院管理模块:管理所有视频的添加、删除、修改,包括影片名、导演、主演、片长等信息。 会员上传下载管理模块:审核与删除会员上传的文件。 留言管理模块:回复与删除所有留言,确保系统内的留言得到及时处理。 环境说明: 开发语言:Java 框架:ssm,mybatis JDK版本:JDK1.8 数据库:mysql 5.7及以上 数据库工具:Navicat11及以上 开发软件:eclipse/idea Maven包:Maven3.3及以上
荒地、水体、农田、湖检测14-YOLO(v5至v11)、COCO、CreateML、Paligemma、TFRecord、VOC数据集合集.rarTAAL-TERRAIN-V6 2022-12-03下午5:58 ============================= *与您的团队在计算机视觉项目上合作 *收集和组织图像 *了解非结构化图像数据 *注释,创建数据集 *导出,训练和部署计算机视觉模型 *使用主动学习随着时间的推移改善数据集 它包括4115张图像。 地形以可可格式注释。 将以下预处理应用于每个图像: *像素数据的自动取向(带有Exif-Arientation剥离) *调整大小为640x640(拉伸) 应用以下扩展来创建每个源图像的3个版本: *水平翻转的50%概率 *垂直翻转的50%概率 *以下90度旋转之一的同等概率:无,顺时针,逆时针,颠倒
python hhhhhhhh
【资源说明】 基于selenium的boss直聘自动打招呼工具资料齐全+详细文档+高分项目+源码.zip 【备注】 1、该项目是个人高分项目源码,已获导师指导认可通过,答辩评审分达到95分 2、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 3、本项目适合计算机相关专业(人工智能、通信工程、自动化、电子信息、物联网等)的在校学生、老师或者企业员工下载使用,也可作为毕业设计、课程设计、作业、项目初期立项演示等,当然也适合小白学习进阶。 4、如果基础还行,可以在此代码基础上进行修改,以实现其他功能,也可直接用于毕设、课设、作业等。 欢迎下载,沟通交流,互相学习,共同进步!