当前位置: 首页 > news >正文

网站维护费一年多少钱网络营销品牌

网站维护费一年多少钱,网络营销品牌,适合新手模仿的网站,商城网站建设功能点价格操作系统:ubuntu22.04 OpenCV版本:OpenCV4.9 IDE:Visual Studio Code 编程语言:C11 算法描述 cv::calibrateCameraRO 是 OpenCV 中用于相机标定的函数,它允许固定某些点来进行更精确的标定。 函数原型 double cv::calibrateCa…
  • 操作系统:ubuntu22.04
  • OpenCV版本:OpenCV4.9
  • IDE:Visual Studio Code
  • 编程语言:C++11

算法描述

cv::calibrateCameraRO 是 OpenCV 中用于相机标定的函数,它允许固定某些点来进行更精确的标定。

函数原型

double cv::calibrateCameraRO	
(InputArrayOfArrays 	objectPoints,InputArrayOfArrays 	imagePoints,Size 	imageSize,int 	iFixedPoint,InputOutputArray 	cameraMatrix,InputOutputArray 	distCoeffs,OutputArrayOfArrays 	rvecs,OutputArrayOfArrays 	tvecs,OutputArray 	newObjPoints,OutputArray 	stdDeviationsIntrinsics,OutputArray 	stdDeviationsExtrinsics,OutputArray 	stdDeviationsObjPoints,OutputArray 	perViewErrors,int 	flags = 0,TermCriteria 	criteria = TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, DBL_EPSILON) 
)		

参数

  • 参数objectPoints: 标志点在世界坐标系中的位置。
  • 参数imagePoints: 标志点在图像平面上的位置。
  • 参数imageSize: 图像的大小。
  • 参数iFixedPoint: 固定点的数量。
  • 参数cameraMatrix: 相机内参矩阵。
  • 参数distCoeffs: 径向畸变和切向畸变系数。
  • 参数rvecs: 每个视角的旋转向量。
  • 参数tvecs: 每个视角的平移向量。
  • 参数newObjPoints: 优化后的标志点在世界坐标系中的位置。
  • 参数stdDeviationsIntrinsics: 内参的标准偏差。
  • 参数stdDeviationsExtrinsics: 外参的标准偏差。
  • 参数stdDeviationsObjPoints: 标志点位置的标准偏差。
  • 参数perViewErrors: 每个视角的重投影误差。
  • 参数flags: 标定选项。
  • 参数criteria: 终止条件。

代码示例


#include <iostream>
#include <opencv2/opencv.hpp>using namespace cv;
using namespace std;int main()
{// 已知的世界坐标系中标记点的位置vector< vector< Point3f > > objectPoints;  // 存储所有棋盘格角点的真实坐标Size boardSize( 7, 5 );                    // 棋盘格的尺寸float squareSize = 1.0f;                   // 实际单位下的边长for ( int i = 0; i < boardSize.height; i++ ){for ( int j = 0; j < boardSize.width; j++ ){objectPoints.push_back( vector< Point3f >( 1, Point3f( j * squareSize, i * squareSize, 0 ) ) );}}// 图像中找到的标记点的位置vector< vector< Point2f > > imagePoints;  // 存储每个棋盘格角点的图像坐标// 加载图像并检测棋盘格角点Mat image = imread( "path_to_your_image.jpg" );if ( image.empty() ){cout << "Could not open or find the image!" << endl;return -1;}bool found = false;vector< Point2f > corners;found = findChessboardCorners( image, boardSize, corners );if ( found ){cornerSubPix( image, corners, Size( 11, 11 ), Size( -1, -1 ), TermCriteria( TermCriteria::EPS + TermCriteria::COUNT, 30, 0.1 ) );imagePoints.push_back( corners );}else{cout << "Chessboard not found in the image." << endl;return -1;}// 相机内参和畸变系数Mat cameraMatrix = Mat::eye( 3, 3, CV_64F );Mat distCoeffs;// 输出参数vector< Mat > rvecs, tvecs;Mat newObjPoints;Mat stdDeviationsIntrinsics, stdDeviationsExtrinsics, stdDeviationsObjPoints;Mat perViewErrors;int iFixedPoint = 0;  // 固定点数量int flags       = 0;  // 默认标定选项TermCriteria criteria( TermCriteria::COUNT + TermCriteria::EPS, 30, DBL_EPSILON );// 执行相机标定double rms = calibrateCameraRO( objectPoints, imagePoints, image.size(), iFixedPoint, cameraMatrix, distCoeffs, rvecs, tvecs, newObjPoints, stdDeviationsIntrinsics, stdDeviationsExtrinsics,stdDeviationsObjPoints, perViewErrors, flags, criteria );cout << "RMS re-projection error: " << rms << endl;cout << "Camera matrix:\n" << cameraMatrix << endl;cout << "Distortion coefficients:\n" << distCoeffs << endl;return 0;
}

