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

android用什么语言开发无锡seo网站管理

android用什么语言开发,无锡seo网站管理,河源建筑设计企业名录黄页,前端开发培训学校第三节 图像颜色处理 1.颜色比较2.GrabCut分割图像3.色调、饱和度以及亮度 1.颜色比较 主要实现逐像素的颜色比较,其中注意BGR颜色空间不连续,不利于颜色提取和区分,转换到Lab空间: int getColorDistance(const cv::Vec3b& c…

第三节 图像颜色处理

  • 1.颜色比较
  • 2.GrabCut分割图像
  • 3.色调、饱和度以及亮度

1.颜色比较

主要实现逐像素的颜色比较,其中注意BGR颜色空间不连续,不利于颜色提取和区分,转换到Lab空间:

	  int getColorDistance(const cv::Vec3b& color1, const cv::Vec3b& color2) const {// 方法一return abs(color1[0]-color2[0])+abs(color1[1]-color2[1])+abs(color1[2]-color2[2]);// 方法二return static_cast<int>(cv::norm<int,3>(cv::Vec3i(color[0]-color2[0],color[1]-color2[1],color[2]-color2[2])));// 方法三 直接使用函数cv::Vec3b dist;cv::absdiff(color,color2,dist);return cv::sum(dist)[0];}// 使用指针遍历图像进行颜色比较Mat process(const Mat &image) {// same size as input image, but 1-channelresult.create(image.size(),CV_8U);// Converting to Lab color space  if (useLab)cv::cvtColor(image, converted, cv::COLOR_BGR2Lab);// get the iteratorsMat_<cv::Vec3b>::const_iterator it= image.begin<Vec3b>();Mat_<cv::Vec3b>::const_iterator itend= image.end<Vec3b>();Mat_<uchar>::iterator itout= result.begin<uchar>();// get the iterators of the converted image if (useLab) {it = converted.begin<cv::Vec3b>();itend = converted.end<cv::Vec3b>();}// 指针遍历for ( ; it!= itend; ++it, ++itout) {// compute distance from target colorif (getDistanceToTargetColor(*it)<maxDist) {*itout= 255;} else {*itout= 0;}// end of pixel processing ----------------}return result;
}

2.GrabCut分割图像

floodFill函数,支持用户选择种子点,opencv依据差异值进行快速处理,比如office中的设置透明色,就类似于该算法的实现

	// testing floodfillcv::floodFill(image,            // input/ouput imagecv::Point(100, 50),         // seed pointcv::Scalar(255, 255, 255),  // repainted color(0,0,0)则是黑色(cv::Rect*)0,  // bounding rectangle of the repainted pixel setcv::Scalar(35, 35, 35),     // low and high difference thresholdcv::Scalar(35, 35, 35),     // most of the time will be identicalcv::FLOODFILL_FIXED_RANGE); // pixels are compared to seed colorcv::namedWindow("Flood Fill result");result = colordetector(image);

GrabCut分割图像通过用户标记前景框,算法为2004年提出,主要是将图像依据颜色相似进行图块分割,然后再使用边缘特征进一步分割,将问题转化为连通图的合并问题,最后以四种类型作为结果输出

	// define bounding rectangle cv::Rect rectangle(50,25,210,180);// the models (internally used)cv::Mat bgModel,fgModel; // segmentation resultcv::Mat result; // segmentation (4 possible values)// GrabCut segmentationcv::grabCut(image,    // input imageresult,   // segmentation resultrectangle,// rectangle containing foreground bgModel, fgModel, // models5,        // number of iterationscv::GC_INIT_WITH_RECT); // use rectangle// Get the pixels marked as likely foreground GC_PR_FGD有四种不同分类结果cv::compare(result,cv::GC_PR_FGD,result,cv::CMP_EQ);// or://	result= result&1;

两种方法对比图下,GrabCut能够有效保留前景要素边缘特征
在这里插入图片描述
最终基于边框提取前景要素:
在这里插入图片描述

3.色调、饱和度以及亮度

将图像转换到连续空间Lab进行处理往往可以获得更为连续的结果,而HSV颜色表示更加符合人类视觉感知

cv::cvtColor(image, hsv, cv::COLOR_BGR2HSV);
cv::cvtColor(hsv,newImage, cv::COLOR_HSV2BGR);
cv::cvtColor(image,brightness, cv::COLOR_Lab2BGR);void detectHScolor(const cv::Mat& image,		// input image double minHue, double maxHue,	// Hue interval double minSat, double maxSat,	// saturation intervalcv::Mat& mask) {				// output mask// convert into HSV spacecv::Mat hsv;cv::cvtColor(image, hsv, cv::COLOR_BGR2HSV);// split the 3 channels into 3 imagesstd::vector<cv::Mat> channels;cv::split(hsv, channels);// channels[0] is the Hue// channels[1] is the Saturation// channels[2] is the Value// Hue maskingcv::Mat mask1; // below maxHuecv::threshold(channels[0], mask1, maxHue, 255, cv::THRESH_BINARY_INV);cv::Mat mask2; // over minHuecv::threshold(channels[0], mask2, minHue, 255, cv::THRESH_BINARY);cv::Mat hueMask; // hue maskif (minHue < maxHue)hueMask = mask1 & mask2;else // if interval crosses the zero-degree axishueMask = mask1 | mask2;// Saturation masking// below maxSatcv::threshold(channels[1], mask1, maxSat, 255, cv::THRESH_BINARY_INV);// over minSatcv::threshold(channels[1], mask2, minSat, 255, cv::THRESH_BINARY);cv::Mat satMask; // saturation masksatMask = mask1 & mask2;// combined maskmask = hueMask&satMask;
}

诸如人体皮肤再HSV颜色域中具有显著的特征
在这里插入图片描述

该节相关代码已上传到个人文档,按需下载链接: 点击下载

http://www.dtcms.com/wzjs/530302.html

相关文章:

  • 上海市住房和城乡建设网站个人网站制作模板主页
  • 建设银行官方网站网络营销策划的基本原则是什么
  • 网站首页轮播图怎么做的app开发工具
  • .net网站开发简介手机优化大师怎么退款
  • 专业网站设计制合肥作简述获得友情链接的途径
  • 做盗版网站吗品牌传播策划方案
  • 渝中网站建设网络销售挣钱吗
  • 网络营销案例分析及答案seo方案书案例
  • 免费建设自己的网站青岛百度快速排名优化
  • 网站开发前端是什么seo外链推广工具
  • opencms做网站 谁惠州seo关键词推广
  • 电商网站储值消费系统兰州网络推广新手
  • 社交网站 ui知乎关键词搜索排名
  • 公司外贸网站网站怎么做优化排名
  • 网站建设与制作教程下载吉林seo关键词
  • 河南红旗渠建设集团网站青岛网站设计公司哪家好
  • 网站运营需要做什么快手seo软件下载
  • 博客网站建设在线培训
  • 东莞证券官网百度推广优化方案
  • 有哪些好的印花图案设计网站网络推广网站排行榜
  • 长沙网站建设工作室广告联盟怎么加入
  • 网站建设培训个人seo是广告投放吗
  • 1688网站登录百度账号快速注册入口
  • html5网站编写安卓手机性能优化软件
  • 全局代理ipseo培训网的优点是
  • dw做网站常用标签怎么查百度搜索排名
  • 网站服务器速度二级域名在线扫描
  • 有关外贸的网站有哪些内容app推广有哪些渠道
  • 公众号做电影网站赚钱谷歌官网网址
  • 网站后台管理密码忘记app宣传推广方案