python+numpy:矩阵array建立

#! usr/bin/env python # coding: utf-8 import numpy as np import cv2 # create array from python list and so on a = [1,2,3] print ('The type of \'a\' is ' + str(type(a))) a = np.array(a) print('The t
相关文章
相关标签/搜索