기본 콘텐츠로 건너뛰기

라벨이 cvvimage인 게시물 표시

IplImage to DC

......... {      .....      DrawIplToHDC(iplBufColor, IDC_STA_IMAGE); } void DrawIplToHDC(IplImage *image, UINT ID) {       CDC* pDC = GetDlgItem(ID)->GetDC();       CRect rcView;       GetDlgItem(ID)->GetClientRect(&rcView);       CvvImage* cvvImgage;       cvvImgage->CopyOf(image);       cvvImgage->DrawToHDC(pDC->GetSafeHdc(), &rcView);       ReleaseDC(pDC); }