Shallow donor: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>BattyBot
Converted {{Multiple issues}} to new format to fix expert parameter & general fixes using AWB (9774)
en>Logical1004
 
Line 1: Line 1:
In [[mathematics]], given a non-empty set of objects of finite extension in ''n''-dimensional [[space]], for example a set of points, a '''bounding sphere''', '''enclosing sphere''' or '''enclosing ball''' for that set is an ''n''-dimensional [[solid sphere]] containing all of these objects.
Pleased to meet you! Simple name is Eusebio in addition , I think it sounds quite good when everyone say it. As a man what My husband and i really like is behaving but I'm thinking with regards to [http://Www.Wonderhowto.com/search/starting/ starting] something new. I work as an set clerk. My house is now in South Carolina but [http://www.ehow.com/search.html?s=I+don%27t I don't] plan on changing it. You will find my website here: http://circuspartypanama.com<br><br>Look at my web page; clash of clans hack cydia ([http://circuspartypanama.com special info])
 
In the plane the terms '''bounding or enclosing circle''' are used.
 
Used in [[computer graphics]] and [[computational geometry]], a bounding sphere is a special type of [[bounding volume]]. There are several fast and simple bounding sphere construction algorithms with a high practical value in real-time computer graphics applications.<ref name="epos">[http://www.ep.liu.se/ecp/034/009/ecp083409.pdf Fast and Tight Fitting Bounding Spheres]</ref> 
 
In [[statistics]] and [[operations research]], the objects are typically points, and generally the sphere of interest is the '''minimal bounding sphere''', that is, the  sphere with minimal radius among all bounding spheres. It may be proven that such a sphere is unique: If there are two of them, then the objects in question lie within their intersection. But an intersection of two non-coinciding spheres of equal radius is contained in a sphere of smaller radius.
 
The problem of computing the center of a minimal bounding sphere is also known as the "unweighted Euclidean [[1-center problem]]".
 
==Applications==
 
===Clustering===
Such spheres are useful in [[Cluster analysis|clustering]], where groups of similar data points are classified together.
 
In [[statistical analysis]] the [[scattering (statistics)|scattering]] of data points within a sphere may be attributed to [[measurement error]] or natural (usually thermal) processes, in which case the cluster represents a perturbation of an ideal point. In some circumstances this ideal point may be used as a substitute for the points in the cluster, advantageous in reducing calculation time.
 
In [[operations research]] the clustering of values to an ideal point may also be used to reduce the number of inputs in order to obtain approximate values for [[NP-hard]] problems in a reasonable time. The point chosen is not usually the center of the sphere, as this can be biased by outliers, but instead some form of average location such as a [[least squares]] point is computed to represent the cluster.
 
==Algorithms==
There are exact and approximate algorithms for solving bounding sphere problem.
 
===Ritter's bounding sphere===
Jack Ritter proposed a simple algorithm to find a bounding sphere.<ref name="Ritter1990">J. Ritter. [http://dl.acm.org/citation.cfm?id=90836 An efficient bounding sphere]. In Andrew S. Glassner, editor, Graphics Gems. Academic Press, Boston, MA, 1990.</ref> It's widely used in various applications for its simplicity.
The algorithm works in this way:
 
1. Pick a point x from P, search a point y in P, which has the largest distance from x;
 
2. Search a point z in P, which has the largest distance from y. set up an initial ball B, with its centre as the midpoint of y and z, the radius as half of the distance between y and z;
 
3. If all points in P are within ball B, then we get a bounding sphere. Otherwise, let p be the point outside the ball, construct a new ball covering both point p and previous ball. Repeat this step until all points are covered.
 
Ritter's algorithm obviously runs in time O(nd), which makes it very efficient. However it gives only a coarse result which is usually 5%~20% larger than the optimum.<ref name="Tian2012">Bo Tian, [http://www.grin.com/en/e-book/204869/bouncing-bubble-a-fast-algorithm-for-minimal-enclosing-ball-problem Bouncing Bubble: A fast algorithm for Minimal Enclosing Ball problem] 2012</ref>
 
===Linear programming===
 
In 1983, [[Nimrod Megiddo]] proposed a "[[prune and search]]" algorithm which runs in linear time if the dimension is fixed as a constant. When dimension is taken into account, the execution time complexity is O((d+1)(d+1)!n), thus is impractical for high dimensional applications. Megiddo used this approach to solve linear programming in linear time when dimension is fixed.
 
In 1991, [[Emo Welzl]] proposed a much simpler [[randomized algorithm]] based in the extension of R. Seidel randomized [[linear programming]] algorithm. It runs in expected linear time and provided experimental results demonstrating its practicality in higher dimensions.<ref name="welzl92">Emo Welzl, [http://reference.kfupm.edu.sa/content/s/m/smallest_enclosing_disks_(balls_and_elli_64492.pdf Smallest enclosing disks (balls and ellipsoids)], New Results and New Trends in Computer Science, Volume 555, 1991, pp 359–370</ref>
 
The open-source [[Computational Geometry Algorithms Library]] (CGAL) contains an implementation of this algorithm.{{citation needed|date=February 2013}}
 
===Core-set based 1+ε approximation===
Bădoiu et al. presented a 1+ε approximation on bounding sphere problem.<ref name="Badoiu2002">M. Bădoiu, S. Har-Peled, and P. Indyk. [http://www.cs.duke.edu/courses/spring07/cps296.2/papers/badoiu02approximate.pdf Approximate clustering via core-sets]. Proc. 34th Annu. ACM Sympos.on Theory of Computing, pages 250–257, 2002.</ref> Where 1+ε approximation means that although a sphere with radius r can not cover the whole point set, the sphere with radius (1+ε)r can cover all points.
 
"Core set" is a small subset, that a 1+ε expansion of the solution on the subset is a bounding sphere of the whole set. The core set is constructed incrementally by adding the farthest point into the set in iteration.
 
Kumar et al. improved this approximation algorithm <ref name="kumar2003">P. Kumar, J.S.B. Mitchell and E.A Yıldırım. [http://www.ams.sunysb.edu/~yildirim/meb.pdf Computing Core-Sets and Approximate Smallest Enclosing HyperSpheres in High Dimensions], 2003</ref> so that it runs in time <math>O(\frac{nd}{\epsilon}+ \frac{1}{\epsilon^{4.5}}\log{\frac{1}{\epsilon}})</math>.
 
===Fischer's Exact Solver===
Fischer et al. proposed an exact solver to this minimal enclosing ball problem.<ref name="Fischer2003">K. Fischer, B. Gärtner and M. Kutz: [http://people.inf.ethz.ch/gaertner/texts/own_work/seb.pdf Fast Smallest-Enclosing-Ball Computation in High Dimensions], Proc. 11th European Symposium on Algorithms (ESA), p. 630-641, 2003</ref> The algorithm starts with a big ball that covers all points and gradually shrink it until it can not be shrunk further.  
 
The algorithm runs in time <math>O(nd^2)</math> and is the fastest exact solver till now.{{citation needed|date=February 2013}} In practice, the algorithm is very efficient in low and moderately low (up to 10,000, say) dimensions and is not known to exhibit numerical stability problems. A C++ implementation of the algorithm is available as an [http://github.com/hbf/miniball open-source project].
 
===Bouncing Bubble===
Bouncing Bubble is an approximation algorithm to the minimal enclosing ball problem.<ref name=Tian2012 /> It has a few variants for different purpose. The simplest variant runs in time O(nd) with error around 1%~2% is recommended as a substitution of Ritter's algorithm. A simple 1+&epsilon; approximation that runs in <math>O(\frac {nd}{\epsilon^2} )</math> is recommended for lower precision applications (say &epsilon;>10<sup>−3</sup>). And another 1+&epsilon; approximation that runs in <math>O(nd)+O(\frac{d}{\epsilon^2})</math> is recommended for higher precision applications.
 
The basic idea of this algorithm is simple: each time a point outside the ball is found, the ball will be moved towards it and increase the radius at the same time. The growth in each step is designed so that it will not exceed the optimum radius, thus the radius is getting closer and closer to the optimum.
 
The following animation demonstrates the process of the first variant:
 
[[File:Animation of Bouncing Bubble algorithm.gif|Animation of Bouncing Bubble algorithm]]
 
== See also ==
*[[Bounding volume]]
*[[Smallest-circle problem]]
 
== References  ==
<references />
 
== External links ==
* [http://www.personal.kent.edu/~rmuhamma/Compgeometry/MyCG/CG-Applets/Center/centercli.htm Smallest Enclosing Circle Problem] – describes several algorithms for enclosing a point set, including Megiddo's linear-time algorithm
 
[[Category:Geometric algorithms]]

Latest revision as of 12:35, 12 November 2014

Pleased to meet you! Simple name is Eusebio in addition , I think it sounds quite good when everyone say it. As a man what My husband and i really like is behaving but I'm thinking with regards to starting something new. I work as an set clerk. My house is now in South Carolina but I don't plan on changing it. You will find my website here: http://circuspartypanama.com

Look at my web page; clash of clans hack cydia (special info)