Skip to content

Commit 270f7df

Browse files
Piximi pr 660 (#60)
* [add,mod] updates documentation to more recent version of piximi. Needs translation verification and image size reductions * [del,add,mod] image resize and format * [mod, add,del] classifier tut image resize and format * [mod,add,del] image-viewer image resize format * [mod,add,del] measurements-viewer image resize format * [mod,add,del] project-viewer image resize format * [mod,add,del] seg/class images resize format
1 parent 67f8881 commit 270f7df

File tree

205 files changed

+2180
-917
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

205 files changed

+2180
-917
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# SCM syntax highlighting & preventing 3-way merges
2+
pixi.lock merge=binary linguist-language=YAML linguist-generated=true

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,12 @@ yarn-error.log*
2020
package-lock.json
2121
stories
2222
.storybook
23+
conf.py
24+
25+
# pixi environments
26+
.pixi
27+
*.egg-info
28+
pixi.toml
29+
.gitattributes
30+
pixi.lock
31+
_build
Lines changed: 64 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,97 @@
11
.text-img {
2-
height: 1.5em;
3-
padding-right: 0.5em;
2+
height: 1.5em;
3+
padding-right: 0.5em;
44
}
55

66
.annotation-gif {
7-
box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px;
7+
box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px,
8+
rgba(45, 35, 66, 0.3) 0 7px 13px -3px;
89
border-radius: 10px;
910
}
1011

1112
.img-shadow {
12-
box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px;
13+
box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px,
14+
rgba(45, 35, 66, 0.3) 0 7px 13px -3px;
1315
border-radius: 10px;
1416
}
1517

1618
.piximi-btn {
17-
font-size: 1.5rem;
19+
font-size: 1.25rem;
1820
align-items: center;
19-
background-color: #FCFCFD;
2021
border-radius: 8px;
21-
border-width: 0;
22-
box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px;
23-
color: black !important;
22+
border: 1px solid #02aec5;
23+
color: #02aec5 !important;
2424
display: inline-flex;
2525
margin-top: 1rem;
26-
margin-left: 2rem;
26+
margin-inline: auto;
2727
padding: 1rem;
2828
text-align: center;
2929
text-decoration: none;
30-
transition: box-shadow .15s,transform .15s;
30+
transition: box-shadow 0.15s, transform 0.15s;
3131
touch-action: manipulation;
32-
will-change: box-shadow,transform;
32+
will-change: box-shadow, transform;
3333
outline: none;
3434
}
3535

3636
.piximi-btn:focus {
37-
box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px;
37+
box-shadow: #d6d6e7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px,
38+
rgba(45, 35, 66, 0.3) 0 7px 13px -3px;
3839
}
3940

4041
.piximi-btn:hover {
41-
box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px;
42+
box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px,
43+
rgba(45, 35, 66, 0.3) 0 7px 13px -3px;
4244
transform: translateY(-2px);
4345
text-decoration: none;
4446
}
4547

4648
.piximi-btn:active {
47-
box-shadow: #D6D6E7 0 3px 7px inset;
49+
box-shadow: #d6d6e7 0 3px 7px inset;
4850
transform: translateY(2px);
49-
}
51+
}
52+
53+
.horiz-button-group {
54+
display: flex;
55+
flex-direction: row;
56+
justify-content: space-around;
57+
gap: 1rem;
58+
}
59+
60+
.theme-img {
61+
display: none;
62+
}
63+
64+
.content-img {
65+
border-radius: 8px;
66+
border: 1px solid #d1d5da;
67+
}
68+
69+
/* Show light image only in light theme */
70+
html[data-theme="light"] .light-img {
71+
display: block;
72+
}
73+
74+
/* Show dark image only in dark theme */
75+
html[data-theme="dark"] .dark-img {
76+
display: block;
77+
}
78+
79+
.centered-stack {
80+
width: 100%;
81+
display: flex;
82+
justify-content: center;
83+
align-items: center;
84+
flex-direction: column;
85+
}
86+
87+
.grid-text {
88+
display: flex;
89+
flex-direction: column;
90+
justify-content: center;
91+
flex-grow: 1;
92+
color: red;
93+
}
94+
95+
.translate {
96+
color: red;
97+
}

piximi-documentation/_toc.yml

Lines changed: 32 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,35 @@
11
format: jb-book
22
root: intro
33
parts:
4-
- caption: Piximi Views
5-
chapters:
6-
- file: main-menu
7-
- file: annotation-guide
8-
- file: segmentation
9-
- file: classification
10-
- file: measurements
11-
- caption: Tutorials
12-
chapters:
13-
- file: translocation_tutorial
14-
- file: translocation_tutorial_ES
15-
- file: translocation_tutorial_pt_BR
16-
- file: classify-example-eukaryotic-image
17-
- file: classify-example-eukaryotic-object
18-
- caption: How-to Guides
19-
chapters:
20-
- file: create-cell-crops-with-cellprofiler
21-
- file: PiximiConverter.ipynb
22-
- caption: Technical information
23-
chapters:
24-
- file: hyperparameters
25-
- file: technical-faq
26-
- file: work-in-progress
27-
- file: example-datasets
28-
- file: citing-piximi
4+
- caption: Quick Start
5+
chapters:
6+
- file: quick-start
7+
- caption: Piximi Views
8+
chapters:
9+
- file: pages/detail/projectviewer
10+
sections:
11+
- file: pages/detail/projectviewer-classification
12+
- file: pages/detail/projectviewer-segmentation
13+
- file: pages/detail/imageviewer
14+
sections:
15+
- file: pages/detail/imageviewer-tools-annotation
16+
- file: pages/detail/measurements-viewer
17+
- caption: Tutorials
18+
chapters:
19+
- file: pages/tutorial/translocation_tutorial
20+
- file: pages/tutorial/translocation_tutorial_ES
21+
- file: pages/tutorial/translocation_tutorial_pt_BR
22+
- file: pages/tutorial/creating-measurements
23+
- file: pages/tutorial/classify-example-eukaryotic-image
24+
- file: pages/tutorial/segmentation-tutorial
25+
- caption: How-to Guides
26+
chapters:
27+
- file: pages/how-to/create-cell-crops-with-cellprofiler
28+
- file: pages/how-to/PiximiConverter.ipynb
29+
- caption: Technical information
30+
chapters:
31+
- file: pages/technical/hyperparameters
32+
- file: pages/technical/technical-faq
33+
- file: pages/technical/work-in-progress
34+
- file: pages/technical/example-datasets
35+
- file: pages/technical/citing-piximi

piximi-documentation/classification.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)