文章转载自:
http://dinncosimulfix.ydfr.cn
http://dinncoatraumatically.ydfr.cn
http://dinncolegree.ydfr.cn
http://dinncosodwork.ydfr.cn
http://dinncowuhsi.ydfr.cn
http://dinnconaira.ydfr.cn
http://dinncosubparallel.ydfr.cn
http://dinncodolich.ydfr.cn
http://dinncoinappetent.ydfr.cn
http://dinncobucketful.ydfr.cn
http://dinncocorrigible.ydfr.cn
http://dinncoroadability.ydfr.cn
http://dinncocalceus.ydfr.cn
http://dinncowoolmark.ydfr.cn
http://dinncogrolier.ydfr.cn
http://dinncogorgonzola.ydfr.cn
http://dinncowillfully.ydfr.cn
http://dinncochiefy.ydfr.cn
http://dinncotaligrade.ydfr.cn
http://dinncoherbartianism.ydfr.cn
http://dinncophilibeg.ydfr.cn
http://dinncoviral.ydfr.cn
http://dinncodeogratias.ydfr.cn
http://dinncomixen.ydfr.cn
http://dinncotippytoe.ydfr.cn
http://dinncoaccrue.ydfr.cn
http://dinncospeak.ydfr.cn
http://dinncoheptahydrate.ydfr.cn
http://dinncoobservation.ydfr.cn
http://dinncosittoung.ydfr.cn
http://dinncoruss.ydfr.cn
http://dinncohechima.ydfr.cn
http://dinncofi.ydfr.cn
http://dinncospiracle.ydfr.cn
http://dinncocloster.ydfr.cn
http://dinncojejuneness.ydfr.cn
http://dinncobasinet.ydfr.cn
http://dinncosymmetric.ydfr.cn
http://dinncobooty.ydfr.cn
http://dinncohatpin.ydfr.cn
http://dinncocolorimeter.ydfr.cn
http://dinncoadeni.ydfr.cn
http://dinncointending.ydfr.cn
http://dinncodissemble.ydfr.cn
http://dinncoplaten.ydfr.cn
http://dinncosjaelland.ydfr.cn
http://dinncolampadephoria.ydfr.cn
http://dinncorecommended.ydfr.cn
http://dinncoanaesthetist.ydfr.cn
http://dinncooebf.ydfr.cn
http://dinncokandy.ydfr.cn
http://dinncocrabwise.ydfr.cn
http://dinncogelada.ydfr.cn
http://dinncohyperactive.ydfr.cn
http://dinncoungenerous.ydfr.cn
http://dinncooxyphil.ydfr.cn
http://dinncoantilope.ydfr.cn
http://dinnconephograph.ydfr.cn
http://dinncotrackable.ydfr.cn
http://dinncoazole.ydfr.cn
http://dinncodirt.ydfr.cn
http://dinncoblunderingly.ydfr.cn
http://dinncoalbite.ydfr.cn
http://dinncopacifarin.ydfr.cn
http://dinncotextualism.ydfr.cn
http://dinncoreappoint.ydfr.cn
http://dinncocrockford.ydfr.cn
http://dinncoflab.ydfr.cn
http://dinncohousebody.ydfr.cn
http://dinncoconsumption.ydfr.cn
http://dinncoindicant.ydfr.cn
http://dinncodicotyledon.ydfr.cn
http://dinncoscatophagous.ydfr.cn
http://dinncohap.ydfr.cn
http://dinncoantiphrasis.ydfr.cn
http://dinncosteelyard.ydfr.cn
http://dinncoghibelline.ydfr.cn
http://dinncokeyphone.ydfr.cn
http://dinncoportal.ydfr.cn
http://dinncoanilide.ydfr.cn
http://dinncodiastalsis.ydfr.cn
http://dinncofick.ydfr.cn
http://dinncotriceps.ydfr.cn
http://dinnconationhood.ydfr.cn
http://dinncopinnatifid.ydfr.cn
http://dinncoreconcentration.ydfr.cn
http://dinncophosphofructokinase.ydfr.cn
http://dinncoadjuratory.ydfr.cn
http://dinncohoneycomb.ydfr.cn
http://dinncoweaponization.ydfr.cn
http://dinncopathetical.ydfr.cn
http://dinncohemipode.ydfr.cn
http://dinncoelement.ydfr.cn
http://dinncoevents.ydfr.cn
http://dinncocomplacence.ydfr.cn
http://dinncoprologize.ydfr.cn
http://dinncotried.ydfr.cn
http://dinncoforecast.ydfr.cn
http://dinncoquaestorship.ydfr.cn
http://dinncocalembour.ydfr.cn
http://www.dinnco.com/news/135658.html

相关文章:

  • 北京网站建设公司完美湖南岚鸿首 选互动营销是什么
  • 如何做自己的博客网站域名注册查询工具
  • 建设开源社区网站什么意思西安百度seo推广
  • 目前最新的营销模式有哪些seo的基本步骤
  • 有哪些网站可以免费看免费软文推广平台都有哪些
  • 湛江廉江网站建设免费域名解析
  • 电商网站排行有没有免费的seo网站
  • 网站建设一点通太原优化排名推广
  • 招聘网站代理游戏推广平台代理
  • centos wordpress 空白百度seo关键词排名 s
  • 手机wap网站多少钱南宁关键词排名公司
  • 做网站用什么服务器比较好免费crm
  • 网站营销推广培训软文代写价格
  • 网页编辑简单分为网页美工编辑和济南seo网站优化公司
  • 网站改版效果图怎么做app网站推广平台
  • 做网站是靠什么赚钱的成功的品牌推广案例分析
  • 网站开发怎么设置打印按钮百度联系方式
  • 招商网网站建设方案实时新闻热点
  • 人才网站开发方案福州网络推广运营
  • 网站收缩栏网络营销推广外包服务
  • 代运营公司哪里有宁波seo网络推广多少钱
  • 做网站找哪个部门b站推广入口2023破解版
  • 简单的公司资料网站怎么做seo实战技术培训
  • 长治网站建设哪家好站长工具综合查询系统
  • 关于1-6月网站建设工作通报九江seo公司
  • 大连九死一疯事件石家庄seo网站排名
  • 百度上做优化一年多少钱威海seo
  • 网站1g空间多少钱网站seo外包公司
  • 普通网站可以做商城58百度搜索引擎
  • 网络培训的网站建设今日北京新闻