Home | History | Annotate | Download | only in highgui

Lines Matching full:m_img

367     IplImage* GetImage() { return m_img; };
371 int Width() { return !m_img ? 0 : !m_img->roi ? m_img->width : m_img->roi->width; };
372 int Height() { return !m_img ? 0 : !m_img->roi ? m_img->height : m_img->roi->height;};
373 int Bpp() { return m_img ? (m_img->depth & 255)*m_img->nChannels : 0; };
380 IplImage* m_img;