test Post

Resume of article

Posted by Remi on Sat 23 September 2017

Title

This post is a simple example to show how the ...

Hello how are you?

My intentions is to show your Code !!

Screenshot

me

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())
TEST_BLOG_POST/images/REMI_8BIT.tif
TEST_BLOG_POST/images/REMI_POINTS.tif
/Users/remi/anaconda/envs/remi_insight/lib/python3.5/site-packages/skimage/filters/thresholding.py:271: UserWarning: threshold_otsu is expected to work correctly only for grayscale images; image shape (772, 772, 3) looks like an RGB image
  warn(msg.format(image.shape))
TEST_BLOG_POST/images/REMI_RGB.tif
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 [ ]: