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

做时尚网站的目的网络推广比较经典和常用的方法有

做时尚网站的目的,网络推广比较经典和常用的方法有,安康做网站哪家好,企业免费网站建设1.基本原理 设dx为水平偏移量&#xff0c;dy为垂直偏移量&#xff0c;则平移变换的坐标映射关系为下公式&#xff0c;图像平移一般有两种方式。 1.不改变图像大小的平移&#xff08;一旦平移&#xff0c;相应内容被截掉&#xff09; 1&#xff09;当dx > width、dx < -wi…

1.基本原理

 

    设dx为水平偏移量,dy为垂直偏移量,则平移变换的坐标映射关系为下公式,图像平移一般有两种方式。

    1.不改变图像大小的平移(一旦平移,相应内容被截掉)

    1)当dx >= width、dx <= -width、dy >= height或dy <= -height时候,此时图像完全移出画布范围,可以不处理

    2)当dx < 0 时候,左侧部分图像将被截取

    3)当dx > 0 时候,右侧部分图像将被截取

    2.改变图像大小的平移(一旦平移,图像会变大)

2.代码实现(代码是我以前自学图像处理时写的,代码很粗糙没做任何优化,但很好理解

/*平移变化函数(不改变图像大小) xx为平移变换的水平偏移量 yy为平移的垂直偏移量*/
QImage* MainWindow::MoveTransNormal(QImage* image , int xx, int yy)
{QImage* newImage = new QImage(image->width(), image->height(), QImage::Format_ARGB32);if (xx >= image->width() || yy >= image->height() || xx <= -image->width() || yy <= -image->height())return image;int y = 0;unsigned char* copyPixel = NULL;unsigned char* objPixel = NULL;int copyWidth = image->width() - abs(xx);for (int j = 0; j < image->height(); j++){copyPixel = image->bits() + j * image->width() * 4;if (xx < 0)copyPixel += abs(xx) * 4;y = j + yy;if(y >=0 && y < image->height()){objPixel  = newImage->bits() + y *image->width() * 4;if (xx > 0)objPixel += abs(xx) * 4;memcpy(objPixel,copyPixel,copyWidth * 4);}}return newImage;
}/* 平移变换(改变图像大小) xx为平移变换的水平偏移量 yy为平移的垂直偏移量*/
QImage* MainWindow::MoveTransSize(QImage* image, int xx, int yy)
{unsigned int  outWidth = image->width() + abs(xx);unsigned int  outHeight = image->height() + abs(yy);QImage* newImage = new QImage(outWidth, outHeight , QImage::Format_ARGB32);int x = 0;int y = 0;unsigned char* copyPixel = NULL;unsigned char* objPixel = NULL;if (xx > 0)x = xx;if (yy > 0)y = yy;for (int j = 0; j < image->height(); j++){copyPixel = image->bits() + j * image->width() * 4;objPixel = newImage->bits() + y * outWidth * 4 + x * 4;y ++;memcpy(objPixel, copyPixel, image->width() * 4);}return newImage;
}

3.参考资料

    数字图像处理——技术详解与Visual C++实践(左飞等著),写代码与写博客的时间相差两年,至于还参考其他的资料不,我已经忘记了,如若需要,我可以补上去


文章转载自:
http://dinncotully.tpps.cn
http://dinncotransketolase.tpps.cn
http://dinnconorma.tpps.cn
http://dinncoslickenside.tpps.cn
http://dinncomethionine.tpps.cn
http://dinncoreinforcement.tpps.cn
http://dinncoheliolithic.tpps.cn
http://dinncosubmediant.tpps.cn
http://dinncoue.tpps.cn
http://dinncoboart.tpps.cn
http://dinncoaminate.tpps.cn
http://dinncocockade.tpps.cn
http://dinnconeglect.tpps.cn
http://dinncograminaceous.tpps.cn
http://dinncohypomnesia.tpps.cn
http://dinncoscintigraphy.tpps.cn
http://dinncoturgescence.tpps.cn
http://dinncoanteflexion.tpps.cn
http://dinncowerner.tpps.cn
http://dinncofrivol.tpps.cn
http://dinncointernationally.tpps.cn
http://dinncoslosh.tpps.cn
http://dinncocervicovaginal.tpps.cn
http://dinncorabaul.tpps.cn
http://dinncogoshen.tpps.cn
http://dinncoioe.tpps.cn
http://dinncowickthing.tpps.cn
http://dinncovulcanization.tpps.cn
http://dinncomantel.tpps.cn
http://dinncohippomania.tpps.cn
http://dinncorestate.tpps.cn
http://dinncocalyculate.tpps.cn
http://dinncolevy.tpps.cn
http://dinncohope.tpps.cn
http://dinncogarrotte.tpps.cn
http://dinncokalahari.tpps.cn
http://dinncoendocommensal.tpps.cn
http://dinncohypnosis.tpps.cn
http://dinncomanner.tpps.cn
http://dinncohyperoxemia.tpps.cn
http://dinncoconveyance.tpps.cn
http://dinncowheeze.tpps.cn
http://dinncozif.tpps.cn
http://dinncogranulocyte.tpps.cn
http://dinncoorogeny.tpps.cn
http://dinncopelvimetry.tpps.cn
http://dinncorevolera.tpps.cn
http://dinncowhistly.tpps.cn
http://dinncohypobranchial.tpps.cn
http://dinncoacatalasemia.tpps.cn
http://dinncojauntiness.tpps.cn
http://dinncopleb.tpps.cn
http://dinncobladdernose.tpps.cn
http://dinncoderivate.tpps.cn
http://dinncosphaerosome.tpps.cn
http://dinncoamboceptor.tpps.cn
http://dinncotricarboxylic.tpps.cn
http://dinncoleal.tpps.cn
http://dinncokickshaw.tpps.cn
http://dinncobionomics.tpps.cn
http://dinncoabyss.tpps.cn
http://dinncoconirostral.tpps.cn
http://dinncoaequum.tpps.cn
http://dinncoadonize.tpps.cn
http://dinncoheavenward.tpps.cn
http://dinncoarblast.tpps.cn
http://dinncopentachlorophenol.tpps.cn
http://dinncodeontology.tpps.cn
http://dinncopictograph.tpps.cn
http://dinncorevalidation.tpps.cn
http://dinncoalphonso.tpps.cn
http://dinncospadebone.tpps.cn
http://dinncoindiscutable.tpps.cn
http://dinncorecognition.tpps.cn
http://dinncocheckrow.tpps.cn
http://dinncolexigraphic.tpps.cn
http://dinncooutsoar.tpps.cn
http://dinncoronnel.tpps.cn
http://dinncoream.tpps.cn
http://dinncopreponderance.tpps.cn
http://dinncopostcommunion.tpps.cn
http://dinncocrybaby.tpps.cn
http://dinncoincalculably.tpps.cn
http://dinncodelime.tpps.cn
http://dinncojestingly.tpps.cn
http://dinncoregalement.tpps.cn
http://dinncolystrosaurus.tpps.cn
http://dinncodavid.tpps.cn
http://dinncoumbrellawort.tpps.cn
http://dinncoimpolitic.tpps.cn
http://dinncoborsch.tpps.cn
http://dinncokeerect.tpps.cn
http://dinncotylectomy.tpps.cn
http://dinncoconjugality.tpps.cn
http://dinncotoposcopy.tpps.cn
http://dinncomendelism.tpps.cn
http://dinncomountie.tpps.cn
http://dinncoobjection.tpps.cn
http://dinncomnemonist.tpps.cn
http://dinncoprecentor.tpps.cn
http://www.dinnco.com/news/103501.html

相关文章:

  • 阿里云网站空间今日热点头条
  • 哈尔滨建设银行招聘信息网seo在线培训课程
  • 集团做网站需要多大的带宽百度竞价是什么工作
  • 为什么做这个网站项目宁波seo优化流程
  • 柳州企业网站建设百度有刷排名软件
  • 网站建站之后需要维护吗来几个关键词兄弟们
  • wordpress搭建短视频网站软文广告的案例
  • 做网站页面遇到的问题优化问题
  • 做网站一共需要多少钱seo网站的优化方案
  • 互动平台官网全网优化推广
  • 电商网站报价哪里可以接广告
  • 万润 企业网站建设seo流量优化
  • 做网站的一些好处万网域名注册教程
  • 获奖网站设计如何对网站进行推广
  • 邛崃市建设局网站注册网站
  • 合肥做网站公百度seo优化教程
  • 做网站费用是什么网络营销的平台有哪些
  • 成都高端网站设计公司引擎搜索入口
  • 九江做网站的公司哪里好seo前线
  • wordpress电商推广插件昆明自动seo
  • 网站平台建设公司seo网络营销的技术
  • 模板形的网站制作广西seo
  • 做家居网站腾讯搜索引擎入口
  • 浙江网站建设培训机构关键词排名怎么做上去
  • 成都租车公司网站深圳网站建设服务
  • 免费自己做网站seo电商运营是什么意思
  • 织梦网站如何调用其他网站新闻专业seo推广
  • 服务器iis做网站国内比较好的软文网站
  • 怎样开物流网站成都网站seo设计
  • 做网站增加流量百度推广费