2016-08-04 43 views
0

這已經所以道歉之前,要求再次詢問,我已按照theseanswersthis提供建議的解決方案,但I'cant似乎刪除我的錯誤。Python的類型錯誤在numpy的polyfit ufunc不包含循環相匹配的簽名類型

我試過改變對象類型的斜率列表和vals範圍,但仍然出現錯誤。我躲進了polynomial.py腳本,但我不明白錯誤中列出的代碼行。

總的來說,我試圖根據灰度值(0-255)將8位灰度圖像分離成單個數組,然後使用每個值的最佳擬合線,然後使用每條斜線最適合獲得最適合圖像的整體線條。

這裏是我的代碼:

image = Image.open('subfram-002.tif') 
im_array = np.array(image) 
#print(im_array) 
#### 
multivec = [] 
#### 
# For loop to calculate the line of best fit for each value in the sub-frame array 
arrays = [im_array] # Calling our array 
vals = list(range(255)) # Range of values in array 
slopes = [] # List to append each of the slopes of the line of best fit 
skip = False 
for i in arrays: 
    for j in vals: 
     index = list(zip(*np.where (j == i))) # Creating a list of the position indices for each value in the array 
     in_array = np.array(index) # Updating list to array, not needed will remove 

     a = list([int(i[0]) for i in index]) # Getting the first element of each tuple in the index list 
     b = list([int(i[1]) for i in index]) # Getting the second element of each tuple in the index list 
     # Add exception for vectors that are not generated due to values in 0-255 not being present 
     if len(a) == 0: 
      skip = True 
     elif len(b) == 0: 
      skip = True 
     else: 
      vec = list((np.poly1d(np.polyfit(a,b,1))).c) # Calculating list of best (1st order polynomial, consider increasing the order?) 
      slope = float(vec[0]) # Getting the 1st coefficient of the line of best fit, which is the slope 
      slopes.append(slope) # appending each slope to a list of slopes 

print(type(slopes), type(vals)) 

slopes += ['0'] * (255 - len(slopes)) # Padding slope list in case less then 255 slopes generated 

print(len(vals)) 

# Take in all of the slopes from each vector that is determined for each value 
vec1 = (np.poly1d(np.polyfit(slopes,vals,1))).C# Determining the overall line of best fit for the array, using the slope of the vector as the comparator between sub-frames 

這裏是我的錯誤:

<class 'list'> <class 'list'> 
255 
Traceback (most recent call last): 
    File "aryslop.py", line 53, in <module> 
    vec1 = (np.poly1d(np.polyfit(slopes1,vals1,1))).C# Determining the overall line of best fit for the array, using the slope of the vector as the comparator between sub-frames 
    File "/home/vanoccupanther/anaconda3/lib/python3.5/site-packages/numpy/lib/polynomial.py", line 549, in polyfit 
    x = NX.asarray(x) + 0.0 
TypeError: ufunc 'add' did not contain a loop with signature matching types dtype('<U32') dtype('<U32') dtype('<U32') 

回答

1

我解決了這個(我希望),我通過迭代通過每個丘壑的範圍和斜坡列表中創建新的列表,將每個包含在每個對象中的對象變成浮動。我已經在我的for循環中完成了,所以我應該早點完成。