I'm running into a fairly simple shape modeling problem as part of some image analysis I'm doing in opencv. I think there may be established solutions to this in expertises outside of my own (e.g. game programming, image modeling).
Suppose I have a set of polygons in an image. I want to explore the images and polygon shapes resulting from a range of scalings for each of the polygons, with one caveat. If a scaling leads to a collision between the polygons for a point on the polygon, the point is replaced with an approximate transformation that doesn't result in polygon overlap.I don't have a strong constraint on exactly what should happen instead. For example, I imagine I could backtrack to the closest scaling factor for that point which doesn't result in polygon overlap. Another possibility is to keep track of the previous (incrementally similar) transformation and revert to the previous one if there is a collision. One solution I don't want though, is to force rigid scaling (i.e. the entire polygon isn't scaled if even a single point can't be scaled).
However, there are a lot of tricky edge cases, and rather than stumbling through them, if anyone could point me to established solutions to this (or closely related) problems, that would be really helpful.