您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. 王小平版遗传算法的光盘源代码

  2. 王小平版遗传算法的光盘源代码 SGPC: Simple Genetic Programming in C by Walter Alden Tackett and Aviram Carmi (gpc@ipld01.hac.com) Version 1.1 (c) 1993 by Walter Alden Tackett and Aviram Carmi This code and documentation is copyrighted and is not in the public dom
  3. 所属分类:C

    • 发布日期:2004-06-25
    • 文件大小:3145728
    • 提供者:chenxh
  1. Skiena-The_Algorithm_Design_Manual.pdf

  2. 英文第二版 目录 . . . . . . . . . . . . . . . . . . . . . . . 50 2.8 War Story: Mystery of the Pyramids . . . . . . . . . . . . . . . . 51 2.9 Advanced Analysis (*) . . . . . . . . . . . . . . . . . . . . . . . . 54 2.10 Exercises . . . . . . . . . . . . .
  3. 所属分类:Java

    • 发布日期:2009-04-29
    • 文件大小:3145728
    • 提供者:arctgx
  1. ASP.NET绘图(GDI)

  2. ASP.NET使用GDI+制作文字|图片水印 [ 2007-8-21 13:21:00 | By: SHARP_C ] 0 推荐System.Drawing.Image image = System.Drawing.Image.FromFile(@"D:\vista\cmd.jpg"); //注意Image的命名控件是System.Drawing.Image而不是System.Web.UI.HtmlControls.Image //在等号后不要使用关键字new,直接从文件创建背景图片 Sy s
  3. 所属分类:C#

    • 发布日期:2009-05-08
    • 文件大小:965
    • 提供者:gao_pan
  1. 多张小图任意位置合成大图

  2. CCTestSelDrawPicDoc* pDoc = GetDocument(); ASSERT_VALID(pDoc); CRect rect; GetClientRect(&rect); //得到客户区矩形 HBITMAP hbitmap; CBitmap bmptemp; CPoint point(200, 50); MedeyTwoPic(pDC, &m_dcFore, &m_dcBk, &m_bmpFore, &m_bmpBk, point, rec t); hbitmap =(H
  3. 所属分类:C

    • 发布日期:2009-05-27
    • 文件大小:146432
    • 提供者:xiaoziyao
  1. 用于.net cf开发的移动设备截图控件

  2. 截图本来是一件很简单的事情,但在PPC上就有点麻烦了。 要求安装.net cf 2.0 功能很简单。直接引用就行。 MySnapShot mss= new MySnapShot(); //直接保存屏幕到指定路径 mss.SaveScreen("/program files/wholeScreen.jpg"); //设定保存路径 mss.savepath = "/program files/"; //设定文件名然后保存 mss.filename = "wholeScreen2.jpg"; mss
  3. 所属分类:C#

    • 发布日期:2009-12-22
    • 文件大小:7168
    • 提供者:mingn728
  1. winCE上的代码能用的好少

  2. Graphics这个没有了么?? 这里不是很清楚么??还有注释呢。。 public sealed class Graphics : MarshalByRefObject, IDeviceContext, IDisposable 这个是那东西的定义。。简单理解成是你要在上面画画的对象就行了 这个不用出现在代码里面啊。。。。 System.Drawing.Pen myPen = new System.Drawing.Pen(System.Drawing.Color.Red);//画笔 对象 Sys
  3. 所属分类:C++

    • 发布日期:2010-04-07
    • 文件大小:1048576
    • 提供者:lkzc11
  1. C#画刷绘制渐变矩形

  2. C#简单实现画刷绘制渐变矩形。 Brush brush1 = new LinearGradientBrush(new Point(10, 10), new Point(50, 50), this.button4.BackColor, this.button3.BackColor); Graphics g; g = this.CreateGraphics(); g.FillRectangle(brush1, 20, 60, 220, 180); brush1.Dispose();
  3. 所属分类:C/C++

    • 发布日期:2011-04-05
    • 文件大小:43008
    • 提供者:Dear723
  1. C#经典范例50讲

  2. 很不错的C#源码,实用,分也不多. using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; namespace NoticePad { /// /// 定时提醒的小工具。 /// public class Form1 : System.Windows.Forms.Form
  3. 所属分类:C#

    • 发布日期:2012-04-18
    • 文件大小:2097152
    • 提供者:dzkhnzy
  1. C# for CSDN 乱七八糟的看不懂

  2. 没法下载,到这里折腾一把试试。 本文由abc2253130贡献 doc文档可能在WAP端浏览体验不佳。建议您优先选择TXT,或下载源文件到本机查看。 C#(WINFORM)学习 一、 C#基础 基础 类型和变量 类型和变量 类型 C# 支持两种类型:“值类型”和“引用类型”。值类型包括简单类型(如 char、int 和 float 等)、枚举类型和结构类型。引用类型包括类 (Class)类 型、接口类型、委托类型和数组类型。 变量的类型声明 变量的类型声明 每个变量必须预先声明其类型。如 in
  3. 所属分类:C#

    • 发布日期:2012-06-03
    • 文件大小:83968
    • 提供者:jaredsun
  1. 由直线、曲线创建图形,using System.Drawing.Drawing2D;的应用例子,C#源代码 Point[]

  2. 由直线、曲线创建图形,using System.Drawing.Drawing2D;的应用例子,C#源代码 Point[] points = { new Point(40, 60), new Point(50, 70), new Point(30, 90)}; GraphicsPath path = new GraphicsPath(); path.StartFigure(); // Start the first figure. path.AddArc(175, 50, 50, 50, 0,
  3. 所属分类:C#

    • 发布日期:2008-12-31
    • 文件大小:33792
    • 提供者:zl2bbmmgg
  1. 创建轨迹梯度,渐变五角星,C#源代码

  2. 创建轨迹梯度,渐变五角星,C#源代码 // Put the points of a polygon in an array. Point[] points = { new Point(75, 0), new Point(100, 50), new Point(150, 50), new Point(112, 75), new Point(150, 150), new Point(75, 100), new Point(0, 150), new Point(37, 75), new Point(
  3. 所属分类:C#

    • 发布日期:2008-12-31
    • 文件大小:33792
    • 提供者:lxh1020wx
  1. 绘制贝赛尔样条,C#源代码Point[] p = {

  2. 绘制贝赛尔样条,C#源代码Point[] p = { new Point(10, 100), // start point of first spline new Point(75, 10), // first control point of first spline new Point(80, 50), // second control point of first spline new Point(100, 150), // end point of first spline and
  3. 所属分类:C#

    • 发布日期:2008-12-31
    • 文件大小:33792
    • 提供者:gouyue
  1. 设置程序窗体在桌面上的位置的实例,C#源代码this.DesktopLocation = new Point(50, 100);

  2. 设置程序窗体在桌面上的位置的实例,C#源代码this.DesktopLocation = new Point(50, 100); VisualStudio2008创建
  3. 所属分类:C#

    • 发布日期:2009-01-18
    • 文件大小:21504
    • 提供者:wangqirongtest1
  1. 设置程序窗体在桌面上的位置和调整程序窗体的尺寸大小的实例,C#源代码this.DesktopLocation = new Point(50, 100);this.Size = new Size(100, 500);

  2. 设置程序窗体在桌面上的位置和调整程序窗体的尺寸大小的实例,C#源代码this.DesktopLocation = new Point(50, 100);this.Size = new Size(100, 500); VisualStudio2008创建
  3. 所属分类:C#

    • 发布日期:2009-01-19
    • 文件大小:37888
    • 提供者:rund11
  1. MT4编程手册.pdf

  2. 本手册为MQL语言编程手册,用于编写EA量化交易脚本指标,投资理财必备技能!MetaQuotes language4(ML4)编程参芳 的智能交易程序。今后,它还可能为你成就一番事业,创造一份新的高收入职业, 前景可期。或许,下一个汇市传奇就是你创造的,你的故事会让后人久久津津乐 无限崇敬。 由于迈达克公司进入中国市场时间不长,在上海设有分公司,但本地化工作 似乎做得不够理想。作为EA编程必读资料,迈达克公司网站在线编程参考资料 分别提供了俄语、英语和屮文版本,其屮屮文版资料大量采用了机器翻译,
  3. 所属分类:其它

    • 发布日期:2019-10-13
    • 文件大小:3145728
    • 提供者:qq_18840365
  1. aida64 2.50中文版(免序列号).rar

  2. 软件介绍: aida64 2.50简体中文版,是一款功能强大的硬件检测工具,它可以让你不用拆机箱就能清楚知道电脑详细的硬件信息。除了能够检测硬件外,还可以进行性能测试,测试内存读写及CPU FPU测试。更新BIOS及驱动程序。本版本全面支持AMD Radeon HD 7000系列显卡和NVIDIA GeForce 600系列显卡,除此之外还提前支持Intel将于明年发布的Haswell处理器和Lynx Point芯片组。解压后直接打开aida64.exe就能用了,不用安装。
  3. 所属分类:其它

    • 发布日期:2019-09-02
    • 文件大小:12582912
    • 提供者:weixin_38743968
  1. OCP-2019年3月1Z0-053最新50道题

  2. OCP,2019年3月刚考,80%通过,oracle_11g_053最新50道题,c Configure the flash recovery area and set the LoG ARCHIVE MIN SUCCEED DEST parameter to 2 D) Set the OPTIONAL attribute for LOG ARCHIVE DEST n for the four destinations and set LOG ARCHIVE MIN SUCCEED DEST t
  3. 所属分类:Oracle

    • 发布日期:2019-03-17
    • 文件大小:450560
    • 提供者:borntodieee
  1. C#动态生成PictureBox并指定图片的方法

  2. 本文实例讲述了C#动态生成PictureBox并指定图片的方法。分享给大家供大家参考。具体如下: int Num = 0; PictureBox[] pb; Num = 6; pb = new PictureBox[Num]; for (int i = 1; i < Num; i++) { pb[i] = new System.Windows.Forms.PictureBox(); pb[i].BorderStyle = BorderStyle.FixedSingle; pb
  3. 所属分类:其它

    • 发布日期:2020-12-26
    • 文件大小:30720
    • 提供者:weixin_38536267
  1. awesome-point-cloud-analysis:关于点云分析(处理)的论文和数据集的列表-源码

  2. 真点云分析 对于任何想研究3D点云的人。 如果您发现很棒的论文/代码/数据集或有一些建议,请联系 。 感谢您对研究界的宝贵贡献 :grinning_face_with_big_eyes: 有关更多最新论文,请访问 - Recent papers (from 2017) 关键字词 dat. :数据集| cls. :分类| rel. :检索| seg. :细分det. :检测| tra. :跟踪| pos. :姿势| dep. : 深度reg. :注册| rec. :重建| aut. :自动驾
  3. 所属分类:其它

    • 发布日期:2021-02-28
    • 文件大小:22528
    • 提供者:weixin_42151373
  1. EPIC_KITCHEN_IRM:EPIC KITCHEN ResNet 50功能上的不变风险最小化-源码

  2. EPIC_KITCHEN_IRM Invariant Risk Minimization [1] on EPIC KITCHEN [2] ResNet 50 Features 数据集 EPIC dataset consist of action annotated videos. Two labels Verb and Nound are provided along with the video annotated segments. Features are extracted of t
  3. 所属分类:其它

    • 发布日期:2021-02-15
    • 文件大小:7168
    • 提供者:weixin_42122986
« 12 3 4 5 6 7 8 9 10 ... 20 »