Remove unused imports and wrap text

This commit is contained in:
Johannes Schönberger
2012-08-20 18:53:02 +02:00
parent f11b76e709
commit 777bb59834
+2 -5
View File
@@ -3,20 +3,17 @@
Local Binary Pattern for texture classification
===============================================
In this example, we will see how to classify textures based on LBP (Local Binary
Pattern). The histogram of the LBP result is a good measure to classify
In this example, we will see how to classify textures based on LBP (Local
Binary Pattern). The histogram of the LBP result is a good measure to classify
textures. For simplicity the histogram distributions are then tested against
each other using the Kullback-Leibler-Divergence.
"""
import os
import glob
import numpy as np
import matplotlib
import matplotlib.pyplot as plt
import scipy.ndimage as nd
import skimage.feature as ft
from skimage.io import imread
from skimage import data