加载ArcGIS数字化图像

时间:2018-08-01 07:41:16

标签: c# .net winforms gis arcgis

我是GIS平台的新手。

在我的项目(Windows应用程序)中,我试图在PictureBox中加载图像(区域的无人机图像)为GeoTIFF格式,大约950 MB以上。此图像被数字化(标记每个房屋的边界并标有房屋编号),并且将数据导入Shapefile中。我使用以下代码提取了XY坐标数据。我将原始图像尺寸减小到40-45 MB,并转换为JPG格式。

现在,我必须在新缩小的图像上的Windows应用程序中绘制该XY坐标数据。

我应该如何实现这种情况? 我到底该怎么办? 我无法加载大约950 MB以上的原始图像?

代码,用于从Shapefile获取XY坐标

private void ReadShapeFile(string path)
{
    ShapeFile.MapFilesInMemory = true;
    // open the shapefile
    EGIS.ShapeFileLib.ShapeFile sf = new EGIS.ShapeFileLib.ShapeFile(path);
    try
    {
        sf.RenderSettings = new EGIS.ShapeFileLib.RenderSettings(path, "", this.Font);
        EGIS.ShapeFileLib.DbfReader dbfr = sf.RenderSettings.DbfReader;
        using (System.IO.StreamWriter writer = new System.IO.StreamWriter("output.txt"))
        {
            EGIS.ShapeFileLib.ShapeFileEnumerator sfEnum = sf.GetShapeFileEnumerator();
            int recordIndex = 0;
            while (sfEnum.MoveNext())
            {
                string rec = "";
                string NoOfCord = "";
                string coord = "";
                rec = string.Format("Record:{0}", recordIndex);
                writer.WriteLine(string.Format("Record:{0}", recordIndex));
                System.Collections.ObjectModel.ReadOnlyCollection<PointD[]> pointRecords = sfEnum.Current;
                foreach (PointD[] pts in pointRecords)
                {
                    writer.Write(string.Format("[NumPoints:{0}]", pts.Length));
                    NoOfCord = string.Format("[NumPoints:{0}]", pts.Length);
                    for (int n = 0; n < pts.Length; ++n)
                    {
                        if (n > 0) writer.Write(',');
                        writer.Write(pts[n].ToString());
                        if (n > 0) coord += ",";
                        coord += pts[n].ToString();
                    }
                    writer.WriteLine();
                }
                AddDataToDataTable(recordIndex, rec, NoOfCord, coord);
                ++recordIndex;
            }
            sfEnum.Dispose();
        }
        MessageBox.Show("Data Loaded Successfully");
    }
    catch (Exception ex) { Debug.WriteLine("Error Message - " + enl + ex.Message + enl + "Error StackTrace - " + enl + ex.StackTrace + enl); }
    finally
    {
        sf.Close();
        sf.Dispose();
    }
}

1 个答案:

答案 0 :(得分:0)

第一:加载大尺寸图像需要金字塔或瓷砖切割;如果您希望应用程序显示完整图像,请切割瓷砖或建造金字塔,然后将其显示在 dotspatial sharpmap 中的 mapcontrol 中库。

第二:如果尚未裁剪图像,则处理的图像将与原始图像具有相同的实际范围。您可以计算图像中任何像素的实际位置;您还可以将实际位置(纬度/经度或投影坐标)转换为图像坐标参考(左上角为(0,0))。