作者:醒目365_135 | 来源:互联网 | 2024-10-17 10:21
这是我正在尝试使用选定的图像坐标在图像(位图)中找到形状的重心的地方:
float xpos = 0f,ypos = 0f;
PointF currF = new PointF();
for (PointF pointF : pointFArrayList){
xpos += pointF.x;
pos += pointF.y;
}
currF.x = xpos/pointFArrayList.size();
currF.y = ypos/pointFArrayList.size();
addRoundIconToViewRed(currF); //Marking the center of gravity
作为示例,请参见以下图片:
1。首先将位图设置为图像视图
2。获取特定图像视图的中心点
centreX=imageView.getX() + imageView.getWidth() / 2;
centreY=imageView.getY() + imageView.getHeight() / 2;