如何在 scikit-learn 中使用我自己的数据集?Scikit Tutorial总是以加载他的数据集(数字数据集,花卉数据集......)为例
http://scikit-learn.org/stable/datasets/index.html 即:从 sklearn.datasets 导入 load_iris
我有我的图像,但我不知道如何创建新图像。
特别是,对于开始,我使用我找到的这个例子(我使用库 opencv):
img =cv2.imread('telamone.jpg')
# Convert them to grayscale
imgg =cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
# SURF extraction
surf = cv2.SURF()
kp, descritors = surf.detect(imgg,None,useProvidedKeypoints = False)
# Setting up samples and responses for kNN
samples = np.array(descritors)
responses = np.arange(len(kp),dtype = np.float32)
我想提取一组图像的特征,以一种对实现机器学习算法有用的方式!