Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from __future__ import print_function
- import cv2 as cv
- import numpy as np
- import argparse
- import random as rng
- rng.seed(12345)
- def thresh_callback(val):
- threshold = val
- ## [Canny]
- # Detect edges using Canny
- canny_output = cv.Canny(src_gray, threshold, threshold * 2)
- ## [Canny]
- ## [findContours]
- # Find contours
- contours, _ = cv.findContours(canny_output, cv.RETR_TREE, cv.CHAIN_APPROX_SIMPLE)
- ## [findContours]
- ## [allthework]
- # Approximate contours to polygons + get bounding rects and circles
- contours_poly = [None]*len(contours)
- boundRect = [None]*len(contours)
- centers = [None]*len(contours)
- radius = [None]*len(contours)
- for i, c in enumerate(contours):
- contours_poly[i] = cv.approxPolyDP(c, 3, True)
- boundRect[i] = cv.boundingRect(contours_poly[i])
- centers[i], radius[i] = cv.minEnclosingCircle(contours_poly[i])
- ## [allthework]
- ## [zeroMat]
- drawing = np.zeros((canny_output.shape[0], canny_output.shape[1], 3), dtype=np.uint8)
- ## [zeroMat]
- ## [forContour]
- # Draw polygonal contour + bonding rects + circles
- for i in range(len(contours)):
- color = (rng.randint(0,256), rng.randint(0,256), rng.randint(0,256))
- cv.drawContours(drawing, contours_poly, i, color)
- cv.rectangle(drawing, (int(boundRect[i][0]), int(boundRect[i][1])), \
- (int(boundRect[i][0]+boundRect[i][2]), int(boundRect[i][1]+boundRect[i][3])), color, 2)
- cv.circle(drawing, (int(centers[i][0]), int(centers[i][1])), int(radius[i]), color, 2)
- ## [forContour]
- cnt = contours[0]
- x,y,w,h = cv.boundingRect(cnt)
- aspect_ratio = float(w)/h
- print("Aspect Ratio: ", aspect_ratio)
- area = cv.contourArea(cnt)
- x,y,w,h = cv.boundingRect(cnt)
- rect_area = w*h
- extent = float(area)/rect_area
- print("Extent: ", extent)
- area = cv.contourArea(cnt)
- hull = cv.convexHull(cnt)
- hull_area = cv.contourArea(hull)
- solidity = float(area)/hull_area
- print("Solidity: ", solidity)
- area = cv.contourArea(cnt)
- equi_diameter = np.sqrt(4*area/np.pi)
- print("Equivalent Diameter: ", equi_diameter)
- ## [showDrawings]
- # Show in a window
- cv.imshow('Contours', drawing)
- ## [showDrawings]
- ## [setup]
- # Load source image
- parser = argparse.ArgumentParser(description='Code for Creating Bounding boxes and circles for contours tutorial.')
- parser.add_argument('--input', help='Path to input image.', default='snimka.jpg')
- args = parser.parse_args()
- src = cv.imread(cv.samples.findFile(args.input))
- if src is None:
- print('Could not open or find the image:', args.input)
- exit(0)
- # Convert image to gray and blur it
- src_gray = cv.cvtColor(src, cv.COLOR_BGR2GRAY)
- src_gray = cv.blur(src_gray, (3,3))
- ## [setup]
- ## [createWindow]
- # Create Window
- source_window = 'Source'
- cv.namedWindow(source_window)
- cv.imshow(source_window, src)
- ## [createWindow]
- ## [trackbar]
- max_thresh = 255
- thresh = 100 # initial threshold
- cv.createTrackbar('Canny thresh:', source_window, thresh, max_thresh, thresh_callback)
- thresh_callback(thresh)
- ## [trackbar]
- cv.waitKey()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement