org.openimaj.math.geometry.shape.Rectangle.clone()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(1.2k)|赞(0)|评价(0)|浏览(137)

本文整理了Java中org.openimaj.math.geometry.shape.Rectangle.clone方法的一些代码示例,展示了Rectangle.clone的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Rectangle.clone方法的具体详情如下:
包路径:org.openimaj.math.geometry.shape.Rectangle
类名称:Rectangle
方法名:clone

Rectangle.clone介绍

暂无

代码示例

代码示例来源:origin: openimaj/openimaj

results.add(current.clone());

代码示例来源:origin: org.openimaj/object-detection

results.add(current.clone());

代码示例来源:origin: openimaj/openimaj

currBB = detectorBB.clone();
  currConf = confDetector;
} else {
  currBB = trackerBB.clone();
  currConf = confTracker;
  if (confTracker > nnClassifier.thetaTP) {
currBB = detectorBB.clone();
currConf = confDetector;

代码示例来源:origin: openimaj/openimaj

final Rectangle r = f.lastMatchBounds.clone();
r.scaleCentroid(this.searchAreaSize);
image.createRenderer().drawShape(r, RGBColour.YELLOW);

代码示例来源:origin: openimaj/openimaj

final Rectangle bounds = face.redetectedBounds.clone();
bounds.height += 10;
bounds.width += 10;

代码示例来源:origin: org.openimaj/demos

final Rectangle bounds = face.redetectedBounds.clone();
bounds.height += 10;
bounds.width += 10;

代码示例来源:origin: openimaj/openimaj

Rectangle searchAreaBounds = f.lastMatchBounds.clone();
searchAreaBounds.scale((float) MultiTracker.TSCALE);
searchAreaBounds.scaleCentroid(searchAreaSize);

相关文章