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.
我正在 Android 上开发一个图像处理应用程序,它使用OpenCV for Android 中的SURF 特征描述符。
我对我的图像进行了图像特征检测,并希望将检测到的特征存储在数据库中。有谁知道如何将带有描述符的 Mat 图像存储到数据库中,我可以在其中检索它以进行处理?
因为从每个图像中获取特征并比较需要大量的处理时间,如果有办法将获取特征存储在 android 的某个地方,那么我可以加快这个过程。
您可以做的是在存储对象之前将其序列化为字节流。这里有一个很好的Android序列化教程——Android序列化教程