资源简介
用于影像的几何校正,比较全面的一个版本,可以给出模型的各种精度。含C#源码,可以参考。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
namespace 图像几何校正
{
class ControlPoint
{
public string pointName { get; set; }
public double X { get; set; }
public double Y { get; set; }
public ControlPoint(string _pointNamedouble _Xdouble _Y)
{
this.pointName = _pointName;
this.X = _X;
this.Y = _Y;
}
public ControlPoint()
{
;
}
}
class Homologous
{
public int X { get; set; }
public int Y { get; set; }
public Homologous(int _Xint _Y)
{
this.X = _X;
this.Y = _Y;
}
public Homologous()
{
;
}
}
class Context
{
public static string filename = null;
public static List contorlPoints = new List();
public static List homologous = new List();
public static List homologous_corrector = new List();
public static List controlpoint_corrector = new List();
public static double delta_x = 0 delta_y = 0;//精度
public static double[] Params = new double[23];
public static double delta_X = 0 delta_Y = 0;//重采样间隔
public static int solution = 0;
public static int reSampling = 1;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-11-18 14:48 图像校正\
文件 1631 2015-10-20 14:01 图像校正\Context.cs
文件 22389 2015-10-27 10:09 图像校正\FormMain.cs
文件 10072 2015-10-21 10:49 图像校正\FrmModel.cs
文件 2070 2015-10-20 14:14 图像校正\FrmPrecisionReport.cs
文件 2946 2015-10-19 14:02 图像校正\FrmResampling.cs
文件 5513 2015-10-20 08:38 图像校正\LockBitmap.cs
文件 100103 2015-10-18 18:08 图像校正\Matrix.cs
文件 532 2015-10-18 15:25 图像校正\Program.cs
文件 61440 2015-10-27 09:40 图像校正\图像几何校正.exe
- 上一篇:基于UML的网上人才市场系统设计
- 下一篇:C#超市收银数据库文件
评论
共有 条评论