如何对Android平台的图像处理库进行单元测试?
我目前正在开发一个 Android 图像处理库,但我想知道哪种方法最适合对库方法进行单元测试。
我知道图像在设备内部和外部加载的方式可能会导致像素值中的数字不同,因此直接比较矩阵:之前在android环境外部处理的矩阵与内部的矩阵似乎不是一个好方法也没有可靠的方法来做到这一点。
欢迎任何提示和建议。
提前致谢。
I am currently working in an image processing library for Android, but I wonder which way would be the best to unit test the library methods.
I know that the way images are loaded inside and outside of the device may lead to different numbers in the values of the pixels, so comparing matrices directly: previously processed outside android environment, with the ones inside, doesn't seem to be a good nor reliable way to do this.
Any hints and suggestions are welcome.
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
定义您愿意接受的容错能力。这可能是峰值绝对误差、峰值相对误差、SNR 或其他。这取决于您的应用程序正在做什么。
Define an error tolerance that you're willing to accept. This may be peak absolute error, or peak relative error, or SNR, or something else. It depends on what your application is doing.