C语言代码示例:使用LibTIFF库计算DEM文件中的土方量
#include <stdio.h> #include <stdlib.h> #include <tiffio.h>
#define ROWS 327 #define COLS 486 #define PIXEL_SIZE 5
int main(int argc, char* argv[]) { TIFF *tif; float *data; uint32 width, height; uint16 bits_per_sample, samples_per_pixel; tsize_t strip_size; unsigned long long total_fill_volume = 0, total_cut_volume = 0; int i, j;
if (argc < 2) {
fprintf(stderr, "Usage: %s <input file>
", argv[0]); exit(1); }
tif = TIFFOpen(argv[1], "r");
if (!tif) {
fprintf(stderr, "Error opening TIFF file
"); exit(1); }
TIFFGetField(tif, TIFFTAG_IMAGEWIDTH, &width);
TIFFGetField(tif, TIFFTAG_IMAGELENGTH, &height);
TIFFGetField(tif, TIFFTAG_BITSPERSAMPLE, &bits_per_sample);
TIFFGetField(tif, TIFFTAG_SAMPLESPERPIXEL, &samples_per_pixel);
if (width != COLS || height != ROWS || bits_per_sample != 32 || samples_per_pixel != 1) {
fprintf(stderr, "Invalid TIFF format
"); exit(1); }
strip_size = TIFFStripSize(tif);
data = (float*) _TIFFmalloc(strip_size);
if (!data) {
fprintf(stderr, "Error allocating memory
"); exit(1); }
for (i = 0; i < height; i++) {
TIFFReadEncodedStrip(tif, TIFFComputeStrip(tif, i, 0), data, strip_size);
for (j = 0; j < width; j++) {
float elevation = data[j];
if (elevation > 0) {
total_fill_volume += (PIXEL_SIZE * PIXEL_SIZE * elevation);
} else {
total_cut_volume += (PIXEL_SIZE * PIXEL_SIZE * (-elevation));
}
}
}
printf("Total fill volume: %llu cubic meters
", total_fill_volume); printf("Total cut volume: %llu cubic meters ", total_cut_volume);
_TIFFfree(data);
TIFFClose(tif);
return 0;
}
如何运行程序:
要运行此程序,请将代码保存为一个名为 "program_name.c" 的文件,然后使用以下命令编译并运行它:
gcc program_name.c -ltiff -o program_name
./program_name dem.tif
其中:
- "program_name" 是您的程序名称。
- "dem.tif" 是您要读取的DEM文件名。
示例:
假设您有一个名为 "dem.tif" 的DEM文件,并将其保存在与程序文件相同的目录中,您可以运行以下命令来计算该文件的土方量:
gcc program_name.c -ltiff -o program_name
./program_name dem.tif
程序将输出以下结果:
Total fill volume: 123456789 cubic meters
Total cut volume: 987654321 cubic meters
请注意,土方量结果仅为示例,实际结果将根据您的DEM文件内容而有所不同。
原文地址: https://www.cveoy.top/t/topic/fVdZ 著作权归作者所有。请勿转载和采集!