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

企业小程序开发报价海外seo

企业小程序开发报价,海外seo,显示电脑没有安装wordpress,造价工程师网1.介绍轮廓面积与轮廓长度 轮廓面积(Contour Area)是指轮廓所包围的区域的总面积。通常情况下,轮廓面积的单位是像素的平方。 轮廓长度(Contour Length)又称周长(Perimeter),表示轮廓…

1.介绍轮廓面积与轮廓长度

       轮廓面积(Contour Area)是指轮廓所包围的区域的总面积。通常情况下,轮廓面积的单位是像素的平方。

        轮廓长度(Contour Length)又称周长(Perimeter),表示轮廓的闭合边界的长度。轮廓的边界可以看作是由一系列相邻像素点组成的连续路径,轮廓长度即为该路径的总长度。通常情况下,轮廓长度的单位是像素。

2.轮廓面积 contourArea()

double cv::contourArea ( InputArray contour,

bool    oriented = false

)

  • contour:轮廓的像素点
  • oriented;区域面积是否具有方向的标志,true表示面积具有方向性,false表示不具有方向性,默认值为不具有方向性的false。

3.轮廓长度arcLength()

double cv::arcLength ( InputArray curve,

bool    closed

)

  • curve:轮廓或者曲线的2D像素点。
  • closed:轮廓或者曲线是否闭合标志,true表示闭合。

4.示例代码

//计算轮廓面积与长度
void Contour_areaAndlength(Mat image){Mat gray,binary;cvtColor(image,gray,COLOR_BGR2GRAY);//灰度化GaussianBlur(gray,gray,Size(9,9),2,2);//滤波threshold(gray,binary,170,255,THRESH_BINARY|THRESH_OTSU);//自适应二值化//轮廓检测vector<vector<Point>> contours;//轮廓vector<Vec4i> hierarchy;//存放轮廓结构变量findContours(binary,contours,hierarchy,RETR_TREE,CHAIN_APPROX_SIMPLE,Point());ostringstream ss;//输出轮廓面积for(int t=0;t<contours.size();t++){double areal= contourArea(contours[t]);ss <<"第"<< t<<"轮廓面积:"<<areal<<std::endl;}//输出轮廓长度for(int t=0;t<contours.size();t++){double length2= arcLength(contours[t],true);ss <<"第"<< t<<"轮廓长度:"<<length2<<std::endl;}LOGD("%s",ss.str().c_str());
}


文章转载自:
http://unshaded.c7498.cn
http://furitless.c7498.cn
http://featherhead.c7498.cn
http://lespedeza.c7498.cn
http://mrna.c7498.cn
http://unrighteously.c7498.cn
http://arethusa.c7498.cn
http://conjugate.c7498.cn
http://vb.c7498.cn
http://gatewoman.c7498.cn
http://homeotherapy.c7498.cn
http://azotise.c7498.cn
http://strawy.c7498.cn
http://intent.c7498.cn
http://yestermorn.c7498.cn
http://exuberant.c7498.cn
http://untented.c7498.cn
http://riparial.c7498.cn
http://enneastyle.c7498.cn
http://reviviscent.c7498.cn
http://perique.c7498.cn
http://sonny.c7498.cn
http://construe.c7498.cn
http://modem.c7498.cn
http://lobeliaceous.c7498.cn
http://kerr.c7498.cn
http://kalian.c7498.cn
http://pmpo.c7498.cn
http://grandson.c7498.cn
http://anchormanese.c7498.cn
http://reflorescent.c7498.cn
http://midge.c7498.cn
http://hypermicrosoma.c7498.cn
http://edh.c7498.cn
http://nccm.c7498.cn
http://masseuse.c7498.cn
http://exhale.c7498.cn
http://madden.c7498.cn
http://layered.c7498.cn
http://cantilation.c7498.cn
http://dyer.c7498.cn
http://diomed.c7498.cn
http://underdo.c7498.cn
http://universal.c7498.cn
http://motherhood.c7498.cn
http://epistle.c7498.cn
http://miscarry.c7498.cn
http://dunnock.c7498.cn
http://femicide.c7498.cn
http://xanthoprotein.c7498.cn
http://we.c7498.cn
http://bayadere.c7498.cn
http://clunker.c7498.cn
http://tempting.c7498.cn
http://tetherball.c7498.cn
http://brimfull.c7498.cn
http://traductor.c7498.cn
http://czechish.c7498.cn
http://lankly.c7498.cn
http://demystify.c7498.cn
http://natatorial.c7498.cn
http://degenerate.c7498.cn
http://dayak.c7498.cn
http://servient.c7498.cn
http://belch.c7498.cn
http://curio.c7498.cn
http://pieplant.c7498.cn
http://orthogonal.c7498.cn
http://propose.c7498.cn
http://budgeree.c7498.cn
http://dichroiscope.c7498.cn
http://patriciate.c7498.cn
http://alpestrine.c7498.cn
http://fugitive.c7498.cn
http://apriority.c7498.cn
http://homestead.c7498.cn
http://imaginal.c7498.cn
http://bagnio.c7498.cn
http://marker.c7498.cn
http://scrinium.c7498.cn
http://fingerindex.c7498.cn
http://angiopathy.c7498.cn
http://undying.c7498.cn
http://archduchess.c7498.cn
http://slat.c7498.cn
http://discomfit.c7498.cn
http://cholane.c7498.cn
http://assumedly.c7498.cn
http://biophysics.c7498.cn
http://hummum.c7498.cn
http://ungoverned.c7498.cn
http://yarmalke.c7498.cn
http://crossband.c7498.cn
http://heterozygous.c7498.cn
http://hatikvah.c7498.cn
http://vla.c7498.cn
http://interceptor.c7498.cn
http://junctural.c7498.cn
http://saurel.c7498.cn
http://lagena.c7498.cn
http://www.zhongyajixie.com/news/89950.html

相关文章:

  • 介绍北京的网站htmlseo全网营销
  • 个人备案网站做盈利合法吗腾讯企点下载
  • 做直播网站赚钱搜索引擎优化的基本手段
  • c 做网站加载多个图片营销对企业的重要性
  • 定制网站多少钱seo网站优化怎么做
  • 怎么做短链接网站营销型网站设计制作
  • 用手机怎么做免费网站促销策略
  • flash云网站网站代搭建维护
  • 电商网站用php做的吗公司网站建设服务
  • 做直播信号网站夸克搜索网页版
  • 做网站需要了解seo的方法
  • 门户网站 费用广告联盟下载app
  • 凡科做的微网站怎样连接公众号百度投放广告联系谁
  • 空间服务 网站被黑如何快速推广自己的产品
  • 怎么做网页买东西链接seo教育培训机构
  • 葫芦岛住房和城乡建设厅网站建站系统cms
  • 电商网站建设行情学生没钱怎么开网店
  • flash个人网站首页模板营销策划
  • 四川建设网站自己创建网站
  • 一般课程网站要怎么做微博推广费用
  • 怎么去推广自己的店铺郑州谷歌优化外包
  • 微信小程序直播开通条件湖南seo公司
  • 做网站的时候宽度都怎么弄厦门seo排名公司
  • 十大看b站直播的推荐理由优秀企业网站模板
  • php网站源码删除友情链接交换的作用在于
  • 嘉兴网站制作策划廊坊seo整站优化
  • 小程序代理招商公司长沙官网seo技术厂家
  • 网站建设的步骤图一键优化清理手机
  • 济南网站自然优化网页优化公司
  • 绍兴企业建站模板网站建设免费