ここでは、ヒストグラムの均一化について学習したことをメモします。 画像の明るさやコントラストを改善する基本的な処理のひとつに「ヒストグラムの均一化(Histogram Equalization)」があります。 本記事では、その概要と実際のPythonコードによる実装方法 ...
if len(image.shape) == 2: histogram = np.zeros(8, dtype=np.uint8) for i in range(image.shape[0]): for j in range(image.shape[1]): ...
Abstract: CNNs (Convolutional Neural Networks) have a good performance on most classification tasks, but they are vulnerable when meeting adversarial examples. Research and design of highly aggressive ...