Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

OpenCV IplImage picture structure

2025-01-17 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

Preface

Most of the corresponding operation functions of IplImage in version 4.0 are obsolete, such as cvCreateImage, so if you need to use it, you can pass the test on version 3.0.

At present, we take the example of docking Rainbow soft SDK as an example to illustrate.

/ / crop the picture

Void CutIplImage (IplImage* src, IplImage* dst, int x, int y)

{

CvSize size = cvSize (dst- > width, dst- > height); / / region size

CvSetImageROI (src, cvRect (x, y, size.width, size.height)); / / set the source image ROI

CvCopy (src, dst); / / copy the image

CvResetImageROI (src); / / clear the ROI after the source image is used up

}

IplImage* img1 = cvLoadImage ("FRU IplImage* img1 2-123.jpg")

IplImage* cutImg1 = cvCreateImage (img1- > width-img1- > width% 4, img1- > height), IPL_DEPTH_8U, img1- > nChannels)

CutIplImage (img1, cutImg1, 0,0)

ASVLOFFSCREEN offscreen1 = {0}

Offscreen1.u32PixelArrayFormat = ASVL_PAF_RGB24_B8G8R8

Offscreen1.i32Width = cutImg1- > width

Offscreen1.i32Height = cutImg1- > height

Offscreen1.pi32Pitch [0] = cutImg1- > widthStep

Offscreen1.ppu8Plane [0] = (MUInt8*) cutImg1- > imageData

Res = ASFDetectFacesEx (handle, & offscreen1, & detectedFaces1)

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report