Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find a c/c++ implementation of the minimum bound box algorithm?

I'm looking for a free implementation that finds the minimum bounding box (MBB - the box around a cloud of 3D points with the smallest volume). It should be written in either C or C++.

An algorithm to do this was published by Joseph O'Rourke and is cubic in time. I'd also be content with an approximate MBB genered for instance by the algorithms proposed by Gill Barequet, and Sariel Har-Peled. Can anyone point me to an implementation that is free software?

like image 994
con-f-use Avatar asked Jan 21 '26 18:01

con-f-use


1 Answers

See http://valis.cs.uiuc.edu/~sariel/research/papers/00/diameter/diam_prog.html which has full code of the Barequet and Har-Peled algorithms.

like image 147
Gill Barequet Avatar answered Jan 24 '26 12:01

Gill Barequet