0

我必须在 JAVA 中为我的项目做很多图像过滤器(你能想象到的)(我使用 JAVA JAI)。除了 Paul L. Rosin 的单峰阈值,我已经完成了所有工作。我在c++上只找到了这个文档和实现。不幸的是,我在 C++ 中很糟糕。你能帮我吗?谢谢!

4

1 回答 1

1

只需使用Catalano 框架。这非常容易和快速。示例文件夹中有很多示例。

import Catalano.Imaging.Filters;
// If you want to use parallel processing. Change the namespace for:
// import Catalano.Imaging.Concurrent.Filters;

FastBitmap fb = new FastBitmap(bufferedImage);
fb.toGrayscale();

RosinThreshold rosin = new RosinThreshold();
rosin.applyInPlace(fb);
于 2013-09-23T02:08:08.077 回答