In [1]:
% matplotlib inline
import matplotlib.pyplot as plt
import image_features_extraction.Images as fe
IMGS = fe.Images('TEST_BLOG_POST/images/')
for i in IMGS:
print(i.file_name())
In [2]:
IMG_POINTS = IMGS.item(1)
IMG_8BIT = IMGS.item(0)
#IMG_POINTS.set_image_intensity(IMG_8BIT)
fig, ax = plt.subplots(figsize=(20, 20))
ax.imshow(IMG_POINTS.get_image_segmentation(overlap_image=IMG_8BIT))
Out[2]:
In [ ]: