3D空间包围球(Bounding Sphere)的求法

引言

            在3D碰撞检测中,为了加快碰撞检测的效率,减少不必要的碰撞检测,会使用基本几何体作为物体的包围体(Bounding Volume, BV)进行测试。基本包围体的碰撞检测相对来说便宜也容易的多,所以如果在基本包围体的碰撞检测中都没有通过的话,那么就没有必要进行更加复杂的碰撞检测了。

           而对于不同性质,不同形状的模型,需要根据情况选择不同的包围体,一般来说,包围体分为如下的几种:

            Sphere, AABB, OBB, 8-DOP, Convex Hull这几种常见的。

           接下来将向大家讲述如何使用Sphere包围体。


表示方法

           想要使用包围体,我们就要知道,如何的表示一个包围球体。对于球体来说,表示它很简单,如下所示:

[cpp]  view plain copy
  1. struct Sphere  
  2. {  
  3.      VECTOR3 center ;  
  4.      float radious ;  
  5. };  
           这样,在有了中点和半径之后,我们就能唯一的确定一个包围球体了。


包围球之间的碰撞检测

            对于包围球之间的碰撞检测,十分的简单,只要判断两个包围球心之间的距离是否小于他们两个的半径之和就可以了。如果小于,那么这两个包围球发生了交叉,没有的话,就相互分离。以下是进行碰撞检测的代码:

[cpp]  view plain copy
  1. int TestSphereSphere(Sphere a, Sphere b)  
  2.   
  3. {  
  4.   
  5.        VECTOR3 d = a.center - b.center ;  
  6.   
  7.        float dist2 = Dot(d, d);  
  8.   
  9.        float radisum = a.radious + b.radious ;  
  10.   
  11.        if(dist2 < radisum * radisum)  
  12.   
  13.              return 1 ;  
  14.   
  15.        else  
  16.   
  17.             return 0 ;  
  18.   
  19. }  

             很简单不是嘛!由于进行开平方计算要消耗大量的CPU,所以,我们直接对球心之间距离的平方和他们半径之和的平方进行比较,结果与进行距离和半径之和的比较一致。


包围球体的计算

               球形包围体的计算有很多的算法,在本篇文章中将讲述两种常见的计算方法。如果你使用DirectX,就会知道,DirectX内置了一个D3DXComputBoundingSphere的函数。这里将不会使用这个函数,而是使用我们自己创建的计算方法来进行包围球体的计算。

              首先来介绍第一种包围球体的计算方法。


均值法

              我们知道,在3D模型的表示中,一般都是用一系列的顶点来描述一个模型。所以,要求一个包围球体,我们就必须确定这个包围球体的球心,然后计算每一个顶点与球心的距离,选取最长的距离作为包围球体的半径。这个简单的算法就能够确定一个包围球体了。那么,有一个问题,如果的确定这个模型的球心了?

              我们通过如下的简答方法来计算出这个模型的球心。我们将所有的顶点相加,然后除以顶点数,这样就能得到一个球心的位置了。

               到这里,这个方法的理论就介绍完毕了,很容易不是吗???下面来看看这个方法的代码部分:

[cpp]  view plain copy
  1. void Sphere::computeBoundingSphereAverage(VECTOR3* vertices, unsigned int vertex_num)  
  2. {  
  3.     //Compute the center point  
  4.     VECTOR3 total ;  
  5.     total.x = 0 ;  
  6.     total.y = 0 ;  
  7.     total.z = 0 ;  
  8.     for(int i = 0 ; i < vertex_num ; i ++)  
  9.     {  
  10.         total.x += vertices[i].x ;  
  11.         total.y += vertices[i].y ;  
  12.         total.z += vertices[i].z ;  
  13.     }// end for  
  14.   
  15.     total.x /= vertex_num ;  
  16.     total.y /= vertex_num ;  
  17.     total.z /= vertex_num ;  
  18.     center = total ;  
  19.   
  20.     //Compute the radious  
  21.     float r = 0 ;  
  22.     for(int i = 0 ; i < vertex_num ; i ++)  
  23.     {  
  24.         VECTOR3 temp ;  
  25.         Vec3Sub(temp, total, vertices[i]);  
  26.         float length = 0 ;  
  27.         length = Vec3Length(length, temp);  
  28.         if(length > r)  
  29.             r = length ;  
  30.     }// end for  
  31.   
  32.     radious = r ;  
  33. }// end for computeBoundingSphereAverage  

             代码很清晰,也很容易明白,所以这里将不再进行解释了。

             看看使用这个方法计算出来的包围球的效果如何:

3D空间包围球(Bounding Sphere)的求法_第1张图片



