简体   繁体   English

用于图像处理的 Catalano 框架

[英]Catalano framework for image processing

I am developing one java application for image processing ie image binarization,image thinning etc. Somewhere I come to know about the Catalano Framework .I have downloaded the .zip file for that framework.But i did not find any documentation in that jar so that it will tell us我正在开发一个用于图像处理的java应用程序,即图像二值化、图像细化等。我在某处了解了Catalano 框架。我已经下载了该框架的 .zip 文件。但我没有在那个 jar 中找到任何文档,因此它会告诉我们

How to use that framework?如何使用该框架? or Any example using that framework?或使用该框架的任何示例? or How to binarize the image using this framework?或如何使用此框架对图像进行二值化?

So could anyone help me in finding example for Image processing using Catalano Framework .那么任何人都可以帮助我找到使用Catalano Framework进行图像处理的示例。

Contains the documentation in the folder: Documentation\\javadoc\\index.html包含文件夹中的文档:Documentation\\javadoc\\index.html

and the samples in the folder: Samples\\Desktop\\Imaging.和文件夹中的示例:Samples\\Desktop\\Imaging。

Example with binarization:二值化示例:

FastBitmap fb = new FastBitmap("c:\\files\\image.jpg");
fb.toGrayscale();

Threshold t = new Threshold(120);
t.applyInPlace(fb);

JOptionPane.showMessageDialog(null, fb.toIcon());

也许您可以在Aforge框架文档中找到它,因为该库与 Aforge 具有相同的架构。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM