我是靠谱客的博主 漂亮裙子,这篇文章主要介绍python正方形检测_python cv2在多个图像中错误地检测正方形形状,现在分享给大家,希望可以做个参考。

#!/usr/bin/env python

# coding: utf-8

import numpy as np

import cv2

import argparse

import math

ap = argparse.ArgumentParser()

ap.add_argument("-i", "--image", required=True, help="path to input image")

args = vars(ap.parse_args())

img = cv2.imread(args["image"])

# img = cv2.bitwise_not(img,img)

# gray = cv2.imread(args["image"],0)

gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)

# gray = cv2.GaussianBlur(gray, (5, 5), 0)

cv2.imshow('gray', gray)

cv2.waitKey(0)

ret, thresh = cv2.threshold(gray, 230, 255, 1)

cv2.imshow('thresh', thresh)

# cv2.imwrite('./wni230.png',thresh)

cv2.waitKey(0)

square_cnts = []

##################################################

shape = cv2.imread('./shape1.png')

shape_gray = cv2.cvtColor(shape, cv2.COLOR_BGR2GRAY)

ret, shape_thresh = cv2.threshold(shape_gray, 0, 255, 0)

tmpimage, contours, h = cv2.findContours(shape_thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)

shape_cnt0 = contours[0]

shape_approx = []

for i in contours:

approx = cv2.approxPolyDP(i, 0.01*cv2.arcLength(i, True), True)

# print len(approx)

if len(approx) == 4:

shape_approx.append(len(approx))

##################################################

# tmpimage,contours,h = cv2.findContours(thresh,1,2)

# cv2.RETR_TREE

tmpimage, contours, h = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)

cnt0 = contours[0]

# from skimage import measure

# contours = measure.find_contours(thresh, 0.8)

for cnt in contours[::-1]:

print cv2.arcLength(cnt, True)

print cnt

approx = cv2.approxPolyDP(cnt, 0.1*cv2.arcLength(cnt, True), True)

print len(approx)

if len(approx) == 5:

print "pentagon"

cv2.drawContours(img, [cnt], 0, 255, 2)

cv2.imshow('tmppentagon', img)

cv2.waitKey(0)

elif len(approx) == 3:

print "triangle"

cv2.drawContours(img, [cnt], 0, (0, 255, 0), 2)

cv2.imshow('tmptriangle', img)

cv2.waitKey(0)

elif len(approx) == 2:

print 'approx:'

print approx

ret = cv2.matchShapes(cnt, cnt0, 1, 0.0)

print 'match shape ret:%s' % ret

print "two approx line"

cv2.drawContours(img, [cnt], 0, (0, 255, 0), 2)

cv2.imshow('twoline?', img)

cv2.waitKey(0)

elif len(approx) == 4:

ret = cv2.matchShapes(cnt, cnt0, 1, 0.0)

print 'match shape ret:%s' % ret

if ret > 0.5:

print "Parallelogram"

elif 0.3 < ret < 0.5:

print "Rectangle"

elif 0 < ret < 0.3:

print "Rhombus"

else:

print "square"

print cv2.arcLength(cnt, True)

print approx

cv2.drawContours(img, [approx], 0, (0, 0, 255), 2)

cv2.imshow('tmpsquare', img)

cv2.waitKey(0)

if int(cv2.arcLength(cnt, True)) >= 96:

if math.fabs(math.sqrt((approx[0][0][0]-approx[1][0][0])**2+(approx[0][0][1]-approx[1][0][1])**2) - math.sqrt((approx[1][0][0]-approx[2][0][0])**2+(approx[1][0][1]-approx[2][0][1])**2)) <= 5:

x, y, w, h = cv2.boundingRect(cnt)

cv2.imshow('final',img[y:y+h,x:x+w])

cv2.waitKey(0)

print 'target but long squere detected...'

cv2.waitKey(0)

elif len(approx) == 9:

print "half-circle"

cv2.drawContours(img,[cnt],0,(255,255,0),2)

cv2.imshow('tmphalfcircle',img)

cv2.waitKey(0)

elif len(approx) > 15:

print "circle"

cv2.drawContours(img,[cnt],0,(0,255,255),2)

cv2.imshow('tmpcircle',img)

cv2.waitKey(0)

cv2.imshow('img', img)

cv2.imwrite('tmp.png', img)

cv2.waitKey(0)

cv2.destroyAllWindows()

最后

以上就是漂亮裙子最近收集整理的关于python正方形检测_python cv2在多个图像中错误地检测正方形形状的全部内容,更多相关python正方形检测_python内容请搜索靠谱客的其他文章。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(48)

评论列表共有 0 条评论

立即
投稿
返回
顶部