gpt4 book ai didi

boofcv.alg.geo.calibration.Zhang99DecomposeHomography.decompose()方法的使用及代码示例

转载 作者:知者 更新时间:2024-03-14 17:41:31 28 4
gpt4 key购买 nike

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

Zhang99DecomposeHomography.decompose介绍

[英]Compute the rigid body motion that composes the homography matrix H. It is assumed that H was computed using Zhang99ComputeTargetHomography.
[中]计算构成单应矩阵H的刚体运动。假设H是使用Zhang99ComputeTargetography计算的。

代码示例

代码示例来源:origin: us.ihmc/DarpaRoboticsChallenge

public boolean estimateCameraPose(BufferedImage leftEye)
{
 if (!hasIntrinsic)
   return false;
 gray.reshape(leftEye.getWidth(), leftEye.getHeight());
 ConvertBufferedImage.convertFrom(leftEye, gray);
 if (!target.process(gray))
   return false;
 if (!computeH.computeHomography(target.getDetectedPoints()))
   return false;
 DenseMatrix64F H = computeH.getHomography();
 targetToOrigin.set(decomposeH.decompose(H));
 return true;
}

代码示例来源:origin: org.boofcv/calibration

/**
 * Find an initial estimate for calibration parameters using linear techniques.
 */
protected Zhang99ParamAll initialParam( List<CalibrationObservation> observations )
{
  status("Estimating Homographies");
  List<DenseMatrix64F> homographies = new ArrayList<>();
  List<Se3_F64> motions = new ArrayList<>();
  for( CalibrationObservation obs : observations ) {
    if( !computeHomography.computeHomography(obs) )
      return null;
    DenseMatrix64F H = computeHomography.getHomography();
    homographies.add(H);
  }
  status("Estimating Calibration Matrix");
  computeK.process(homographies);
  DenseMatrix64F K = computeK.getCalibrationMatrix();
  decomposeH.setCalibrationMatrix(K);
  for( DenseMatrix64F H : homographies ) {
    motions.add(decomposeH.decompose(H));
  }
  status("Estimating Radial Distortion");
  computeRadial.process(K, homographies, observations);
  double distort[] = computeRadial.getParameters();
  return convertIntoZhangParam(motions, K,optimized.assumeZeroSkew, distort,
      optimized.includeTangential);
}

代码示例来源:origin: org.boofcv/boofcv-calibration

/**
 * Find an initial estimate for calibration parameters using linear techniques.
 */
protected boolean linearEstimate(List<CalibrationObservation> observations , Zhang99AllParam param )
{
  status("Estimating Homographies");
  List<DMatrixRMaj> homographies = new ArrayList<>();
  List<Se3_F64> motions = new ArrayList<>();
  for( CalibrationObservation obs : observations ) {
    if( !computeHomography.computeHomography(obs) )
      return false;
    DMatrixRMaj H = computeHomography.getHomography();
    homographies.add(H);
  }
  status("Estimating Calibration Matrix");
  computeK.process(homographies);
  DMatrixRMaj K = computeK.getCalibrationMatrix();
  decomposeH.setCalibrationMatrix(K);
  for( DMatrixRMaj H : homographies ) {
    motions.add(decomposeH.decompose(H));
  }
  status("Estimating Radial Distortion");
  computeRadial.process(K, homographies, observations);
  double distort[] = computeRadial.getParameters();
  convertIntoZhangParam(motions, K,distort, param);
  return true;
}

代码示例来源:origin: us.ihmc/ImageProcessing

Se3_F64 motion = decomposeH.decompose(H);

代码示例来源:origin: us.ihmc/ihmc-perception

return decomposeH.decompose(H);

代码示例来源:origin: us.ihmc/IHMCPerception

return decomposeH.decompose(H);

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com