good resource for exploring image processing in java [closed]

妖精的绣舞 提交于 2020-01-13 05:52:43

问题


I am new to image processing, please suggest some good resources(Books and Weblinks) for learn image processing(best for steganography analysis) in java for beginner as well as advance level.
I have seen documentation provided by oracle, but I want some tutorials and books which focus on the practical environment used in the current development in industries.

Thanks!!


回答1:


Image processing is an extensive field with many theoretical aspects. Learning image processing involves reading books, articles and developing algorithms. You can go even further, investigating the structure of the human eye and neurocognitive aspects of the vision in order to understand the foundations of image observation.

Books:

  1. Digital Image Processing (3rd Edition) by Gonzalez, Rafael C. and Woods, Richard E. (Jun 20, 2012)
  2. Digital Image Processing: An Algorithmic Introduction using Java by Wilhelm Burger and Mark J. Burge (Jan 19, 2012)
  3. Machine Vision, Third Edition: Theory, Algorithms, Practicalities (Signal Processing and its Applications) by Davies, E. R. (Dec 22, 2004)
  4. Vision: A Computational Investigation into the Human Representation and Processing of Visual Information by Marr, David, Ullman, Shimon and Poggio,

Guidance of topics to learn (my opinion):

  1. Introduction to Digital Image Processing
  2. Human Visual System
  3. Color Models
  4. Color Image Processing
  5. Filtering
  6. Image Transformations
  7. Morphological Image Processing
  8. Segmentation
  9. Feature Extraction (edges, lines, corners, etc)
  10. Image Restoration

If you want to recognize objects and patterns, you need to study pattern recognition. It is a complex field with concepts of image processing, statistics, mathematical optimization and machine learning.

As you can see it is long journey. Along with reading, of course you have to implement some computer programs. I think you need to balance between implement your own algorithms and use frameworks. Below is a list of Java frameworks and tools may help you:

  1. ImageJ ( http://rsbweb.nih.gov/ij/index.html): image processing program developed at the National Institutes of Health.
  2. Marvin Framework (http://marvinproject.sourceforge.net/): project that aims to provide an easy to use and extensible framework for image processing and computer vision.
  3. JMagick (http://www.jmagick.org/index.html): Java wrapper for ImageMagick
  4. JAI (enter link description here): Original Sun's Java Advanced Imaging
  5. JIU (http://sourceforge.net/projects/jiu/): Java Image Utilities

Machine learning tools and framework:

  1. Weka ([http://www.cs.waikato.ac.nz/ml/weka/6)

I invite other stackoverflow contributors to improve this post.




回答2:


Have a look at Fiji which is using ImageJ and provides you with a graphical interface for experimentation.



来源:https://stackoverflow.com/questions/19487016/good-resource-for-exploring-image-processing-in-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!