Ritter方法

              Ritter,Jack提出了一种新的近似的计算包围球体的方法。它的思路是这样的:

             首先我们分别找到这个模型在x,y,z正负六个方向上的最远距离的6个点。然后我们分别计算出这三对点之间的长度,也就是x轴向上两个点之间的长度,y轴向上两个点之间的长度,z轴向上两个点之间的长度。我们选取长度最长的那一个作为包围球的直径,以这个长度的两个点的中点作为包围球的球心。

            通过上面的方法,我们能近似的求出这个包围球,但是并不能保证模型中的每一个顶点都在这个包围球里面,所以我们还需要对此进行修正。

            我们遍历所有的顶点,判断顶点是否在球体里面,如果在里面,则忽略它,如果不在里面,我们按照下面的算法来对球体进行修正,以使的新的球体能够包含这个点。

            请看下图:

3D空间包围球(Bounding Sphere)的求法_第2张图片

           我们假设当前的球心为O,半径为r。现在我们发现在这个球体之外有一个点P。所以,我们需要对这个包围球体进行修正,以便于将这个点包围在球体里面。为了最紧凑的包围住这个点,我们将点P与球心O连线,交圆与T点。这时,你就会发现,TP就是我们要求的包围球的新直径了,那么球心也就是他们之间的中点了。

          求出T的计算比较庞大,所以我们计算新的半径使用下面的方法:

          由于P点和O点都是已知的,所以求他们之间的距离比较容易。也就是说新的半径为: (r + OP) * 0.5 

          有了新的半径之后,我们需要做的就是平移球心点,平移的向量大小刚好就是SP的长度,方向是从O点指向P点,其中S点为PR的中点。

          所以有了上面的算法,我们依次的遍历所有的点,我们就能够确定一个近似的包围球了。

          这个理论也很简单,下面是实现的代码:

[cpp]  view plain copy
  1. void Sphere::computeBoundingSphereRitter(VECTOR3* vertices, unsigned int vertex_num)  
  2. {  
  3.     unsigned int maxX = 0 , maxY = 0, maxZ = 0 , minX = -1, minY = -1, minZ = -1 ;  
  4.       
  5.     //Find the max and min along the x-axie, y-axie, z-axie  
  6.     for(int i = 0 ; i < vertex_num ; i ++)  
  7.     {  
  8.         if(vertices[i].x > maxX) maxX = i ;  
  9.         if(vertices[i].x < minX) minX = i ;  
  10.         if(vertices[i].y > maxY) maxY = i ;  
  11.         if(vertices[i].y < minY) minY = i ;  
  12.         if(vertices[i].z > maxZ) maxZ = i ;  
  13.         if(vertices[i].z < minZ) minZ = i ;  
  14.     }// end for  
  15.   
  16.     float x = 0;  
  17.     VECTOR3 sub1 , sub2 ;  
  18.     sub1.x = vertices[maxX].x ; sub1.y = vertices[maxX].y ; sub1.z = vertices[maxX].z ;  
  19.     sub2.x = vertices[minX].x ; sub2.y = vertices[minX].y ; sub2.z = vertices[minX].z ;  
  20.     Vec3Sub(sub1, sub1, sub2);  
  21.     Vec3Dot(x, sub1, sub1);  
  22.   
  23.     float y = 0 ;  
  24.     sub1.x = vertices[maxY].x ; sub1.y = vertices[maxY].y ; sub1.z = vertices[maxY].z ;  
  25.     sub2.x = vertices[minY].x ; sub2.y = vertices[minY].y ; sub2.z = vertices[minY].z ;  
  26.     Vec3Sub(sub1, sub1, sub2);  
  27.     Vec3Dot(y, sub1, sub1);  
  28.   
  29.     float z = 0 ;  
  30.     sub1.x = vertices[maxZ].x ; sub1.y = vertices[maxZ].y ; sub1.z = vertices[maxZ].z ;  
  31.     sub2.x = vertices[minZ].x ; sub2.y = vertices[minZ].y ; sub2.z = vertices[minZ].z ;  
  32.     Vec3Sub(sub1, sub1, sub2);  
  33.     Vec3Dot(z, sub1, sub1);  
  34.   
  35.     float dia = 0 ;  
  36.     int max = maxX , min = minX ;  
  37.     if( z > x && z > y)  
  38.     {  
  39.         max = maxZ ;  
  40.         min = minZ ;  
  41.         dia = z ;  
  42.     }else if(y > x && y > z)  
  43.     {  
  44.         max = maxY ;  
  45.         min = minY ;  
  46.         dia = y ;  
  47.     }  
  48.   
  49.     //Compute the center point  
  50.     center.x = 0.5 * (vertices[max].x + vertices[min].x) ;  
  51.     center.y = 0.5 * (vertices[max].y + vertices[min].y) ;  
  52.     center.z = 0.5 * (vertices[max].z + vertices[min].z) ;  
  53.   
  54.     //Compute the radious  
  55.     radious = 0.5 * sqrt(dia);  
  56.   
  57.     //Fix it  
  58.     for(int i = 0 ; i < vertex_num ; i ++)  
  59.     {  
  60.         VECTOR3 d ;  
  61.         Vec3Sub(d, vertices[i], center);  
  62.         float dist2 = 0 ;  
  63.         Vec3Dot(dist2, d, d);  
  64.   
  65.         if(dist2 > radious * radious)  
  66.         {  
  67.             float dist = sqrt(dist2);  
  68.             float newRadious = (dist + radious) * 0.5 ;  
  69.             float k = (newRadious - radious) / dist ;  
  70.             radious = newRadious ;  
  71.             VECTOR3 temp ;  
  72.             Vec3Mul(temp, d, k);  
  73.             Vec3Add(center, center, temp);  
  74.         }// end if  
  75.     }// end for vertex_num  
  76. }// end for computeBoundingSphereRitter  

          上面的代码应该很清楚了,所以不需要在进行解释,如果有疑问可以在博客中留言。看下这个算法的效果如何:

