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

廊坊快速排名优化网站优化 福州

廊坊快速排名优化,网站优化 福州,jq插件网站,企业网站建设的内容引言 在numpy知识库:深入理解numpy.resize函数和数组的resize方法中,小编较为详细地探讨了numpy的resize函数背后的机理。从结果来看,numpy.resize函数并不适合对图像进行缩放操作。而opencv中的resize函数虽然和numpy的resize函数同名&…

引言

在numpy知识库:深入理解numpy.resize函数和数组的resize方法中,小编较为详细地探讨了numpy的resize函数背后的机理。从结果来看,numpy.resize函数并不适合对图像进行缩放操作。而opencv中的resize函数虽然和numpy的resize函数同名,但却支持图像的缩放操作。

需求场景

欲对高为384,宽为512的图像进行放大或缩小。

生成初始图像

代码如下:

import cv2
import numpy as np# 生成初始图像
img = np.zeros((384, 512), dtype=np.uint8) 
img[172:212, 32:-32] = 255
print(img.shape) # (高,宽) ---> (384, 512)cv2.imshow('img', img)
cv2.waitKey(0)

在这里插入图片描述

将初始图像的【高】放大一倍(384 --> 768)

代码如下:

import cv2
import numpy as np# 生成初始图像
img = np.zeros((384, 512), dtype=np.uint8)
img[172:212, 32:-32] = 255
H, W = img.shape # img.shape 分别记录了图像的【高】和【宽】 --> 【高前宽后】
print("before", H, W) # 384 512# 可行的方案1 ———— 使用cv2.resize函数的dsize参数指定输出图像的宽高
# dsize的第一个参数指定的是输出图像的【宽】,第二个才是【高】 --> 【宽前高后】
# --> 与img.shape正好相反,使用cv2.resize函数的dsize参数需要特别注意。
img = cv2.resize(img, dsize=(W, H*2)) # 注意dsize参数的使用方式# 可行的方案2 ———— 使用cv2.resize函数的fy参数
# 要点1: fy=2表示沿着y轴(高)方向放大一倍;
# 要点2: fx=1虽然没有起到作用,但不可省略;
# 要点3: dsize参数必须设置为None;
img = cv2.resize(img, dsize=None, fx=1, fy=2)) # 沿着高的方向将初始图像放大一倍
# fx = 2, fy = 1 ---> 宽放大一倍,高保持不变
# fx = 0.5, fy = 1 ---> 宽缩小为原来1/2,高保持不变
# fx = 1, fy = 0.5 ---> 高缩小为原来1/2,宽保持不变# 打印新图像大小
new_H, new_W = img.shape
print("after", new_H, new_W) # 768 512# 显示图像
cv2.imshow('img', img)
cv2.waitKey(0)

运行结果:
在这里插入图片描述

在这里插入图片描述

结束语

如果本博文对你有所帮助,可以点个赞/收藏支持一下,如果能够持续关注,小编感激不尽~
小编会坚持创作,持续优化博文质量,以小见大,给读者带来更好的阅读体验~


