Original Post
This one can be considered a sampling theory problem or a surface reconstruction, so I know there are experts around here in these areas! I am looking for an algorithm on reducing the resolution of a 2D grid of samples that are currently sampled at irregular rates along the x and the y axes. The current sampling rate along the x axis is not the same as the y axis, and there is no requirement to make them the same. The input data can essentially be thought of as an irregularly sampled terrain that I want to minimize the resolution of within some error metric. There are lots of papers on working with completely irregular datasets or regular datasets, but I haven't been able to find anything on semi-regular datasets. My first attempt is to detect high frequency edges in each axis direction (a measure of dy/dx and dy/dz) by performing a dot product of the vector coming into a surface sampling point and out of a surface sampling point, and then use this information to shift a reduced number of axis sampling points around to the areas of highest frequency. This method is essentially detecting a 'point' area of high frequency, then shifting the axis sampling points to coincide with all of the 'points' that are the most important. I am still testing this method, but am sure that there is a better method available. Has anyone done similar work? Any help and/or suggestions would be greatly appreciated!