3D空间包围球(Bounding Sphere)的求法_第3张图片



两种方法的对比

             上面两种方法,虽然第一种最简单,但是同样的他的效果不如第二种的好,如果你不能直观的看出来,那么请看下面两种对比图:

第一种算法:

3D空间包围球(Bounding Sphere)的求法_第4张图片

第二种算法:

3D空间包围球(Bounding Sphere)的求法_第5张图片


                 很明显的看出,第二种算法它的包围球体更加的紧凑点。


包围球类

                下面,我将这个包围球的类的所有代码列出来(仅仅有包围球的类,关于DirectX的操作部分,不属于这个类)

[cpp]  view plain copy
  1. //---------------------------------------------------------------------------------  
  2. // declaration  : Copyright (c), by XJ , 2014 . All right reserved .  
  3. // brief        : This file will define the bounding sphere in collision system  
  4. // author       : XJ  
  5. // date         : 2014 / 6 / 20  
  6. // file         : Sphere.h  
  7. // version      : 1.0  
  8. //---------------------------------------------------------------------------------  
  9. #pragma once   
  10. #include"XJMath.h"  
  11. namespace XJCollision  
  12. {  
  13.     class Sphere  
  14.     {  
  15.     public:  
  16.         Sphere();  
  17.         Sphere(VECTOR3 c, float r);  
  18.         ~Sphere();  
  19.   
  20.     public:  
  21.         /** 
  22.         * This method will use the average method to compute the bounding sphere of the 
  23.         * input vertices array 
  24.         */  
  25.         void computeBoundingSphereAverage(VECTOR3* vertices, unsigned int vertex_num);  
  26.   
  27.         /** 
  28.         * This method will use the Ritter's method to compute the bounding sphere 
  29.         */  
  30.         void computeBoundingSphereRitter(VECTOR3* vertices, unsigned int vertex_num);  
  31.     public:  
  32.         VECTOR3 center ;  
  33.         float radious ;  
  34.     };  
  35. };  
