-
C# 使用Graphics对象在程序运行时创建位图
C# 在程序运行时创建位图,本源码实例主要是学习使用使用Graphics对象创建简单图像的例子,本程序将生成一条曲线图像,参照如下代码:
{//在程序运行时创建位图
int MyWidth=this.pictureBox1.Width;
int MyHeight=this.pictureBox1.Height;
Bitmap MyBitmap = new Bitmap(MyWidth,MyHeight);
Graphics MyGraphics = Graphics.FromImage(MyBitmap);
Pen MyPen = new Pen(Color.Black, 3);
Point[] MyPoints = { new Point(50, 100), new Point(100, 10), new Point(150, 290), new Point(200, 100), new Point(250, 10), new Point(300, 290), new Point(350, 100) };
MyGraphics.Clear(Color.White);
MyGraphics.DrawBeziers(MyPen, MyPoints);
pictureBox1.Image = MyBitmap;
- 2022-03-25 22:38:21下载
- 积分:1
-
dsp28335 fft变换用于信号处理系统中
快速傅立叶整数型式变换,用于信号系统中对信号时域到频域变换过程,对信号滤波器设计提供频谱分析,提高滤波器的性能。知识点欧拉公式
- 2023-05-24 14:40:03下载
- 积分:1
-
数据转换系统
该系统为数据库之间的转换源码,方便实用。可对2000 2008 access mysql 等数据库进行转换 。
- 2022-03-21 18:28:28下载
- 积分:1
-
使用Devexpress开发的进销存系统源代码
使用Devexpress开发的进销存系统源代码,建立了简洁明了的物品进销存流程管理。
- 2022-02-02 15:20:34下载
- 积分:1
-
STM32F407ZGT6_DMA例程(存储器到存储器模式)
STM32F407ZGT6_DMA例程(存储器到存储器模式)
- 2022-12-23 14:05:03下载
- 积分:1
-
vb 写的播放器 对新的开发者很有用。写的不错。非常实际
vb 写的播放器 对新的开发者很有用。写的不错。非常实际-vb players for the new developers useful. Write good. Very practical
- 2023-03-11 23:30:04下载
- 积分:1
-
C++ MFC 520表白玫瑰
C++ 做的520表白程序,含图像,玫瑰花,音乐,文字,绚丽多彩
- 2023-03-30 13:30:05下载
- 积分:1
-
C语言读取图片后深度处理程序包
C语言图像处理源代码,清单如下:
256色转灰度图
Hough变换
Walsh变换
对比度拉伸
二值化变换
反色
方块编码
傅立叶变换
高斯平滑
灰度均衡
拉普拉斯锐化
用Canny算子提取边缘
阈值变换
中值滤波
直方图均衡
- 2022-03-19 22:45:20下载
- 积分:1
-
间断有限元
the structure of the DG-FEM is very similar to that of the finite element method (FEM), there are several fundamental differences. In particular,
the mass matrix is local rather than global and thus can be inverted at very
little cost, yielding a semidiscrete scheme that is explicit. Furthermore, by
carefully designing the numerical flux to reflect the underlying dynamics, one
has more flexibility than in the classic FEM to ensure stability for wavedominated problems. Compared with the FVM, the DG-FEM overcomes the
key limitation on achieving high-order accuracy on general grids by enabling
this through the local element-based basis
- 2022-06-13 20:11:15下载
- 积分:1
-
基于Moravec算子、Forstner算子、Harris算子的特征点提取
利用Moravec算子、Forstner算子、Harris算子对一幅位图(灰度图像)进行点特征提取,还可以将非位图(如.jpg格式)灰度化后转换为灰度图像进行提取。
- 2022-12-01 16:20:03下载
- 积分:1