OpenImaj AdaptiveLocalThresholdContrast 空指针异常

OpenImaj AdaptiveLocalThresholdContrast null pointer exception

我正在尝试学习如何使用 OpenImaj 的 AdaptiveLocalThresholdContrast 阈值器将图像处理成两个 "segments",然后查看处理后的图像。当我运行以下代码时:

AdaptiveLocalThresholdContrast thresholder = new AdaptiveLocalThresholdContrast(10);
MBFImage input = ImageUtilities.readMBF(new File("/path/to/file.jpg"));
FImage flat = input.flatten();
DisplayUtilities.display(flat);
thresholder.processImage(flat);
DisplayUtilities.display(flat);

显示原始(扁平化)图像,然后在 thresholder.processImage(flat) 行出现以下空指针异常:

Exception in thread "main" java.lang.NullPointerException
at org.openimaj.image.processing.threshold.AdaptiveLocalThresholdContrast.processImage(AdaptiveLocalThresholdContrast.java:74)

我在第 74 行查看了 AdaptiveLocalThresholdContrast 的源代码,但我不清楚是什么导致了空指针异常。任何帮助将不胜感激。

http://www.openimaj.org/openimaj-image/image-processing/xref/org/openimaj/image/processing/threshold/AdaptiveLocalThresholdContrast.html

嗯,这是一个错误(可能是某个时候重构的结果 - 抱歉)。现在应该在源中得到修复 (https://github.com/openimaj/openimaj/commit/2f247e4ab0f7da02713e8545d4ac153aa08070b8) 并且在最新的“1.4-SNAPSHOT”版本的 jars 中也可用。