22 Şubat 2016 Pazartesi

OPENCV DERSLERİ (DERS:8) GEOMETRİK ŞEKİL ÇİZİM-6

D)Geometrik Şekillerin Tek Fotoğrafta Toplanması

KOD;


import numpy as np
import cv2

# Create a black image
img = np.zeros((512,512,3), np.uint8)

cv2.line(img,(0,0),(511,511),(255,0,0),5)
pts = np.array([[15,150],[15,180],[45,200],[215,150],[405,15]], np.int32)
pts = pts.reshape((-1,1,2))
cv2.polylines(img,[pts],True,(0,255,255))
cv2.rectangle(img,(100,20),(300,40),(0,255,0),10)
cv2.circle(img,(447,63), 63, (0,0,255), -1)                                           
cv2.ellipse(img,(256,256),(100,50),0,0,360,(255,0,100),-1)
cv2.imshow('image',img)
cv2.waitKey(0)
cv2.destroyAllWindows() 

Ekran Görüntüsü;




Ders:7⬅                                                                    Ders:9

0 yorum:

Yorum Gönder