Skip to content

Commit

Permalink
MD moved to correct section
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiasc89 committed Oct 24, 2024
1 parent a466fe2 commit dd37808
Show file tree
Hide file tree
Showing 9 changed files with 101 additions and 195 deletions.
Binary file modified content/.DS_Store
Binary file not shown.
Binary file added content/content/.DS_Store
Binary file not shown.
Binary file added content/docs/.DS_Store
Binary file not shown.
Binary file added content/docs/processing/.DS_Store
Binary file not shown.
195 changes: 0 additions & 195 deletions content/docs/processing/z_proj_tut1.ipynb

This file was deleted.

File renamed without changes.
Binary file added static/.DS_Store
Binary file not shown.
Binary file added static/content/.DS_Store
Binary file not shown.
101 changes: 101 additions & 0 deletions 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

```

0 comments on commit dd37808

Please sign in to comment.