Java中的图像和音频特征提取
我正在寻找可用于为给定图像或音频文件创建特征向量的 Java 库。
例如,如果输入是 322.bmp,则输出将类似于
322.bmp 93.444 22.998 2.000 3.125 etc.
其中每个数字对应于一个图像特征,例如粗糙度、对比度、方向性等等...
我尝试使用 jAudio 来处理音频文件,但是对于由于某种原因我无法让它工作。至于图像,我没有找到任何相关的东西。
预先感谢您的任何帮助。
I am looking for Java libraries that can be used to create feature vectors for a given image or audio file.
For example, if the input was 322.bmp the output would be something like
322.bmp 93.444 22.998 2.000 3.125 etc.
where each one of those numbers corresponds to an image feature such as coarseness, contrast, directionality and so on...
I tried using jAudio for the audio files but for some reason I couldn't get it to work. As for the images I didn't find anything relevant.
Thanks in advance for any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试搜索 C/C++ 实现,然后通过 JNI 附加它们或将它们转换为 Java。
Try to search for C/C++ implementations and then attach them via JNI or translate them to Java.