Guys sorry if this would sound a bit embarrassing. Can anyone help with how to calculate average dimension of image sizes.
Dimension d = new Dimension (d);
//where:
int width = (int)d.getWidth
int heigth = (int)d.getHeigth
===> image size = (width, length);
//Example
image1 = (200, 350);
image2 = (250, 280);
image3 = (340, 260);
How can the average size be calculated for the 3 images???