简体   繁体   中英

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

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 .

Contains the documentation in the folder: Documentation\\javadoc\\index.html

and the samples in the folder: 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 具有相同的架构。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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