我一直在尝试使用ML基于兴趣点重建图像。
我最初使用patch.Circle
,并且代码运行正常。但是,我尝试使用SVM(特别是SVR),并且在尝试使用DecisionTreeRegressor
函数时遇到了上述错误。
下面是相关代码:
fit
重塑功能很简单
for i in range(0, len(picO) - 1):
readFile = open(files[i], "r+")
imgO = Image.open(picO[i])
imgO.load()
arrO = np.array(imgO)
imgC = Image.open(picC[i])
imgC.load()
arrC = reshape(np.array(imgC))
regress.fit(arrC,arrO)