Presentation is loading. Please wait.

Presentation is loading. Please wait.

1 Subdivision Termination Criteria in Subdivision Multivariate Solvers Iddo Hanniel, Gershon Elber CGGC, CS, Technion.

Similar presentations


Presentation on theme: "1 Subdivision Termination Criteria in Subdivision Multivariate Solvers Iddo Hanniel, Gershon Elber CGGC, CS, Technion."— Presentation transcript:

1 1 Subdivision Termination Criteria in Subdivision Multivariate Solvers Iddo Hanniel, Gershon Elber CGGC, CS, Technion

2 2 The Problem Consider the following set of d polynomial equations: In R d. We seek the simultaneous solution,, such that for all i =1,…,d.

3 3 Motivation for the Solver Many geometric problems are reduced to the simultaneous solution of a set of constraints.  Ray-surface, curve-curve and surface-surface intersections.  Voronoi diagram of curves.  Curve-curve bi-tangents, convex hull of curves.  Minimum enclosing circle/sphere of a set of curves/surfaces.

4 4 Here, one can find four solutions that satisfy the equations. We are interested in finding all solutions. Example – Intersection of 3 Explicit Surfaces in R 3

5 5 Previous Work on Multivariate Polynomial Solvers   Algebraic Solvers: Grobner bases [Cox et al., 1992]. Multivariate Sturm sequences [Milne, 1992].   Geometric Solvers: Based on the Bernstein/Bezier/Bspline properties. Bezier clipping methods [Sherbrooke and Patrikalakis, 1993], [Mourrain and Pavone, 2005]. Subdivision step and numeric improvement [Elber and Kim, 2001].

6 6 The Bezier/B-Spline Solver   A subdivision stage in a multidimensional space, using B-spline/Bezier subdivision.   A multivariate Newton-Raphson (NR) numeric step. Elber and Kim, 2001: Geometric Constraint Solver using Multivariate Rational Spline Functions

7 7 Subdivision Illustration – Univariate Case   Subdivision.   CH containment.

8 8 The Termination Question   We can identify domain cells with no root by the CH property. Can we do any better? Question: When do we stop the subdivision?  If we know there is at most a single root in some domain cell, we can move to the NR step. How can we know that?

9 9 The Hodograph – Univariate Case

10 10 Single Solution Guarantee

11 11 Extension to Higher Dimensions Theorem: Given d implicit hyper-surfaces F i (u) = 0, i = 1,….,d, in R d, there is at most one common solution if where 0 is the origin. Elber and Kim, 2001: Geometric Constraint Solver using Multivariate Rational Spline Functions

12 12 Implementing the Single Solution Test   How can this condition be tested efficiently in R d ?   Clearly the gradient field of F i (u) provides a bound on the normal space of F i (u).   Optimal bounding cones over vectors in R d could be found in average linear time.

13 13 Implementing the SST ( Cont.) The complementary cone can easily be derived, given the normal cone. and share the same axis but with complementary angles.

14 14 Implementing the SST (Cont.) But now we have to test for the intersection of d complementary cones in R d. A difficult task, even in R 3 ! d = 3

15 15 Implementing the SST (Cont.) Reexamine the univariate case (two curves): …intersect iff the parallel lines domain’s Intersection… Two cones of two planar curves… ….is not confined to the unit circle

16 16 Implementing the SST (Cont.) The efficient solution is found by using a different representation for the complementary cones. Two infinite parallel hyper-planes in R d.

17 17 Implementing the SST - Main Lemma Lemma: contains a vector other than {0}, if and only if the intersection of the unit hyper- sphere S d-1 with the regions between the bounding hyper-planes is non-empty. Implication: In order to test for a single solution, we do not have to intersect d-dimensional cones.

18 18 Implementing the SST (Cont.)   Two options: The entire intersection is inside the unit sphere. Then SST holds. Otherwise, SST failed.   Hence, only test if all the vertices of the intersection are inside the unit sphere.

19 19 Implementing the SST (Cont.) SST holds SST failed

20 20 Implementing the SST (Cont.) The set of 2 d hyper-plane intersection (HPI) equations to solve is: Or in matrix (d d) form: Or in matrix (d  d) form:

21 21 Implementing the SST (Cont.)   Due to symmetry, only 2 d-1 hyper-plane intersection (HPI) tests are required.   4 HPI tests for d = 3 (x, y, z) constraints in R 3.

22 22 Implementing the SST (Cont.) An efficient way to solve the 2 d-1 systems of equations is due to the inherent symmetry of the problem: Therefore, given one solution (e.g., {-,-,…,-,-}), computing a second solution that differs by a single sign (e.g., {-,-,…,-,+}), takes only O(d) operations and not O(d 2 ).

23 23 Implementing the SST – Example Without SST With SST

24 24 Implementing the SST – Example (Zoom) With SSTWithout SST

25 25 Purging Away Zero-solution Domains Problem: SST does not guarantee that a solution exists in the sub-domain. We might start the numerical iterations only to find that no root exists in this sub-domain.

26 26 Purging Away Zero-solution Domains (Cont.) Therefore, we seek to purge away, as much as possible, sub-domains that contain no solution. We present a second criterion, in addition to the CH criterion, for identifying no-solution sub-domains.

27 27 Purging Away Zero-solution Domains (Cont.) The basic idea: Bound the function F i =0 by a pair of parallel hyper-planes in R d. If the intersection of the hyper-planes is entirely outside the sub-domain, then the solution is outside the sub-domain. F1F1F1F1 F2F2F2F2

28 28 Purging Away Zero-solution Domains (Cont.) Problem: In order to bound F i =0 in R d we need to have at least a sample point u on F i =0. Solution: Bound F i in R d+1 and intersect the resulting (d+1)-dimensional hyper-planes with u d+1 =0, resulting bounding hyper-planes in R d.

29 29 Purging Away Zero-solution Domains (Cont.)  Promote F i from a scalar function to a hyper-surface in R d+1,.  Evaluate the gradient (i.e., the normal) at the sub-domain mid-point and project all control points of the hyper-surface onto it.  The two hyper-planes orthogonal to the gradient and passing through the extreme projection points, bound F i.

30 Center for Graphics and Geometric Computing, Technion 30 Purging Away Zero-solution Domains Illustration (d=1) u d+1 = 0 ] [

31 31 Purging Away Zero-solution Domains (Cont.) How to determine whether the intersection is entirely outside the sub-domain? Possible solutions: 1.Linear programming techniques. 2.Similarly to the SST for finding all vertices of the intersection.

32 32 Purging Away Zero-solution sub-domains – Example Without hyper-plane test With hyper-plane test

33 33 Future Work  Compare the SST with algebraic/numeric termination criteria (Kantorovich).  Use the vertices, which were computed for purging away zero-solutions, for clipping the sub-domain.  Extend the presented ideas for under- and over-constrained systems.  Search for tighter bounding volumes on the solutions (not just cones).

34 34 End


Download ppt "1 Subdivision Termination Criteria in Subdivision Multivariate Solvers Iddo Hanniel, Gershon Elber CGGC, CS, Technion."

Similar presentations


Ads by Google