這篇文章主要介紹了利用python怎么實現一個圖像平移和旋轉操作,創新互聯小編覺得不錯,現在分享給大家,也給大家做個參考,一起跟隨創新互聯小編來看看吧!
網站建設哪家好,找創新互聯!專注于網頁設計、網站建設、微信開發、微信小程序定制開發、集團企業網站建設等服務項目。為回饋新老客戶創新互聯還提供了固安免費建站歡迎大家使用!python是什么意思Python是一種跨平臺的、具有解釋性、編譯性、互動性和面向對象的腳本語言,其最初的設計是用于編寫自動化腳本,隨著版本的不斷更新和新功能的添加,常用于用于開發獨立的項目和大型項目。
如下所示:
import cv2 import math import numpy as np def move(img): height, width, channels = img.shape emptyImage2 = img.copy() x=20 y=20 for i in range(height): for j in range(width): if i>=x and j>=y: emptyImage2[i,j]=img[i-x][j-y] else: emptyImage2[i,j]=(0,0,0) return emptyImage2 img = cv2.imread("e:\\lena.bmp") cv2.namedWindow("Image") SaltImage=move(img) cv2.imshow("Image",img) cv2.imshow("ss",SaltImage) cv2.waitKey(0)
旋轉:
import cv2 import math import numpy as np def XRotate(image, angle): h, w, channels = image.shape anglePi = angle * math.pi / 180.0 cosA = math.cos(anglePi) sinA = math.sin(anglePi) X1 = math.ceil(abs(0.5 * h * cosA + 0.5 * w * sinA)) X2 = math.ceil(abs(0.5 * h * cosA - 0.5 * w * sinA)) Y1 = math.ceil(abs(-0.5 * h * sinA + 0.5 * w * cosA)) Y2 = math.ceil(abs(-0.5 * h * sinA - 0.5 * w * cosA)) hh = int(2 * max(Y1, Y2)) ww = int(2 * max(X1, X2)) emptyImage2 = np.zeros((hh, ww, channels), np.uint8) for i in range(hh): for j in range(ww): x = cosA * i + sinA * j - 0.5 * ww * cosA - 0.5 * hh * sinA + 0.5 * w y = cosA * j- sinA * i+ 0.5 * ww * sinA - 0.5 * hh * cosA + 0.5 * h x = int(x) y = int(y) if x > -1 and x < h and y > -1 and y < w : emptyImage2[i, j] = image[x, y] return emptyImage2 image = cv2.imread("e:\\lena.bmp") iXRotate12 = XRotate(image, 30) cv2.imshow('image', image) cv2.imshow('iXRotate12', iXRotate12) cv2.waitKey(0)
以上就是創新互聯小編為大家收集整理的利用python怎么實現一個圖像平移和旋轉操作,如何覺得創新互聯網站的內容還不錯,歡迎將創新互聯網站推薦給身邊好友。
分享題目:利用python怎么實現一個圖像平移和旋轉操作-創新互聯
文章源于:http://m.newbst.com/article30/diogso.html
成都網站建設公司_創新互聯,為您提供面包屑導航、域名注冊、營銷型網站建設、網站維護、Google、品牌網站設計
聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