이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
편집자 메모: This file was selected as MATLAB Central Pick of the Week
With this function one can easily compute the minimal box (with right angles) around a set of points in 3d.
The extremal property of the box is determined either in terms of volume, surface or sum of edgelengths.
The calculation is based on heuristics only, but a huge number of tests did not show any counterexamples yet.
The algorithm behind the function is subdivided into three levels of accuracy with differing runtimes.
x = rand(10000,1);
y = rand(10000,1);
z = rand(10000,1);
tic;[rotmat,cornerpoints,volume,surface] = minboundbox(x,y,z,'v',3);toc
Elapsed time is 10.772170 seconds.
volume =
0.9993
surface =
5.9974
My thanks to John d'Errico and Roger Stafford for numerous discussions about proofs and algorithms in this context.
John also wrote minboundrect from the FEX, which heavily influenced this submission.
Also in this archive i included a small plot function (plotminbox) to show the resulting box via connecting the cornerpoints.
인용 양식
Johannes Korsawe (2026). Minimal Bounding Box (https://kr.mathworks.com/matlabcentral/fileexchange/18264-minimal-bounding-box), MATLAB Central File Exchange. 검색 날짜: .
