Skip to content

Commit

Permalink
Md created with nb2hugo package added
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiasc89 committed Oct 24, 2024
1 parent e11e71c commit a466fe2
Show file tree
Hide file tree
Showing 6 changed files with 101 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added content/.DS_Store
Binary file not shown.
101 changes: 101 additions & 0 deletions content/content/z_proj_tut1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
+++
title = "My notebook title"
date = "2018-06-01"
author = "firstname lastname"
categories = ["category1", "category2"]
tags = ["tag1", "tag2", "tag3"]
+++


# Post title


```python
from skimage import data
import matplotlib.pyplot as plt
import numpy as np

image = data.cells3d()

```


```python
print (image.shape)
```

(60, 2, 256, 256)



```python
plt.imshow(image[40,1,:,:])

```




<matplotlib.image.AxesImage at 0x17ace13f0>





![png](output_4_1.png)




```python
nucl_img_all = image[:,1,:,:]
nucl_img_sel = image[25:40,1,:,:]
print(nucl_img.shape)

mean_nucl_img = np.mean(nucl_img, axis=0)
mean_nucl_sel = np.mean(nucl_img_sel, axis= 0)
```

(60, 256, 256)



```python
plt.imshow(mean_nucl_img)
```




<matplotlib.image.AxesImage at 0x17a97b880>





![png](output_6_1.png)




```python
plt.imshow(mean_nucl_sel)
```




<matplotlib.image.AxesImage at 0x17de4bac0>





![png](output_7_1.png)




```python

```
Binary file added static/content/z_proj_tut1/output_4_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/content/z_proj_tut1/output_6_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/content/z_proj_tut1/output_7_1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a466fe2

Please sign in to comment.