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.
我试图找出两张图片之间的区别,但是,我正在使用 JavaCV,虽然我找到了一个似乎可以满足我需要的 openCV 函数,但我似乎无法让它工作,因为我不确定我该怎么做在 java 中使用 cvAbsDiff。谁能提供一个我需要哪些导入的示例,以及在哪里可以找到 javaCV 中支持的 openCV 函数的列表?
提前致谢
您可以使用以下形式:
cvAbsDiff(image1, image2, result);
你需要导入
import static com.googlecode.javacv.cpp.opencv_core.*
启用 absdiff。