Browse Source

Update images on project creation page

pull/1899/head
Hironsan 2 years ago
parent
commit
e1eeea25e9
5 changed files with 6 additions and 6 deletions
  1. BIN
      frontend/assets/images/tasks/image_captioning.jpg
  2. BIN
      frontend/assets/images/tasks/object_detection.jpg
  3. BIN
      frontend/assets/images/tasks/segmentation.jpg
  4. 6
      frontend/components/project/FormCreate.vue
  5. 6
      frontend/pages/demo/image-caption/index.vue

BIN
frontend/assets/images/tasks/image_captioning.jpg

Before After
Width: 1514  |  Height: 896  |  Size: 258 KiB

BIN
frontend/assets/images/tasks/object_detection.jpg

Before After
Width: 1836  |  Height: 1132  |  Size: 340 KiB

BIN
frontend/assets/images/tasks/segmentation.jpg

Before After
Width: 1766  |  Height: 988  |  Size: 370 KiB

6
frontend/components/project/FormCreate.vue

@ -217,9 +217,9 @@ export default Vue.extend({
'seq2seq.png',
'intent_detection.png',
'image_classification.png',
'image_classification.png', // image captioning
'image_classification.png', // bounding box
'image_classification.png', // segmentation
'image_captioning.png',
'object_detection.png',
'segmentation.png',
'speech_to_text.png'
]
},

6
frontend/pages/demo/image-caption/index.vue

@ -93,17 +93,17 @@ export default {
mdiDeleteOutline,
currentDoc: {
id: 8,
filename: require('~/assets/6737785.png'),
filename: require('~/assets/images/demo/cat.jpeg'),
annotations: [
{
id: 17,
text: "S'il ne m'avait pas aidé, j'aurais échoué.",
text: 'A cat playing with flowers',
user: 1,
document: 8
},
{
id: 18,
text: "S'il ne m'avait pas aidée, j'aurais échoué.",
text: 'A flower is blooming on the ground',
user: 1,
document: 8
}

Loading…
Cancel
Save