# Encontrar los contornos e imprimir los puntos dados diferentes metodos de aproximacion de los contornos. import numpy as np import cv2 im = cv2.imread('cuadro.jpg') # leer la imagen imgray = cv2.cvtColor(im,cv2.COLOR_BGR2GRAY) ret,thresh = cv2.threshold(imgray,197,255,0) contours, hierarchy = cv2.findContours(thresh,cv2.RETR_LIST,cv2.CHAIN_APPROX_NONE) n=len(contours) print hierarchy cv2.imwrite('cuadro2.jpg',im) cv2.imwrite('cuadro2_umbral.jpg',thresh)