你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
FaceRectangle 类
- java.
lang. Object - com.
microsoft. azure. cognitiveservices. vision. computervision. models. FaceRectangle
- com.
public class FaceRectangle
描述人脸矩形的对象。
方法摘要
修饰符和类型 | 方法和描述 |
---|---|
int |
height()
获取高度值。 |
int |
left()
获取左侧值。 |
int |
top()
获取顶部值。 |
int |
width()
获取宽度值。 |
Face |
withHeight(int height)
设置高度值。 |
Face |
withLeft(int left)
设置左侧值。 |
Face |
withTop(int top)
设置顶部值。 |
Face |
withWidth(int width)
设置宽度值。 |
方法详细信息
height
public int height()
获取高度值。
Returns:
高度值
left
public int left()
获取左侧值。
Returns:
左侧值
top
public int top()
获取顶部值。
Returns:
顶部值
width
public int width()
获取宽度值。
Returns:
宽度值
withHeight
public FaceRectangle withHeight(int height)
设置高度值。
Parameters:
height
- 要设置的高度值
Returns:
FaceRectangle 对象本身。
withLeft
public FaceRectangle withLeft(int left)
设置左侧值。
Parameters:
left
- 要设置的左侧值
Returns:
FaceRectangle 对象本身。
withTop
public FaceRectangle withTop(int top)
设置顶部值。
Parameters:
top
- 要设置的顶部值
Returns:
FaceRectangle 对象本身。
withWidth
public FaceRectangle withWidth(int width)
设置宽度值。
Parameters:
width
- 要设置的宽度值
Returns:
FaceRectangle 对象本身。