Hey, there are a set of java image processing classes I want to use.
It is a library online... "JHLabs Java Image processing"...
Download Java Image Processing Classes
The java docs are here...
com.jhlabs.image
For example the class EdgeFilter ... I cant use because the the method that actually does the Edge filtering is a protected method
...
protected int[] filterPixels( int width, int height, int[] inPixels, Rectangle transformedSpace )
....
Same with ErodeFilter etc.. I can make instances of these classes but I cant use its actual necessary function.
That is same with all the image classes that I want to use.
Is there anything I am missing... How can I possibly use this library of classes with the netbeans project that I am doing. (I have imported the jar file library this comes with)
Thanks in advance.