- Create Login page, Status page
- Database setting
- Database connection
flowchart LR
id1[Login page] == enter access key ==>id2[Status page]
id2 == click unlabeled / skip ==> id3[Labeling page]
id3 == click next button ==> id3
Login page is needed via data storing.
Maybe skip button is not necessary because we could just click next.
We should not implement prev button.
Next button stores data to database.
| Property | Type | Value |
|---|---|---|
| Color | hex string | #000000-#FFFFFF |
| Stool Scale | number | 1-7 (0 if unselected) |
| Stool Props | boolean | true/false |
| Blood type | number + string (could be null) | 1-6, 6 needs string (0 if unselected) |
| Memo | string | null or string |
| Status | number | 1-4 (default is 1=unlabeled) |
Use common folder's dataset.
Image data must be bigger than 512px * 512px.
Ratio of width and height of image has threshold 0.8 <= ratio <= 1.25 or something else.
Using python's resize function would be easy for pre-processing.
User key - index table to get current user's data.
Each user has separated table.
Store image index, color, stool scale, stool props, blood type, memo, status.
Use status filter to give new unlabled image to user.
Index - image table to display image on website.