Type Error: Only length-1 arrays can be converted to Python Scalars

空扰寡人 提交于 2020-01-14 13:56:30

问题


I am a beginner to openCV and am trying to analyse an existing code for a sudoku solver. There is this section of code which throws an error.

samples = np.float32(np.loadtxt('feature_vector_pixels.data'))
responses = np.float32(np.loadtxt('samples_pixels.data'))

model = cv2.ml.KNearest_create()
model.train(samples, responses)

The error is as follows Type Error: Only length-1 arrays can be converted to Python Scalars.

The complete traceback is as below:

C:\Study stuff\FinalProject>c:\Python27\python.exe Sudoku.py
Traceback (most recent call last):
  File "Sudoku.py", line 15, in <module>
    model.train(samples, responses)
TypeError: only length-1 arrays can be converted to Python scalars

Any idea as to what the issue is?


回答1:


The error message that you are getting:

TypeError: Only length-1 arrays can be converted to Python Scalars

literally means: you have provided an array of more than one element in a place where a single value or an array of a single element was expected.

So one of the arguments passed to call model.train(samples, responses) requires and scalar... but which?

A look at the latest documentation of KNearest class, allow us to see the signature of the StatsModel.train method:

virtual bool cv::ml::StatModel::train ( InputArray samples, int layout, InputArray responses )

Apparently, a new layout argument was added. But it's meaning is a little obscure from the documentation.

Without knowledge of the contents of you file, I can't tell if you need to pass ROW_SAMPLE or COL_SAMPLE, but armed with that information, I could find a similar question, whose solution was to add cv2.ml.ROW_SAMPLE as second argument to the train method:

model.train(samples, cv2.ml.ROW_SAMPLE, responses) 



回答2:


Error occurs due to a series of refactoring operations made in the latest versions. Error fix



来源:https://stackoverflow.com/questions/33975695/type-error-only-length-1-arrays-can-be-converted-to-python-scalars

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!