-1

RGB画像の3Dヒストグラムをプロットしたい。以下は私のコードです:

from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import numpy as np
from scipy.misc import imread
import pylab

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
img1 = imread('image.jpg')
img_reshaped = img1.reshape(img1.shape[0] * img1.shape[1], img1.shape[2])

hist, edges = np.histogramdd(img_reshaped, bins=(100, 100, 100))

hist取得したヒストグラムのプロット方法を教えてください。

4

1 に答える 1

0

matplotlib ギャラリーの 3d ヒストグラムの例をご覧になりましたか?

参照: http://matplotlib.org/examples/mplot3d/hist3d_demo.html

于 2013-03-20T13:12:30.843 に答える