Lines Matching refs:plt
5 import matplotlib.pyplot as plt namespace
16 plt.figure(fig.number)
19 lines, = plt.plot(x,y)
49 plt.figure(fig.number)
51 plt.imshow(imgMap - 1, interpolation='nearest')
54 plt.text(x,y, imgMap[y,x,index], color='white')
73 lin_fig = plt.figure(1)
77 plt.title(lin_title)
82 plt.savefig('linear_tonemap.png',bbox_inches='tight')
89 inv_fig = plt.figure(2)
93 plt.title(inv_title)
98 plt.savefig('inverse_tonemap.png',bbox_inches='tight')
106 gamma_fig = plt.figure(3)
110 plt.title(gamma_title)
115 plt.savefig('gamma_tonemap.png',bbox_inches='tight')
122 srgb_fig = plt.figure(4)
126 plt.title(srgb_title)
131 plt.savefig('srgb_tonemap.png',bbox_inches='tight')
151 redImg = plt.figure(5)
153 plt.title('Red lens shading map')
156 plt.savefig('red_shading.png',bbox_inches='tight')
158 greenEImg = plt.figure(6)
160 plt.title('Green (even rows) lens shading map')
163 plt.savefig('green_e_shading.png',bbox_inches='tight')
165 greenOImg = plt.figure(7)
167 plt.title('Green (odd rows) lens shading map')
170 plt.savefig('green_o_shading.png',bbox_inches='tight')
172 blueImg = plt.figure(8)
174 plt.title('Blue lens shading map')
177 plt.savefig('blue_shading.png',bbox_inches='tight')
179 rgbImg = plt.figure(9)
182 plt.imshow(1/rgbMap,interpolation='bicubic')
188 plt.title('Image of uniform white wall (inverse shading map)')
191 plt.savefig('inv_shading.png',bbox_inches='tight')
197 rec709_fig = plt.figure(10)
201 plt.title(rec709_title)
206 plt.savefig('rec709_tonemap.png',bbox_inches='tight')
211 plt.show()