正在加载今日诗词....
Topic

iOS

A collection of 40 issues

OpenCV: 颜色空间转换 cvtColor()出错

先看iOS代码 + (UIImage *)convertImage:(UIImage *)image{ Mat input, result; UIImageToMat(image, input); // 转换通道 if (input.channels() == 4) { cv::cvtColor(input, input, CV_BGRA2GRAY); } else { cv::cvtColor(input, input, CV_BGR2GRAY); } // ... 省略处理input 得到 result result = sdk.scan(input); UIImage *output = MatToUIImage(result); return output; } 上面的代码在转换颜色通道的时候,出现问题. 调用int cv::Mat::channels()得到的数值,可能是
2 min read

Reveal - 界面调试利器

Reveal * 时时查看 真机或模拟器 的UI 显示 情况; * 界面动态修改UI 控件的参数,无需代码,无需重启程序 一切 xib 中有的参数,都可以调整,包括约束更新 * 对于越狱机器 , 还可以在逆向工程中大展拳脚, 学习他人的 布局技巧 推荐使用官方最新教程 Reveal 的安装与配置问题 然而,上述好处的 所有种种, 前提是 你配置好了 相关的 软件. 下面我就将我遇到的相关问题 和 解决办法 罗列出来, 希望其他人不要再踩坑. 动态方式配置 Reveal <推荐方式> OC模拟器 首先创建lldb指令文件 vim ~/.lldbinit 千万 千万不要粘贴错误. 如果经过一下步骤,仍然出问题, 先检查一遍这个文件. 检查方法,首先将本隐藏文件显示出来,
6 min read

Subscribe to JAY 站 | Share Thoughts

Don’t miss out on the latest issues. Sign up now to get access to the library of members-only issues.
jamie@example.com
Subscribe