我正在尝试从其他几个多通道矩阵创建一个多通道矩阵。 OpenCV <application
android:icon="@mipmap/ic_launcher"
android:usesCleartextTraffic="true"
android:label="@string/app_name"
android:theme="@style/AppTheme">
...
</application>
提供的功能是将几个单通道矩阵合并为一个。当用于合并多通道矩阵时,它提供不完整/错误的结果。
我对这个问题的解决方法:
cv::merge()
这种方法太慢了。将6个颜色矩阵合并为一个18通道矩阵(Intel Core i5 3.2GHz)需要27 ms。有其他方法吗?