5

写真のヒストグラム均等化を行うには、次のルーチンがあります。

def histeq(im,nbr_bins=256):

   #get image histogram
   imhist,bins = histogram(im.flatten(),nbr_bins,normed=True)
   cdf = imhist.cumsum() #cumulative distribution function
   cdf = 255 * cdf / cdf[-1] #normalize

   #use linear interpolation of cdf to find new pixel values
   im2 = interp(im.flatten(),bins[:-1],cdf)

   return im2.reshape(im.shape), cdf

#im = array(Image.open('AquaTermi_lowcontrast.jpg').convert('L'))
im = array(Image.open('Unequalized.jpg').convert('L'))
#Image.open('plant4.jpg').convert('L').save('inverted.jpg')

im2,cdf = histeq(im)

plt.imshow(im2)
plt.savefig("outputhisto.jpg")

ヒストグラムの均等化のために wiki ページの画像を使用してこれを実行すると、次のようになります。 ここに画像の説明を入力

thisのラインに沿って画像のコントラストを適切に調整する代わりに。私は何を間違っていますか?

4

1 に答える 1

5

間違ったカラーマップでレンダリングしていないだけですか?試す

plt.imshow(im2, cmap=plt.cm.gray)

または

plt.imshow(im2, cmap=plt.get_cmap('gray'))
于 2013-02-10T20:09:45.783 に答える