[cpp]  view plain copy
  1. #include"Sphere.h"  
  2. #include<cmath>  
  3. using namespace std ;  
  4. using namespace XJCollision ;  
  5.   
  6. Sphere::Sphere()  
  7.     :center(),  
  8.     radious(0.0f)  
  9. {  
  10.   
  11. }  
  12.   
  13. Sphere::Sphere(VECTOR3 c, float r)  
  14.     :center(c),  
  15.     radious(r)  
  16. {  
  17.   
  18. }  
  19.   
  20. Sphere::~Sphere()  
  21. {  
  22.   
  23. }  
  24.   
  25. void Sphere::computeBoundingSphereAverage(VECTOR3* vertices, unsigned int vertex_num)  
  26. {  
  27.     //Compute the center point  
  28.     VECTOR3 total ;  
  29.     total.x = 0 ;  
  30.     total.y = 0 ;  
  31.     total.z = 0 ;  
  32.     for(int i = 0 ; i < vertex_num ; i ++)  
  33.     {  
  34.         total.x += vertices[i].x ;  
  35.         total.y += vertices[i].y ;  
  36.         total.z += vertices[i].z ;  
  37.     }// end for  
  38.   
  39.     total.x /= vertex_num ;  
  40.     total.y /= vertex_num ;  
  41.     total.z /= vertex_num ;  
  42.     center = total ;  
  43.   
  44.     //Compute the radious  
  45.     float r = 0 ;  
  46.     for(int i = 0 ; i < vertex_num ; i ++)  
  47.     {  
  48.         VECTOR3 temp ;  
  49.         Vec3Sub(temp, total, vertices[i]);  
  50.         float length = 0 ;  
  51.         length = Vec3Length(length, temp);  
  52.         if(length > r)  
  53.             r = length ;  
  54.     }// end for  
  55.   
  56.     radious = r ;  
  57. }// end for computeBoundingSphereAverage  
  58.   
  59. void Sphere::computeBoundingSphereRitter(VECTOR3* vertices, unsigned int vertex_num)  
  60. {  
  61.     unsigned int maxX = 0 , maxY = 0, maxZ = 0 , minX = -1, minY = -1, minZ = -1 ;  
  62.       
  63.     //Find the max and min along the x-axie, y-axie, z-axie  
  64.     for(int i = 0 ; i < vertex_num ; i ++)  
  65.     {  
  66.         if(vertices[i].x > maxX) maxX = i ;  
  67.         if(vertices[i].x < minX) minX = i ;  
  68.         if(vertices[i].y > maxY) maxY = i ;  
  69.         if(vertices[i].y < minY) minY = i ;  
  70.         if(vertices[i].z > maxZ) maxZ = i ;  
  71.         if(vertices[i].z < minZ) minZ = i ;  
  72.     }// end for  
  73.   
  74.     float x = 0;  
  75.     VECTOR3 sub1 , sub2 ;  
  76.     sub1.x = vertices[maxX].x ; sub1.y = vertices[maxX].y ; sub1.z = vertices[maxX].z ;  
  77.     sub2.x = vertices[minX].x ; sub2.y = vertices[minX].y ; sub2.z = vertices[minX].z ;  
  78.     Vec3Sub(sub1, sub1, sub2);  
  79.     Vec3Dot(x, sub1, sub1);  
  80.   
  81.     float y = 0 ;  
  82.     sub1.x = vertices[maxY].x ; sub1.y = vertices[maxY].y ; sub1.z = vertices[maxY].z ;  
  83.     sub2.x = vertices[minY].x ; sub2.y = vertices[minY].y ; sub2.z = vertices[minY].z ;  
  84.     Vec3Sub(sub1, sub1, sub2);  
  85.     Vec3Dot(y, sub1, sub1);  
  86.   
  87.     float z = 0 ;  
  88.     sub1.x = vertices[maxZ].x ; sub1.y = vertices[maxZ].y ; sub1.z = vertices[maxZ].z ;  
  89.     sub2.x = vertices[minZ].x ; sub2.y = vertices[minZ].y ; sub2.z = vertices[minZ].z ;  
  90.     Vec3Sub(sub1, sub1, sub2);  
  91.     Vec3Dot(z, sub1, sub1);  
  92.   
  93.     float dia = 0 ;  
  94.     int max = maxX , min = minX ;  
  95.     if( z > x && z > y)  
  96.     {  
  97.         max = maxZ ;  
  98.         min = minZ ;  
  99.         dia = z ;  
  100.     }else if(y > x && y > z)  
  101.     {  
  102.         max = maxY ;  
  103.         min = minY ;  
  104.         dia = y ;  
  105.     }  
  106.   
  107.     //Compute the center point  
  108.     center.x = 0.5 * (vertices[max].x + vertices[min].x) ;  
  109.     center.y = 0.5 * (vertices[max].y + vertices[min].y) ;  
  110.     center.z = 0.5 * (vertices[max].z + vertices[min].z) ;  
  111.   
  112.     //Compute the radious  
  113.     radious = 0.5 * sqrt(dia);  
  114.   
  115.     //Fix it  
  116.     for(int i = 0 ; i < vertex_num ; i ++)  
  117.     {  
  118.         VECTOR3 d ;  
  119.         Vec3Sub(d, vertices[i], center);  
  120.         float dist2 = 0 ;  
  121.         Vec3Dot(dist2, d, d);  
  122.   
  123.         if(dist2 > radious * radious)  
  124.         {  
  125.             float dist = sqrt(dist2);  
  126.             float newRadious = (dist + radious) * 0.5 ;  
  127.             float k = (newRadious - radious) / dist ;  
  128.             radious = newRadious ;  
  129.             VECTOR3 temp ;  
  130.             Vec3Mul(temp, d, k);  
  131.             Vec3Add(center, center, temp);  
  132.         }// end if  
  133.     }// end for vertex_num  
  134. }// end for computeBoundingSphereRitter  

                好了,今天到这里就结束了。以后会陆陆续续的讲解其他的包围体的使用方法,希望大家喜欢!!!!

原文来自:http://blog.csdn.net/i_dovelemon/article/details/32904251

你可能感兴趣的:(编程,C++,c,算法,3D)