dibview.cpp
上传用户:zbjinju
上传日期:2022-07-30
资源大小:11893k
文件大小:20k
源码类别:

图形图象

开发平台:

Visual C++

  1. // dibview.cpp : implementation of the CDibView class
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "diblook.h"
  14. #include "dibdoc.h"
  15. #include "dibview.h"
  16. #include "dibapi.h"
  17. #include "mainfrm.h"
  18. #include "BitmapInfoDlg.h"
  19. #include "ThresholdDialog.h"
  20. #include "DlgHistogram.h"
  21. #include <math.h>
  22. #define PI 3.14
  23. #include <afxtempl.h>
  24. #ifdef _DEBUG
  25. #undef THIS_FILE
  26. static char BASED_CODE THIS_FILE[] = __FILE__;
  27. #endif
  28. #define BEGIN_PROCESSING() INCEPUT_PRELUCRARI()
  29. #define END_PROCESSING(Title) SFARSIT_PRELUCRARI(Title)
  30. #define INCEPUT_PRELUCRARI() 
  31. CDibDoc* pDocSrc=GetDocument();
  32. CDocTemplate* pDocTemplate=pDocSrc->GetDocTemplate();
  33. CDibDoc* pDocDest=(CDibDoc*) pDocTemplate->CreateNewDocument();
  34. BeginWaitCursor();
  35. HDIB hBmpSrc=pDocSrc->GetHDIB();
  36. HDIB hBmpDest = (HDIB)::CopyHandle((HGLOBAL)hBmpSrc);
  37. if ( hBmpDest==0 ) {
  38. pDocTemplate->RemoveDocument(pDocDest);
  39. return;
  40. }
  41. BYTE* lpD = (BYTE*)::GlobalLock((HGLOBAL)hBmpDest);
  42. BYTE* lpS = (BYTE*)::GlobalLock((HGLOBAL)hBmpSrc);
  43. int iColors = DIBNumColors((char *)&(((LPBITMAPINFO)lpD)->bmiHeader)); 
  44. RGBQUAD *bmiColorsDst = ((LPBITMAPINFO)lpD)->bmiColors;
  45. RGBQUAD *bmiColorsSrc = ((LPBITMAPINFO)lpS)->bmiColors;
  46. BYTE * lpDst = (BYTE*)::FindDIBBits((LPSTR)lpD);
  47. BYTE * lpSrc = (BYTE*)::FindDIBBits((LPSTR)lpS);
  48. int dwWidth  = ::DIBWidth((LPSTR)lpS);
  49. int dwHeight = ::DIBHeight((LPSTR)lpS);
  50. int w=WIDTHBYTES(dwWidth*((LPBITMAPINFOHEADER)lpS)->biBitCount);
  51. #define BEGIN_SOURCE_PROCESSING 
  52. CDibDoc* pDocSrc=GetDocument();
  53. BeginWaitCursor();
  54. HDIB hBmpSrc=pDocSrc->GetHDIB();
  55. BYTE* lpS = (BYTE*)::GlobalLock((HGLOBAL)hBmpSrc);
  56. int iColors = DIBNumColors((char *)&(((LPBITMAPINFO)lpS)->bmiHeader)); 
  57. RGBQUAD *bmiColorsSrc = ((LPBITMAPINFO)lpS)->bmiColors;
  58. BYTE * lpSrc = (BYTE*)::FindDIBBits((LPSTR)lpS);
  59. int dwWidth  = ::DIBWidth((LPSTR)lpS);
  60. int dwHeight = ::DIBHeight((LPSTR)lpS);
  61. int w=WIDTHBYTES(dwWidth*((LPBITMAPINFOHEADER)lpS)->biBitCount);
  62. #define END_SOURCE_PROCESSING
  63. ::GlobalUnlock((HGLOBAL)hBmpSrc);
  64.     EndWaitCursor();
  65. /////////////////////////////////////////////////////////////////////////////
  66. //---------------------------------------------------------------
  67. #define SFARSIT_PRELUCRARI(Titlu)
  68. ::GlobalUnlock((HGLOBAL)hBmpDest);
  69. ::GlobalUnlock((HGLOBAL)hBmpSrc);
  70.     EndWaitCursor();
  71. pDocDest->SetHDIB(hBmpDest);
  72. pDocDest->InitDIBData();
  73. pDocDest->SetTitle((LPCSTR)Titlu);
  74. CFrameWnd* pFrame=pDocTemplate->CreateNewFrame(pDocDest,NULL);
  75. pDocTemplate->InitialUpdateFrame(pFrame,pDocDest);
  76. /////////////////////////////////////////////////////////////////////////////
  77. // CDibView
  78. IMPLEMENT_DYNCREATE(CDibView, CScrollView)
  79. BEGIN_MESSAGE_MAP(CDibView, CScrollView)
  80. //{{AFX_MSG_MAP(CDibView)
  81. ON_COMMAND(ID_EDIT_COPY, OnEditCopy)
  82. ON_UPDATE_COMMAND_UI(ID_EDIT_COPY, OnUpdateEditCopy)
  83. ON_COMMAND(ID_EDIT_PASTE, OnEditPaste)
  84. ON_UPDATE_COMMAND_UI(ID_EDIT_PASTE, OnUpdateEditPaste)
  85. ON_MESSAGE(WM_DOREALIZE, OnDoRealize)
  86. ON_COMMAND(ID_PROCESSING_PARCURGERESIMPLA, OnProcessingParcurgereSimpla)
  87. //}}AFX_MSG_MAP
  88. // Standard printing commands
  89. ON_COMMAND(ID_FILE_PRINT, CScrollView::OnFilePrint)
  90. ON_COMMAND(ID_FILE_PRINT_PREVIEW, CScrollView::OnFilePrintPreview)
  91. ON_COMMAND(ID_PROCESSING_LAB1, &CDibView::OnProcessingLab1)
  92. ON_COMMAND(ID_LAB2_BMPINFO, &CDibView::OnLab2Bmpinfo)
  93. ON_COMMAND(ID_LAB2_GRAYSCALE, &CDibView::OnLab2Grayscale)
  94. ON_COMMAND(ID_LAB2_SORTPALETTE, &CDibView::OnLab2Sortpalette)
  95. ON_COMMAND(ID_LAB2_BLACKANDWHITE, &CDibView::OnLab2Blackandwhite)
  96. ON_COMMAND(ID_LAB3_HISTOGRAM, &CDibView::OnLab3Histogram)
  97. ON_COMMAND(ID_LAB3_PRAGURIMULTIPLE, &CDibView::OnLab3Pragurimultiple)
  98. ON_COMMAND(ID_LAB3_PRAGURIMULTIPLEFS, &CDibView::OnLab3Pragurimultiplefs)
  99. ON_COMMAND(ID_PROCESSING_LAB4, &CDibView::OnProcessingLab4)
  100. ON_COMMAND(ID_PROCESSING_LAB5, &CDibView::OnProcessingLab5)
  101. END_MESSAGE_MAP()
  102. /////////////////////////////////////////////////////////////////////////////
  103. // CDibView construction/destruction
  104. CDibView::CDibView()
  105. {
  106. }
  107. CDibView::~CDibView()
  108. {
  109. }
  110. /////////////////////////////////////////////////////////////////////////////
  111. // CDibView drawing
  112. void CDibView::OnDraw(CDC* pDC)
  113. {
  114. CDibDoc* pDoc = GetDocument();
  115. HDIB hDIB = pDoc->GetHDIB();
  116. if (hDIB != NULL)
  117. {
  118. LPSTR lpDIB = (LPSTR) ::GlobalLock((HGLOBAL) hDIB);
  119. int cxDIB = (int) ::DIBWidth(lpDIB);         // Size of DIB - x
  120. int cyDIB = (int) ::DIBHeight(lpDIB);        // Size of DIB - y
  121. ::GlobalUnlock((HGLOBAL) hDIB);
  122. CRect rcDIB;
  123. rcDIB.top = rcDIB.left = 0;
  124. rcDIB.right = cxDIB;
  125. rcDIB.bottom = cyDIB;
  126. CRect rcDest;
  127. if (pDC->IsPrinting())   // printer DC
  128. {
  129. // get size of printer page (in pixels)
  130. int cxPage = pDC->GetDeviceCaps(HORZRES);
  131. int cyPage = pDC->GetDeviceCaps(VERTRES);
  132. // get printer pixels per inch
  133. int cxInch = pDC->GetDeviceCaps(LOGPIXELSX);
  134. int cyInch = pDC->GetDeviceCaps(LOGPIXELSY);
  135. //
  136. // Best Fit case -- create a rectangle which preserves
  137. // the DIB's aspect ratio, and fills the page horizontally.
  138. //
  139. // The formula in the "->bottom" field below calculates the Y
  140. // position of the printed bitmap, based on the size of the
  141. // bitmap, the width of the page, and the relative size of
  142. // a printed pixel (cyInch / cxInch).
  143. //
  144. rcDest.top = rcDest.left = 0;
  145. rcDest.bottom = (int)(((double)cyDIB * cxPage * cyInch)
  146. / ((double)cxDIB * cxInch));
  147. rcDest.right = cxPage;
  148. }
  149. else   // not printer DC
  150. {
  151. rcDest = rcDIB;
  152. }
  153. ::PaintDIB(pDC->m_hDC, &rcDest, pDoc->GetHDIB(),
  154. &rcDIB, pDoc->GetDocPalette());
  155. }
  156. }
  157. /////////////////////////////////////////////////////////////////////////////
  158. // CDibView printing
  159. BOOL CDibView::OnPreparePrinting(CPrintInfo* pInfo)
  160. {
  161. // default preparation
  162. return DoPreparePrinting(pInfo);
  163. }
  164. /////////////////////////////////////////////////////////////////////////////
  165. // CDibView commands
  166. LRESULT CDibView::OnDoRealize(WPARAM wParam, LPARAM)
  167. {
  168. ASSERT(wParam != NULL);
  169. CDibDoc* pDoc = GetDocument();
  170. if (pDoc->GetHDIB() == NULL)
  171. return 0L;  // must be a new document
  172. CPalette* pPal = pDoc->GetDocPalette();
  173. if (pPal != NULL)
  174. {
  175. CMainFrame* pAppFrame = (CMainFrame*) AfxGetApp()->m_pMainWnd;
  176. ASSERT_KINDOF(CMainFrame, pAppFrame);
  177. CClientDC appDC(pAppFrame);
  178. // All views but one should be a background palette.
  179. // wParam contains a handle to the active view, so the SelectPalette
  180. // bForceBackground flag is FALSE only if wParam == m_hWnd (this view)
  181. CPalette* oldPalette = appDC.SelectPalette(pPal, ((HWND)wParam) != m_hWnd);
  182. if (oldPalette != NULL)
  183. {
  184. UINT nColorsChanged = appDC.RealizePalette();
  185. if (nColorsChanged > 0)
  186. pDoc->UpdateAllViews(NULL);
  187. appDC.SelectPalette(oldPalette, TRUE);
  188. }
  189. else
  190. {
  191. TRACE0("tSelectPalette failed in CDibView::OnPaletteChangedn");
  192. }
  193. }
  194. return 0L;
  195. }
  196. void CDibView::OnInitialUpdate()
  197. {
  198. CScrollView::OnInitialUpdate();
  199. ASSERT(GetDocument() != NULL);
  200. SetScrollSizes(MM_TEXT, GetDocument()->GetDocSize());
  201. }
  202. void CDibView::OnActivateView(BOOL bActivate, CView* pActivateView,
  203. CView* pDeactiveView)
  204. {
  205. CScrollView::OnActivateView(bActivate, pActivateView, pDeactiveView);
  206. if (bActivate)
  207. {
  208. ASSERT(pActivateView == this);
  209. OnDoRealize((WPARAM)m_hWnd, 0);   // same as SendMessage(WM_DOREALIZE);
  210. }
  211. }
  212. void CDibView::OnEditCopy()
  213. {
  214. CDibDoc* pDoc = GetDocument();
  215. // Clean clipboard of contents, and copy the DIB.
  216. if (OpenClipboard())
  217. {
  218. BeginWaitCursor();
  219. EmptyClipboard();
  220. SetClipboardData (CF_DIB, CopyHandle((HANDLE) pDoc->GetHDIB()) );
  221. CloseClipboard();
  222. EndWaitCursor();
  223. }
  224. }
  225. void CDibView::OnUpdateEditCopy(CCmdUI* pCmdUI)
  226. {
  227. pCmdUI->Enable(GetDocument()->GetHDIB() != NULL);
  228. }
  229. void CDibView::OnEditPaste()
  230. {
  231. HDIB hNewDIB = NULL;
  232. if (OpenClipboard())
  233. {
  234. BeginWaitCursor();
  235. hNewDIB = (HDIB) CopyHandle(::GetClipboardData(CF_DIB));
  236. CloseClipboard();
  237. if (hNewDIB != NULL)
  238. {
  239. CDibDoc* pDoc = GetDocument();
  240. pDoc->ReplaceHDIB(hNewDIB); // and free the old DIB
  241. pDoc->InitDIBData();    // set up new size & palette
  242. pDoc->SetModifiedFlag(TRUE);
  243. SetScrollSizes(MM_TEXT, pDoc->GetDocSize());
  244. OnDoRealize((WPARAM)m_hWnd,0);  // realize the new palette
  245. pDoc->UpdateAllViews(NULL);
  246. }
  247. EndWaitCursor();
  248. }
  249. }
  250. void CDibView::OnUpdateEditPaste(CCmdUI* pCmdUI)
  251. {
  252. pCmdUI->Enable(::IsClipboardFormatAvailable(CF_DIB));
  253. }
  254. void CDibView::OnProcessingParcurgereSimpla() 
  255. {
  256. // TODO: Add your command handler code here
  257. BEGIN_PROCESSING();
  258. // Makes a grayscale image by equalizing the R, G, B components from the LUT
  259. for (int k=0;  k < iColors ; k++)
  260. bmiColorsDst[k].rgbRed=bmiColorsDst[k].rgbGreen=bmiColorsDst[k].rgbBlue=k;
  261. //  Goes through the bitmap pixels and performs their negative
  262. for (int i=0;i<dwHeight;i++)
  263. for (int j=0;j<dwWidth;j++)
  264.   {
  265. lpDst[i*w+j]= 255 - lpSrc[i*w+j]; //makes image negative
  266.   }
  267. END_PROCESSING("Operation name");
  268. }
  269. void CDibView::OnProcessingLab1()
  270. {
  271. BEGIN_PROCESSING();
  272. // Makes a grayscale image by equalizing the R, G, B components from the LUT
  273. //for (int k=0;  k < iColors ; k++)
  274. // bmiColorsDst[k].rgbRed=bmiColorsDst[k].rgbGreen=bmiColorsDst[k].rgbBlue=k;
  275. //  Goes through the bitmap pixels and performs their negative
  276. for (int i=0;i<dwHeight;i++)
  277. for (int j=0;j<dwWidth;j++)
  278.   {
  279. lpDst[i*w+j]= 5*lpSrc[i*w+j]; //makes image negative
  280.   }
  281. END_PROCESSING("lab1");
  282. }
  283. void CDibView::OnLab2Bmpinfo()
  284. {
  285. BEGIN_SOURCE_PROCESSING;
  286. CBitmapInfoDlg dlgBmpHeader;
  287. LPBITMAPINFO pBitmapInfoSrc = (LPBITMAPINFO) lpS;
  288. CString buffer;
  289. for(int i=0;i<iColors;++i){
  290. buffer.Format("%3d. t%3dt%3dt%3drn",i,
  291. bmiColorsSrc[i].rgbRed,
  292. bmiColorsSrc[i].rgbGreen,
  293. bmiColorsSrc[i].rgbBlue
  294. );
  295. dlgBmpHeader.m_TEXT += buffer;
  296. }
  297. dlgBmpHeader.DoModal();
  298. END_SOURCE_PROCESSING;
  299. }
  300. void CDibView::OnLab2Grayscale()
  301. {
  302. BEGIN_PROCESSING();
  303. for (int k=0;  k < iColors ; k++){
  304. int mean = (bmiColorsDst[k].rgbRed + bmiColorsDst[k].rgbGreen + bmiColorsDst[k].rgbBlue)/3;
  305. bmiColorsDst[k].rgbRed=bmiColorsDst[k].rgbGreen=bmiColorsDst[k].rgbBlue=mean;
  306. }
  307. END_PROCESSING("GrayScale");
  308. }
  309. void CDibView::OnLab2Sortpalette()
  310. {
  311. BEGIN_PROCESSING();
  312. int g[256];
  313. for (int k=0;  k < iColors ; k++){
  314. g[k] = bmiColorsDst[k].rgbRed;
  315. bmiColorsDst[k].rgbRed=bmiColorsDst[k].rgbGreen=bmiColorsDst[k].rgbBlue=k;
  316. }
  317. for (int i=0;i<dwHeight;i++)
  318. for (int j=0;j<dwWidth;j++){
  319. int k = lpDst[i*w+j];
  320. lpDst[i*w+j]= g[k];
  321. }
  322. END_PROCESSING("SortPalette");
  323. }
  324. void CDibView::OnLab2Blackandwhite()
  325. {
  326. BYTE threshold;
  327. CThresholdDialog dlgThresh;
  328. if(dlgThresh.DoModal() == IDOK){
  329. threshold = dlgThresh.m_thresh;
  330. BEGIN_PROCESSING();
  331. for (int i=0;i<dwHeight;i++)
  332. for (int j=0;j<dwWidth;j++){
  333. if(lpDst[i*w+j]<threshold)
  334. lpDst[i*w+j]=0;
  335. else
  336. lpDst[i*w+j]=255;
  337. }
  338. END_PROCESSING("Black and White");
  339. }
  340. }
  341. void CDibView::OnLab3Histogram()
  342. {
  343. BEGIN_SOURCE_PROCESSING; 
  344. int histValues[256]; 
  345. float FDPValues[256]; 
  346. int i,j;
  347. for(i=0;i<256;++i){
  348. histValues[i] = 0;
  349. }
  350. for (i=0;i<dwHeight;i++)
  351. for (j=0;j<dwWidth;j++){
  352. histValues[ lpSrc[i*w+j] ]++;
  353. }
  354. int m = dwHeight * dwWidth;
  355. for(i=0; i<256; ++i)
  356. FDPValues[i] = (float)histValues[i]/m;
  357. CDlgHistogram dlg;
  358. memcpy(dlg.m_Histogram.values,histValues,sizeof(histValues)); 
  359. dlg.DoModal();
  360. END_SOURCE_PROCESSING;
  361. }
  362. //cel mai apropiat maxim din histograma
  363. int closestMax(int *h, int k){
  364. if(h[k] == 1)
  365. return k;
  366. int i=1;
  367. while(1){
  368. if(k-i < 0)
  369. return 0;
  370. if(h[k-i] == 1)
  371. return k-i;
  372. if(k+i > 255)
  373. return 255;
  374. if(h[k+i] == 1)
  375. return k+i;
  376. ++i;
  377. }
  378. return 0;
  379. }
  380. void CDibView::OnLab3Pragurimultiple()
  381. {
  382. int WH = 5;
  383. double TH = 0.0003;
  384. BEGIN_PROCESSING();
  385. int histValues[256]; 
  386. double FDPValues[256]; 
  387. int locMax[256];
  388. int i,j,k;
  389. for(i=0;i<256;++i){
  390. histValues[i] = 0;
  391. locMax[i] = 0;
  392. }
  393. for (i=0;i<dwHeight;i++)
  394. for (j=0;j<dwWidth;j++){
  395. histValues[ lpSrc[i*w+j] ]++;
  396. }
  397. int m = dwHeight * dwWidth;
  398. for(i=0; i<256; ++i)
  399. FDPValues[i] = (double)histValues[i]/m;
  400. //calculam maximii locali
  401. //locMax va contine 1 dak e maxim local, 0 dak nu
  402. locMax[0] = 1;
  403. locMax[255] = 1;
  404. double v,max;
  405. for(k = WH; k<255-WH; ++k){
  406. v = 0.0;
  407. max = FDPValues[k-WH];
  408. for(i=k-WH; i<=k+WH; ++i){
  409. v += FDPValues[i];
  410. if(FDPValues[i] > max)
  411. max = FDPValues[i];
  412. }
  413. v /= (2*WH+1);
  414. if(FDPValues[k] > v+TH && FDPValues[k] >= max)
  415. locMax[k] = 1;
  416. }
  417. for (int i=0;i<dwHeight;i++)
  418. for (int j=0;j<dwWidth;j++){
  419. k = lpDst[i*w+j];
  420. lpDst[i*w+j]= closestMax(locMax, k);
  421. }
  422. END_PROCESSING("PraguriMultiple");
  423. }
  424. void CDibView::OnLab3Pragurimultiplefs()
  425. {
  426. int WH = 5;
  427. double TH = 0.0003;
  428. BEGIN_PROCESSING();
  429. int histValues[256]; 
  430. double FDPValues[256]; 
  431. int locMax[256];
  432. int i,j,k;
  433. for(i=0;i<256;++i){
  434. histValues[i] = 0;
  435. locMax[i] = 0;
  436. }
  437. for (i=0;i<dwHeight;i++)
  438. for (j=0;j<dwWidth;j++){
  439. histValues[ lpSrc[i*w+j] ]++;
  440. }
  441. int m = dwHeight * dwWidth;
  442. for(i=0; i<256; ++i)
  443. FDPValues[i] = (double)histValues[i]/m;
  444. //calculam maximii locali
  445. //locMax va contine 1 dak e maxim local, 0 dak nu
  446. locMax[0] = 1;
  447. locMax[255] = 1;
  448. double v,max;
  449. for(k = WH; k<255-WH; ++k){
  450. v = 0.0;
  451. max = FDPValues[k-WH];
  452. for(i=k-WH; i<=k+WH; ++i){
  453. v += FDPValues[i];
  454. if(FDPValues[i] > max)
  455. max = FDPValues[i];
  456. }
  457. v /= (2*WH+1);
  458. if(FDPValues[k] > v+TH && FDPValues[k] >= max)
  459. locMax[k] = 1;
  460. }
  461. int pixel_vechi, pixel_nou, eroare;
  462. BYTE *source = (BYTE*)malloc(dwHeight * w * sizeof BYTE);
  463. memcpy(source, lpSrc, dwHeight * w * sizeof BYTE);
  464. for (int i=0;i<dwHeight;i++)
  465. for (int j=0;j<dwWidth;j++){
  466. pixel_vechi = source[i*w+j];
  467. pixel_nou = closestMax(locMax, pixel_vechi);
  468. lpDst[i*w+j] = pixel_nou;
  469. eroare = pixel_vechi - pixel_nou;
  470. if(j < (dwWidth-1))
  471. source[i*w+(j+1)] = source[i*w+(j+1)] + 7*eroare/16;
  472. if(i < (dwHeight-1) && j > 0)
  473. source[(i+1)*w+(j-1)] = source[(i+1)*w+(j-1)] + 3*eroare/16;
  474. if(i < (dwHeight-1))
  475. source[(i+1)*w+j] = source[(i+1)*w+j] + 5*eroare/16;
  476. if(i < (dwHeight-1) && j < (dwWidth-1))
  477. source[(i+1)*w+(j+1)] = source[(i+1)*w+(j+1)] + eroare/16;
  478. }
  479. free(source);
  480. END_PROCESSING("PraguriMultiple Floyd-Steinberg");
  481. }
  482. void CDibView::OnProcessingLab4()
  483. {
  484.   BEGIN_PROCESSING();
  485.   CString msg;
  486.   int A=0;
  487.   int perim=0;
  488.   int ri,ci;
  489.   float arct;
  490.   float x,y,x1,x2;
  491.   int E=0;
  492.   int cmax=0,cmin=1000,rmax=0,rmin=1000;
  493.   //aria
  494.   for (int i=1;i<dwHeight;i++)
  495.   for (int j=1;j<dwWidth; j++)
  496.   if (lpSrc[i*w+j]==0){
  497.                  A++;
  498.                 
  499.   }
  500.  //centrul de masa 
  501.   int xcm=0;
  502.   for(int i=0;i<dwHeight;i++)
  503.   for(int j=0; j<dwWidth;j++)
  504.   if (lpSrc[i*w+j]==0)
  505.   xcm=xcm+i;
  506.   xcm=xcm/A;
  507.   int ycm=0;
  508.   for(int i=0;i<dwHeight;i++)
  509.   for(int j=0; j<dwWidth;j++)
  510.   if (lpSrc[i*w+j]==0)
  511.   ycm=ycm+j;
  512.   ycm=ycm/A;
  513.   lpDst[xcm*w+ycm]=2;
  514.   bmiColorsDst[2].rgbRed=255;
  515.   bmiColorsDst[2].rgbGreen=0;
  516.   bmiColorsDst[2].rgbBlue=0;
  517.   bmiColorsDst[3].rgbRed=0;
  518.   bmiColorsDst[3].rgbGreen=255;
  519.   bmiColorsDst[3].rgbBlue=0;
  520.   bmiColorsDst[4].rgbRed=0;
  521.   bmiColorsDst[4].rgbGreen=0;
  522.   bmiColorsDst[4].rgbBlue=255;
  523.   //ungiul axei
  524.   for(int i=0;i<dwHeight;i++)
  525.   for(int j=0;j<dwWidth;j++)
  526.           if (lpSrc[i*w+j]==0)
  527.   {
  528.  y+=(i-xcm)*(j-ycm);
  529.  x1+=(j-ycm)*(j-ycm);
  530.  x2+=(i-xcm)*(i-xcm);
  531.   }
  532.    x=(x1-x2);
  533.    arct =(180.0*atan2(y,x))/(2.0*PI);
  534.    //Perimetrul
  535.     for(int i=0;i<dwHeight;i++)
  536.   for(int j=0;j<dwWidth;j++)
  537.   {
  538.   if (lpSrc[i*w+j]==0) 
  539.   {   
  540.   if  ((lpSrc[(i+1)*w+j]>1) || (lpSrc[(i-1)*w+j]>1) || (lpSrc[i*w+(j+1)]>1) || (lpSrc[i*w+(j-1)]>1))
  541.   {
  542.   perim++;
  543.   lpDst[i*w+j]=3;
  544.   }
  545.   }
  546.   }
  547.    // Elongatia
  548.    for(int i=0;i<dwHeight;i++)
  549.   for(int j=0;j<dwWidth;j++)
  550.          if (lpSrc[i*w+j]==0) 
  551.   { 
  552.              if (i>rmax)
  553.     rmax=i;
  554.  if (i<rmin)
  555.     rmin=i;
  556.  if (j>cmax)
  557.     cmax=j;
  558.  if (j<cmin)
  559.     cmin=j;
  560.   }
  561.    E=(cmax-cmin+1)/(rmax-rmin+1);
  562.  
  563.   // proiectiile
  564.    int *HX=new int[dwHeight];
  565.    memset(HX,0,sizeof(int)*dwHeight);
  566.     
  567.    int *WX=new int[dwWidth];
  568.    memset(WX,0,sizeof(int)*dwWidth);
  569.   for(int i=0;i<dwHeight;i++)
  570.   for(int j=0;j<dwWidth;j++)
  571.   {
  572.   if (lpSrc[i*w+j]==0) 
  573.            HX[i]++;
  574.   }
  575. for(int i=0;i<dwHeight;i++)
  576.   for(int j=0;j<dwWidth;j++)
  577.   {
  578.   if (lpSrc[i*w+j]==0) 
  579.            WX[j]++;
  580.   }
  581.    for (int i=0;i<dwHeight;i++)
  582.    for(int j=0;j<HX[i];j++)
  583.           lpDst[i*w+j]=4;
  584.  for (int i=0;i<dwWidth;i++)
  585.    for(int j=0;j<WX[i];j++)
  586.           lpDst[i*w+j]=4;
  587.   msg.Format("Aria %dnCm(%d,%d)nO%fnP %dnE %dn",A,xcm,ycm,arct,perim,E);
  588.   AfxMessageBox(msg);
  589.   END_PROCESSING("Calcule");
  590.  
  591. }
  592. void CDibView::OnProcessingLab5()
  593. {
  594. BEGIN_PROCESSING();
  595.    int  *Labels;
  596.    Labels=new int[w*dwHeight];
  597.    memset(Labels,0,(w*dwHeight)*sizeof(int));
  598.    int crtLabel=1;
  599.    CArray<CPoint,CPoint&>Pair;
  600.       for(int i=dwHeight-2;i>=0;i--)
  601.     for(int j=1;j<dwWidth-1;j++)
  602.  {
  603. int B=lpSrc[(i+1)*w+(j-1)];
  604.  int C=lpSrc[(i+1)*w+j];
  605.  int D=lpSrc[(i+1)*w+(j+1)];
  606.  int A=lpSrc[i*w+(j-1)];
  607.  int X=lpSrc[i*w+j];
  608.  if(X==0)
  609.  {
  610.               if(B!=0)
  611.   if(A!=0)
  612.   if(C!=0)
  613.   if(D!=0)
  614.   Labels[i*w+j]=crtLabel++;  
  615.   else
  616.   Labels[i*w+j]=Labels[(i+1)*w+(j+1)];  
  617.   else
  618.   Labels[i*w+j]=Labels[(i+1)*w+j];
  619.   else 
  620.   if(C!=0)
  621.   if(D!=0)
  622.   Labels[i*w+j]=Labels[i*w+(j-1)]; 
  623.   else
  624.   {
  625.   Labels[i*w+j]=Labels[i*w+(j-1)];
  626.   Pair.Add(CPoint(Labels[i*w + (j-1)],Labels[(i+1)*w+ (j+1)]));
  627.   }
  628.   else
  629.   {
  630.   Labels[i*w+j]=Labels[i*w+(j-1)];
  631.   Pair.Add(CPoint(Labels[i*w + (j-1)],Labels[(i+1)*w+ j])); 
  632.   }
  633.   else if ((C!=0)&&(D==0)) 
  634.          {
  635. Labels[i*w+j]=Labels[(i+1)*w+(j-1)];
  636. Pair.Add(CPoint(Labels[(i+1)*w+(j-1)],Labels[(i+1)*w+ (j+1)])); 
  637.      }
  638.   else
  639.     Labels[i*w+j]=Labels[(i+1)*w+(j-1)]; 
  640.            }
  641. }
  642. int *Union;
  643. Union =new int[crtLabel];
  644.         for (int i=0; i<crtLabel; i++)
  645. Union[i]=i;
  646. int la,lb;
  647.  
  648. for (int i=0; i<Pair.GetSize(); i++)
  649. {
  650. la=Union[Pair[i].x];
  651. lb=Union[Pair[i].y];
  652. for (int i=0;i<crtLabel;i++)
  653. {
  654. if (Union[i]==la)
  655. Union[i]=lb;
  656. }
  657. }
  658. for(int i=dwHeight-2;i>=0;i--)
  659. for(int j=1;j<dwWidth-1;j++){
  660. if(Labels[i*w+j]>0)
  661. lpDst[i*w+j]=Union[Labels[i*w+j]]%254+1;
  662. }
  663.              
  664. for(int k=1;k<254;k++){
  665. bmiColorsDst[k].rgbRed=rand()%255;
  666. bmiColorsDst[k].rgbBlue=rand()%255;
  667. bmiColorsDst[k].rgbGreen=rand()%255;
  668. }
  669. END_PROCESSING ("Lab 5");
  670. }