gpt4 book ai didi

ios - 没有匹配函数调用 'MatToUIImage'

转载 作者:行者123 更新时间:2023-11-28 21:00:56 24 4
gpt4 key购买 nike

我正在使用 OpenCV Contrib 框架来执行面部识别。我需要将 cv::Mat 转换为 UIImage。但是,当我调用 MatToUIImage 函数时出现错误。

No matching function for call to 'MatToUIImage'

这是我正在使用的代码...

MatToUIImage(face, outcome);

face 是一个 cv::Mat,outcome 是一个 UIImage。

我做错了什么?

最佳答案

查看 open source on GitHub ,看起来原型(prototype)实际上是:

UIImage* MatToUIImage(const cv::Mat& image);

这意味着您真正想要的函数只需要一个参数(您的 cv::Mat)并返回 UIImage

即.

UIImage *outcome = MatToUIImage(face);

关于ios - 没有匹配函数调用 'MatToUIImage',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48959327/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com