geom.cpp
上传用户:sun1608
上传日期:2007-02-02
资源大小:6116k
文件大小:7k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /*************************************************************************
  2. This software module was originally developed by 
  3. Ming-Chieh Lee (mingcl@microsoft.com), Microsoft Corporation
  4. Wei-ge Chen (wchen@microsoft.com), Microsoft Corporation
  5. Bruce Lin (blin@microsoft.com), Microsoft Corporation
  6. Chuang Gu (chuanggu@microsoft.com), Microsoft Corporation
  7. (date: March, 1996)
  8. in the course of development of the MPEG-4 Video (ISO/IEC 14496-2). 
  9. This software module is an implementation of a part of one or more MPEG-4 Video tools 
  10. as specified by the MPEG-4 Video. 
  11. ISO/IEC gives users of the MPEG-4 Video free license to this software module or modifications 
  12. thereof for use in hardware or software products claiming conformance to the MPEG-4 Video. 
  13. Those intending to use this software module in hardware or software products are advised that its use may infringe existing patents. 
  14. The original developer of this software module and his/her company, 
  15. the subsequent editors and their companies, 
  16. and ISO/IEC have no liability for use of this software module or modifications thereof in an implementation. 
  17. Copyright is not released for non MPEG-4 Video conforming products. 
  18. Microsoft retains full right to use the code for his/her own purpose, 
  19. assign or donate the code to a third party and to inhibit third parties from using the code for non <MPEG standard> conforming products. 
  20. This copyright notice must be included in all copies or derivative works. 
  21. Copyright (c) 1996, 1997.
  22. Module Name:
  23.     geom.cpp
  24. Abstract:
  25.     2D geometry
  26. Revision History:
  27. *************************************************************************/
  28. #include <stdlib.h>
  29. #include <stdio.h>
  30. #include "basic.hpp"
  31. #include <float.h>
  32. #include "geom.hpp"
  33. #include <string.h>
  34. #include <math.h>
  35. #ifdef __MFC_
  36. #ifdef _DEBUG
  37. #undef THIS_FILE
  38. static char BASED_CODE THIS_FILE[] = __FILE__;
  39. #endif
  40. #define new DEBUG_NEW    
  41. #endif // __MFC_
  42. // CPolygonI
  43. CPolygonI::CPolygonI(const CPolygonI& poly) : m_csit(0), m_rgsit(NULL) {
  44. allocate(poly.m_csit);
  45. memcpy (m_rgsit,poly.m_rgsit,sizeof(CSite)*m_csit);
  46. }
  47. CPolygonI::CPolygonI (UInt csit, const CSite* rgsit, Bool bCheckCorner, const CRct& rc) : m_csit(0), m_rgsit(NULL) {
  48. allocate(csit);
  49. memcpy(m_rgsit,rgsit,sizeof(CSite)*m_csit);
  50. if (bCheckCorner) {
  51. assert (rc.valid ());
  52. checkCorner (rc);
  53. }
  54. close ();
  55. }
  56. CPolygonI::CPolygonI(const CRct& r) : m_csit(0), m_rgsit(NULL) {
  57. allocate(4);
  58. m_rgsit[0].set(r.left,r.top); 
  59. m_rgsit[1].set(r.right,r.top); 
  60. m_rgsit[2].set(r.right,r.bottom); 
  61. m_rgsit[3].set(r.left,r.bottom); 
  62. }
  63. inline Int isign (Int i) {return i >= 0 ? 1 : -1;}; // returns 1 if i>=0, -1 if i<0
  64. Void CPolygonI::crop (const CRct& rct)
  65. {
  66. for (UInt i = 0; i < m_csit; i++) {
  67. if (m_rgsit[i].x < rct.left) {
  68. m_rgsit[i].x = rct.left;
  69. }
  70. else if (m_rgsit[i].x >= rct.right) {
  71. m_rgsit[i].x = rct.right - 1;
  72. }
  73. if (m_rgsit[i].y < rct.top) {
  74. m_rgsit[i].y = rct.top;
  75. }
  76. else if (m_rgsit[i].y >= rct.bottom) {
  77. m_rgsit[i].y = rct.bottom - 1;
  78. }
  79. }
  80. }
  81. Void CPolygonI::close ()
  82. {
  83. UInt nStsMax = 4 * m_csit + 1000;
  84. CSite* rgSts = new CSite [nStsMax]; // I hope this is big enough!
  85. UInt nStNoGap = 0; // in general, will have to add some sites
  86. for (UInt i = 0; i < m_csit; i++) {
  87. CSite s0, s1;
  88. if (i != 0) {
  89. s0 = m_rgsit[i-1];
  90. }
  91. else {
  92. s0 = m_rgsit[m_csit - 1];
  93. }
  94. s1 = m_rgsit[i];
  95. CoordI dx = s1.x - s0.x;
  96. CoordI dy = s1.y - s0.y;
  97. if (abs(dx) <=1 && abs(dy) <= 1) { // no gap
  98. if (i > 0) { //added by wchen
  99. rgSts[nStNoGap] = s0;
  100. nStNoGap++; 
  101. assert (nStNoGap < nStsMax);
  102. }
  103. }
  104. else { // there is a gap
  105. CoordI j, xnew, ynew;
  106. CoordI x = s0.x;
  107. CoordI y = s0.y;
  108. float slope;
  109. if (i > 0) {// added by wchen
  110. rgSts[nStNoGap] = s0;
  111. nStNoGap++; 
  112. }
  113. assert (nStNoGap < nStsMax);
  114. // three cases |dx|=|dy|, |dx|>|dy|, |dx|<|dy|
  115. if (abs(dx) == abs(dy)){ // |dx|=|dy|
  116. int islope = dx / dy;
  117. for (j = isign(dx); j != dx; j+=isign(dx)) {
  118. xnew = x + j;
  119. ynew = y + islope*j;
  120. rgSts[nStNoGap] = CSite (xnew, ynew);
  121. nStNoGap++;
  122. assert (nStNoGap < nStsMax);
  123. }
  124. }
  125. else if (abs(dx) > abs(dy)) { // |dx|>|dy|
  126. slope = (float) dy / (float) dx;
  127. for (j = isign(dx); j != dx; j+=isign(dx)) {
  128. xnew = x + j;
  129. ynew = y + (int) (slope * j);
  130. rgSts[nStNoGap] = CSite (xnew, ynew);
  131. nStNoGap++;
  132. assert (nStNoGap < nStsMax);
  133. }
  134. }
  135. else { // |dx|<|dy|
  136. slope = (float) dx / (float) dy;
  137. for (j = isign(dy); j != dy; j+=isign(dy)) {
  138. ynew = y + j;
  139. xnew = x + (int) (slope * j);
  140. rgSts[nStNoGap] = CSite (xnew, ynew);
  141. nStNoGap++;
  142. assert (nStNoGap < nStsMax);
  143. }
  144. }
  145. }
  146. }
  147. rgSts[nStNoGap] = m_rgsit[m_csit-1];
  148. nStNoGap++; 
  149. assert (nStNoGap <= nStsMax);
  150. // Now have a new set of sites with no gaps.  Convert to codewords.
  151. m_csit = nStNoGap; //added by wchen
  152. delete [] m_rgsit;
  153. m_rgsit = new CSite [m_csit];
  154. for (UInt iSts = 0; iSts < m_csit; iSts++)
  155. m_rgsit [iSts] = rgSts [iSts];
  156. delete [] rgSts;
  157. }
  158. void CPolygonI::unpack(UInt& csit, CSite*& rgsit) const {
  159. csit = m_csit;
  160. rgsit = new CSite[csit];
  161. memcpy(rgsit,m_rgsit,sizeof(CSite)*csit);
  162. }
  163. Void CPolygonI::dump (const Char* pchFileName) const
  164. {
  165. FILE* pf = fopen (pchFileName, "w");
  166. fprintf (pf, "%dn", m_csit);
  167. for (UInt ist = 0; ist < m_csit; ist++)
  168. fprintf (pf, "%ld %ldn", m_rgsit [ist].x, m_rgsit [ist].y);
  169. fclose (pf);
  170. }
  171. CPolygonI* CPolygonI::sample(int rate, const CRct& rc) {
  172. if (m_csit == 0) return new CPolygonI();
  173. /* Bool fEdges = */ rc.valid();
  174. CSite* rgsit = new CSite[m_csit+5];
  175. CoordI x0 = rc.left;
  176. CoordI x1 = rc.right-1;
  177. CoordI y0 = rc.top;
  178. CoordI y1 = rc.bottom-1;
  179. #define EDGE(sit) (sit.x == x0 || sit.x == x1 || sit.y == y0 || sit.y == y1)
  180. #define CORNER(sit) (
  181. (sit.x == x0 && (sit.y == y0 || sit.y == y1)) || 
  182. (sit.x == x1 && (sit.y == y0 || sit.y == y1)) 
  183. )
  184. rgsit[0] = m_rgsit[0];
  185. UInt isitS = 1;
  186. for (UInt isit = 1; isit < m_csit; isit++) {
  187. if (CORNER(m_rgsit[isit]) || 
  188. (isit % rate == 0 &&
  189. !(EDGE(m_rgsit[isit]) || EDGE(m_rgsit[isit-1]) || EDGE(m_rgsit[isit+1]))
  190. )
  191. ) {
  192. rgsit[isitS++] = m_rgsit[isit];
  193. }
  194. }
  195. CPolygonI* ppoly = new CPolygonI(isitS,rgsit);
  196. delete [] rgsit;
  197. return ppoly;
  198. }
  199. void CPolygonI::allocate(UInt csit) {
  200. assert (csit == (UInt) (int) csit);
  201. m_csit = csit;
  202. delete [] m_rgsit;
  203. m_rgsit = new CSite[csit];
  204. }
  205. Void CPolygonI::checkCorner (const CRct& rc)
  206. {
  207. if (m_csit == 0) return;
  208. Int range = 2;
  209. CoordI x0 = rc.left + range;
  210. CoordI x1 = rc.right - 1 - range;
  211. CoordI y0 = rc.top + range;
  212. CoordI y1 = rc.bottom - 1 - range;
  213. CSite* rgsit = new CSite [m_csit + 1];
  214. UInt isitS = 0;
  215. CSite* psit = m_rgsit;
  216. for (UInt isit = 1; isit < m_csit; isit++) {
  217. CoordI xCurr = psit -> x, yNext = (psit + 1) -> y;
  218. CoordI xNext = (psit + 1) -> x, yCurr = psit -> y;
  219. if (
  220. (xCurr <= x0 && yNext <= y0) ||
  221. (xCurr <= x0 && yNext >= y1) ||
  222. (xCurr >= x1 && yNext <= y0) ||
  223. (xCurr >= x1 && yNext >= y1)
  224. )
  225. rgsit[isitS++] = CSite (xCurr, yNext);
  226. else if (
  227. (xNext <= x0 && yCurr <= y0) ||
  228. (xNext <= x0 && yCurr >= y1) ||
  229. (xNext >= x1 && yCurr <= y0) ||
  230. (xNext >= x1 && yCurr >= y1)
  231. )
  232. rgsit[isitS++] = CSite (xNext, yCurr);
  233. else
  234. rgsit[isitS++] = m_rgsit[isit];
  235. psit++;
  236. }
  237. m_csit = isitS;
  238. delete [] m_rgsit;
  239. m_rgsit = rgsit;
  240. }