java.awt.Dimension的平均值

时间:2013-07-09 19:29:36

标签: java awt average dimension

对不起,如果这听起来有点尴尬。任何人都可以帮助您计算图像尺寸的平均尺寸。

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);

如何计算3幅图像的平均大小?

1 个答案:

答案 0 :(得分:1)

Dimension result = new Dimension()
result.width = image1.getWidth() + image2.getWidth() + image3.getWidth();
result.height = image1.getHeight() + image2.getHeight() + image3.getHeight();
result.width /= 3;
result.height /= 3;

基本上,就像你做任何其他平均值一样。