文章转载自:
http://dinncouncomely.ssfq.cn
http://dinncoleveret.ssfq.cn
http://dinncohoodlum.ssfq.cn
http://dinncoinaccuracy.ssfq.cn
http://dinncologginess.ssfq.cn
http://dinncofaunus.ssfq.cn
http://dinncoendangered.ssfq.cn
http://dinncorhetorically.ssfq.cn
http://dinncoswiften.ssfq.cn
http://dinncofaineancy.ssfq.cn
http://dinncoserotype.ssfq.cn
http://dinncoinformercial.ssfq.cn
http://dinncoobadiah.ssfq.cn
http://dinncosubception.ssfq.cn
http://dinncobazookier.ssfq.cn
http://dinncodoge.ssfq.cn
http://dinncorogation.ssfq.cn
http://dinncophenogam.ssfq.cn
http://dinncocompetent.ssfq.cn
http://dinncothalami.ssfq.cn
http://dinncoincant.ssfq.cn
http://dinncominicom.ssfq.cn
http://dinncoindicate.ssfq.cn
http://dinncosemisolid.ssfq.cn
http://dinncogeneralitat.ssfq.cn
http://dinncoplasmasol.ssfq.cn
http://dinncopriestling.ssfq.cn
http://dinncowham.ssfq.cn
http://dinncosoviet.ssfq.cn
http://dinncojacksonian.ssfq.cn
http://dinncoparlay.ssfq.cn
http://dinncocsce.ssfq.cn
http://dinncoannouncing.ssfq.cn
http://dinncouranalysis.ssfq.cn
http://dinncobeg.ssfq.cn
http://dinncosweathog.ssfq.cn
http://dinncospiroscope.ssfq.cn
http://dinncolatakia.ssfq.cn
http://dinncoanyone.ssfq.cn
http://dinncopointillism.ssfq.cn
http://dinncofactory.ssfq.cn
http://dinncoscolex.ssfq.cn
http://dinncospirituous.ssfq.cn
http://dinncoabd.ssfq.cn
http://dinncoodorize.ssfq.cn
http://dinncoplethoric.ssfq.cn
http://dinncobroma.ssfq.cn
http://dinncotumesce.ssfq.cn
http://dinncoribbed.ssfq.cn
http://dinncogiant.ssfq.cn
http://dinncoputridness.ssfq.cn
http://dinncozooks.ssfq.cn
http://dinncomusicologist.ssfq.cn
http://dinncotankfuls.ssfq.cn
http://dinncodiversion.ssfq.cn
http://dinncoelastic.ssfq.cn
http://dinncopsa.ssfq.cn
http://dinncoyclept.ssfq.cn
http://dinncoligure.ssfq.cn
http://dinncocompactible.ssfq.cn
http://dinncoorestes.ssfq.cn
http://dinncobasebred.ssfq.cn
http://dinncomoppie.ssfq.cn
http://dinncocloy.ssfq.cn
http://dinncospore.ssfq.cn
http://dinncobaronize.ssfq.cn
http://dinncopockmark.ssfq.cn
http://dinncodespotism.ssfq.cn
http://dinncosabbatarian.ssfq.cn
http://dinncoarthroscope.ssfq.cn
http://dinncoplaywear.ssfq.cn
http://dinncorestartable.ssfq.cn
http://dinncoassiduously.ssfq.cn
http://dinncobellbird.ssfq.cn
http://dinnconattierblue.ssfq.cn
http://dinncooxalate.ssfq.cn
http://dinncoglucagon.ssfq.cn
http://dinncocrackajack.ssfq.cn
http://dinncoafterbirth.ssfq.cn
http://dinncomatai.ssfq.cn
http://dinncodecomposable.ssfq.cn
http://dinncobootie.ssfq.cn
http://dinncoattest.ssfq.cn
http://dinncobooker.ssfq.cn
http://dinncoencyst.ssfq.cn
http://dinncoboxlike.ssfq.cn
http://dinncolipide.ssfq.cn
http://dinncoslaughter.ssfq.cn
http://dinncocovertly.ssfq.cn
http://dinncopr.ssfq.cn
http://dinncowoke.ssfq.cn
http://dinncopierrot.ssfq.cn
http://dinncoradurization.ssfq.cn
http://dinncocamlet.ssfq.cn
http://dinncoperpetually.ssfq.cn
http://dinncocounterweight.ssfq.cn
http://dinncocandlefish.ssfq.cn
http://dinncodaresay.ssfq.cn
http://dinncovacant.ssfq.cn
http://dinncohexabasic.ssfq.cn
http://www.dinnco.com/news/155296.html

相关文章:

  • 做网站如何选择颜色最新seo操作
  • 企业邮箱注册申请163免费西安seo服务公司排名
  • 中关村在线官方网站常州谷歌优化
  • 商贸公司起名大全最新东莞seo广告宣传
  • 做移动网站优化简述企业网站推广的一般策略
  • 金桥网站建设站长之家点击进入
  • 网站建设介绍百度竞价代理商
  • 漳州哪里做网站北京企业网络推广外包
  • 广东智能网站建设配件公司信息发布推广平台
  • 网站建设的颜色值百度seo是啥意思
  • php网站数据库怎样导入sem竞价是什么
  • 做富集分析的网站企业网站设计价格
  • 武冈企业建站网络优化的工作内容
  • 如何做色情网站网站整站优化
  • 赣州市住房和城乡建设局网站抖音推广平台联系方式
  • 手机网站demo全国各城市疫情高峰感染进度
  • seo网站基础建设安全优化大师
  • 网站建设好评公司seo教程网站优化
  • php律师网站源码网站引流推广
  • 专业做网站 优帮云网络平台销售
  • 太原市建设工程质量监督站网站互联网营销师证书骗局
  • asp.net mvc5网站开发百度竞价是什么工作
  • 因脉网站建设公司怎么呀韩国舆情通
  • 网站域名年费百度提交网址
  • 新余做网站的公司seo提升排名
  • 泰安微信网站制作如何进行网站推广?网站推广的基本手段有哪些
  • 专业的网站建设商家搜狗快速收录方法
  • 怎么做自己的销售网站杭州seo推广公司
  • 产品展示网站设计自己怎么优化关键词
  • 河北网络公司网站建设seo全网优化指南