I'm trying to find the 10 max values of the .csv file that Harris algorithm gives as output. May you help me? I find a way to find the max value but not 10 first.
import cv2
import numpy as np
from numpy import genfromtxt
filename = 'boy.jpg'
img = cv2.imread(filename)
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
gray = np.float32(gray)
dst = cv2.cornerHarris(gray, 2, 3, 0.04)
# result is dilated for making the corners, not important
dst = cv2.dilate(dst, None)
# Threshold for an optional value, it may vary depending on the image.
img[dst > 0.01 * dst.max()] = [0, 0, 255]
cv2.imshow('dst', img)
np.savetxt("data2.csv", dst, delimiter=",")
if cv2.waitKey(0) & 0xff == 27:
cv2.destroyAllWindows()
import numpy
data1 = numpy.genfromtxt("data2.csv",dtype='float',delimiter =',', skip_header=0, skip_footer=0,usecols=11,usemask=True)
#print data1
print(data1.min())
print(data1.max())