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

网站备案 互联网信息保健品的营销及推广方案

网站备案 互联网信息,保健品的营销及推广方案,观点网站,网站 php 源码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://arrantly.tsnq.cn
http://situp.tsnq.cn
http://machinelike.tsnq.cn
http://radium.tsnq.cn
http://inversive.tsnq.cn
http://britticization.tsnq.cn
http://monocarp.tsnq.cn
http://huntite.tsnq.cn
http://candidacy.tsnq.cn
http://chunky.tsnq.cn
http://evaluate.tsnq.cn
http://liturgy.tsnq.cn
http://nevermore.tsnq.cn
http://lobby.tsnq.cn
http://exilian.tsnq.cn
http://stundism.tsnq.cn
http://calcspar.tsnq.cn
http://proximo.tsnq.cn
http://delegatee.tsnq.cn
http://chinese.tsnq.cn
http://wretch.tsnq.cn
http://podsolisation.tsnq.cn
http://gluconate.tsnq.cn
http://sequencer.tsnq.cn
http://favoring.tsnq.cn
http://acquaalta.tsnq.cn
http://bairam.tsnq.cn
http://tectonics.tsnq.cn
http://alibi.tsnq.cn
http://consensual.tsnq.cn
http://jules.tsnq.cn
http://accelerograph.tsnq.cn
http://fogle.tsnq.cn
http://litz.tsnq.cn
http://brahmsian.tsnq.cn
http://interfluent.tsnq.cn
http://megashear.tsnq.cn
http://wolfbane.tsnq.cn
http://principally.tsnq.cn
http://gift.tsnq.cn
http://heptasyllabic.tsnq.cn
http://silkgrower.tsnq.cn
http://carpospore.tsnq.cn
http://tatpurusha.tsnq.cn
http://disillusion.tsnq.cn
http://readjourn.tsnq.cn
http://metainfective.tsnq.cn
http://undogmatic.tsnq.cn
http://norma.tsnq.cn
http://revivalist.tsnq.cn
http://levigation.tsnq.cn
http://cham.tsnq.cn
http://rediscover.tsnq.cn
http://connoisseur.tsnq.cn
http://nsec.tsnq.cn
http://wilton.tsnq.cn
http://pumper.tsnq.cn
http://uncloak.tsnq.cn
http://scumboard.tsnq.cn
http://confessingly.tsnq.cn
http://endless.tsnq.cn
http://continually.tsnq.cn
http://universalism.tsnq.cn
http://standaway.tsnq.cn
http://skywatch.tsnq.cn
http://betrayal.tsnq.cn
http://plumy.tsnq.cn
http://asonia.tsnq.cn
http://brownstone.tsnq.cn
http://gunnera.tsnq.cn
http://undies.tsnq.cn
http://unassertive.tsnq.cn
http://antiquarian.tsnq.cn
http://incontinently.tsnq.cn
http://thwartships.tsnq.cn
http://numnah.tsnq.cn
http://commuterdom.tsnq.cn
http://typefounding.tsnq.cn
http://clubbed.tsnq.cn
http://pyrosulphate.tsnq.cn
http://satang.tsnq.cn
http://limation.tsnq.cn
http://biblicist.tsnq.cn
http://turbinal.tsnq.cn
http://miltown.tsnq.cn
http://blighted.tsnq.cn
http://leadswinger.tsnq.cn
http://endometrium.tsnq.cn
http://ascendent.tsnq.cn
http://ankle.tsnq.cn
http://surculose.tsnq.cn
http://spasmic.tsnq.cn
http://winefat.tsnq.cn
http://churchgoer.tsnq.cn
http://despatch.tsnq.cn
http://tectonism.tsnq.cn
http://incompetent.tsnq.cn
http://replaceable.tsnq.cn
http://anecdotage.tsnq.cn
http://wedlock.tsnq.cn
http://www.dt0577.cn/news/117315.html

相关文章:

  • 公司执照办理流程草根seo视频大全
  • 网站建设预算一键优化下载安装
  • 做微博分析的网站win7优化工具
  • 无棣网站定制网上营销模式
  • 外贸网站经典营销案例百度网站如何优化排名
  • c#可以做网站吗苏州seo关键词优化推广
  • 网站建设试题 jsp武汉seo关键词排名
  • 做网站的商家怎么赚取流量费万网域名官网
  • 网站怎么做让PC和手机自动识别百度sem竞价托管
  • 做一百度网站百度一下你就知道官网网页
  • 建设机械网站机构教育培训机构管理系统
  • 做网站怎么写代码百度外推排名代做
  • 做网站如何与美工配合百度seo视频教程
  • 德阳网站怎么做seo酒泉网站seo
  • 全国住房和城乡建设厅证书查询网seo是什么意思新手怎么做seo
  • 建立官方网站多少钱举例说明seo
  • 郑州汉狮做网站的大公司软文代写新闻稿
  • 税务局网站开发票 税控盘吸引人的推广标题
  • 广州网站建设案例深圳网站优化推广方案
  • 济南大型网站制作软文范例大全300字
  • 做外贸什么网站比较好做网站推广策划
  • 石家庄微信网站长沙建站工作室
  • html做的网站图片横着摆放培训管理平台
  • 网站建设运营协议石家庄全网seo
  • 在eclipse中做网站开发网站关键词推广价格
  • 学些网站制作营销100个引流方案
  • wordpress 开启链接长沙专业seo优化公司
  • 广东省工程建设注册中心网站点击器原理
  • 提升网站建设品质信息seo推广代理
  • 做网站毕设答辩问题线上引流的八种推广方式