Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直在使用Boof CV库进行图像拼接并遵循了这个。
我必须将一些数据类型和方法转换为 android 可接受的。
我想要在 Android BoofCV 中与此等价
T inputA = ConvertBufferedImage.convertFromSingle(imageA, null, imageType);
其中imageA是位图图像。
幸运的是我找到了解决方案
T inputA=ConvertBitmap.bitmapToGray(imageA,null,imageType,null);
看看 ConvertBitmap。它包含您需要的所有功能。