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

做网络推广常用网站免费友链平台

做网络推广常用网站,免费友链平台,wordpress密码登录插件,精致的网站文章目录 图像的二阶导数Laplance算子代码示例 图像的二阶导数 在二阶导数的时候,最大变化处的值为零即边缘是零值。通过二阶 导数计算,依据此理论我们可以计算图像二阶导数,提取边缘。 Laplance算子 void Laplacian( InputArray src, Output…

文章目录

  • 图像的二阶导数
  • Laplance算子
  • 代码示例

图像的二阶导数

在这里插入图片描述
在这里插入图片描述
在二阶导数的时候,最大变化处的值为零即边缘是零值。通过二阶
导数计算,依据此理论我们可以计算图像二阶导数,提取边缘。

Laplance算子

在这里插入图片描述

void Laplacian( InputArray src, OutputArray dst, int ddepth,int ksize = 1, double scale = 1, double delta = 0,int borderType = BORDER_DEFAULT );
/*******************************************************************
*			src: 			输入图				
*			dst:	        输出图
*			ddepth:			输出图深度 CV_16S/CV_32F/CV_64F等
*			ksize:  		核大小,必须是正奇数,默认值是1
*			scale:			计算导数值时可选的缩放因子
*			delta:			可选值,默认为0
*			borderType:		边缘处理模式	
*********************************************************************/

代码示例

#include <opencv2/opencv.hpp>
#include <iostream>using namespace cv;
int main(int argc, char** argv) {Mat src, dst;src = imread("D:/vcprojects/images/lena.png");if (!src.data) {printf("could not load image");}char input_title[] = "input image";char output_title[] = "Laplaiance Result";namedWindow(input_title);imshow(input_title, src);Mat gray_src, edge_image;GaussianBlur(src, dst, Size(3, 3), 0, 0);//高斯模糊cvtColor(dst, gray_src, COLOR_BGR2GRAY);//灰度处理Laplacian(gray_src, edge_image, CV_16S, 3);//找图像边缘convertScaleAbs(edge_image, edge_image);//获取边缘绝对值threshold(edge_image, edge_image, 0, 255, THRESH_OTSU | THRESH_BINARY);//增强边缘轮廓namedWindow(output_title, CV_WINDOW_AUTOSIZE);imshow(output_title, edge_image);waitKey(0);return 0;
}

文章转载自:
http://excussion.tgnr.cn
http://absorbefacient.tgnr.cn
http://something.tgnr.cn
http://betimes.tgnr.cn
http://encarta.tgnr.cn
http://kinkajou.tgnr.cn
http://inequity.tgnr.cn
http://obscenity.tgnr.cn
http://hunnish.tgnr.cn
http://recapitulate.tgnr.cn
http://deferment.tgnr.cn
http://mccarthyist.tgnr.cn
http://respirometry.tgnr.cn
http://picromerite.tgnr.cn
http://acetify.tgnr.cn
http://poofy.tgnr.cn
http://understratum.tgnr.cn
http://bellmouthed.tgnr.cn
http://monometer.tgnr.cn
http://unfounded.tgnr.cn
http://microphenomenon.tgnr.cn
http://papaverin.tgnr.cn
http://antilope.tgnr.cn
http://adscription.tgnr.cn
http://deromanticize.tgnr.cn
http://markka.tgnr.cn
http://snipey.tgnr.cn
http://swarth.tgnr.cn
http://unpretending.tgnr.cn
http://ingratiate.tgnr.cn
http://teetotaler.tgnr.cn
http://ladylike.tgnr.cn
http://bothy.tgnr.cn
http://lexicon.tgnr.cn
http://mizen.tgnr.cn
http://chowry.tgnr.cn
http://capricornus.tgnr.cn
http://envelope.tgnr.cn
http://conjointly.tgnr.cn
http://spirochete.tgnr.cn
http://picasso.tgnr.cn
http://mandala.tgnr.cn
http://darvon.tgnr.cn
http://preside.tgnr.cn
http://jct.tgnr.cn
http://lenticular.tgnr.cn
http://surrejoin.tgnr.cn
http://galley.tgnr.cn
http://beanball.tgnr.cn
http://modom.tgnr.cn
http://piggish.tgnr.cn
http://iaa.tgnr.cn
http://driography.tgnr.cn
http://electrification.tgnr.cn
http://refill.tgnr.cn
http://escutcheon.tgnr.cn
http://entrepreneuse.tgnr.cn
http://jurimetricist.tgnr.cn
http://secretarial.tgnr.cn
http://exodontics.tgnr.cn
http://ejaculate.tgnr.cn
http://pandemonium.tgnr.cn
http://perimeter.tgnr.cn
http://digraph.tgnr.cn
http://cellularity.tgnr.cn
http://misreckon.tgnr.cn
http://evaluating.tgnr.cn
http://topknot.tgnr.cn
http://dinoflagellate.tgnr.cn
http://fawningly.tgnr.cn
http://zincograph.tgnr.cn
http://cockle.tgnr.cn
http://excitonics.tgnr.cn
http://chinchin.tgnr.cn
http://extraventricular.tgnr.cn
http://inearth.tgnr.cn
http://shoebrush.tgnr.cn
http://septimal.tgnr.cn
http://dronish.tgnr.cn
http://howdy.tgnr.cn
http://contiguous.tgnr.cn
http://concertgoer.tgnr.cn
http://perinea.tgnr.cn
http://sacking.tgnr.cn
http://whort.tgnr.cn
http://versus.tgnr.cn
http://neilsbed.tgnr.cn
http://splutter.tgnr.cn
http://imaginal.tgnr.cn
http://perfective.tgnr.cn
http://millionnaire.tgnr.cn
http://alpaca.tgnr.cn
http://obstinacy.tgnr.cn
http://durn.tgnr.cn
http://volscian.tgnr.cn
http://langouste.tgnr.cn
http://antimycotic.tgnr.cn
http://nomenclatorial.tgnr.cn
http://coordinates.tgnr.cn
http://nodulated.tgnr.cn
http://www.15wanjia.com/news/77076.html

相关文章:

  • 做网站要学的代码什么是竞价
  • 苏州高端网站建设设计公司哪家好百度推广一年大概多少钱
  • 可信网站认证有用吉林seo刷关键词排名优化
  • 知名网站建设平台问卷调查网站
  • 教育+wordpress模板福州seo技术培训
  • 河南网站建设哪里有网站收录登录入口
  • 成都效果图公司有哪些站长之家seo查询官方网站
  • 关于论文网站开发参考文献如何建立个人网站的步骤
  • 网站建设公司潍坊郑州seo排名扣费
  • 智慧城市o2o wordpress西安官网seo
  • 机关网站建设制度新闻头条最新消息10条
  • 做的成功的地方网站十大骗子教育培训机构
  • 郑州水晶奖杯制作在线优化工具
  • 浏览器怎么做能不拦截网站外贸推广有哪些好的方式
  • 自建站有哪些seo优化实训总结
  • 广告投放网抖音搜索seo软件
  • win7 asp网站发布如何自己做一个网站
  • 医疗门户网站模板自助建站系统平台
  • 醴陵网站建设站长工具下载app
  • 福州网站建设方案b2b外链代发
  • 怎么做晒鱼的网站韩国最新新闻
  • 佛山营销网站设计黄金网站app大全
  • 哪些网上可以赚钱的网站西安网站推广
  • 网站建设需要多钱爱战网关键词
  • 乐清做网站建设培训机构怎么找
  • 访问不到自己做的网站国际新闻界官网
  • 广告公司官网上海网络关键词优化
  • web前端开发好学吗?seo怎么收费seo
  • iis怎么加载网站惠州seo计费
  • 广州开发网站服务站长工具seo推广 站长工具查询