experiments.js 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. export default [
  2. {
  3. path: '/experiments/MatchExtractsWithReference/:sceneName',
  4. name: 'MatchExtractsWithReference',
  5. component: () => import('@/views/Experiments/MatchExtractsWithReference'),
  6. props: true,
  7. meta: {
  8. fullName: 'Match extracts qualities to reference image'
  9. }
  10. },
  11. {
  12. path: '/experiments/AreSameImagesRandom/:sceneName',
  13. name: 'AreSameImagesRandom',
  14. component: () => import('@/views/Experiments/AreSameImagesRandom'),
  15. props: true,
  16. meta: {
  17. fullName: 'Are images the same ? (Both are random qualities images)'
  18. }
  19. },
  20. {
  21. path: '/experiments/AreSameImagesReference/:sceneName',
  22. name: 'AreSameImagesReference',
  23. component: () => import('@/views/Experiments/AreSameImagesReference'),
  24. props: true,
  25. meta: {
  26. fullName: 'Are images the same ? (One is reference image, the other is random quality)'
  27. }
  28. },
  29. {
  30. path: '/experiments/AreSameImagesReferenceOneExtract/:sceneName',
  31. name: 'AreSameImagesReferenceOneExtract',
  32. component: () => import('@/views/Experiments/AreSameImagesReferenceOneExtract'),
  33. props: true,
  34. meta: {
  35. fullName: 'Are images the same ? (Both are reference images but one contains a random quality extract)'
  36. }
  37. },
  38. {
  39. path: '/experiments/PercentQualityRandom/:sceneName',
  40. name: 'PercentQualityRandom',
  41. component: () => import('@/views/Experiments/PercentQualityRandom'),
  42. props: true,
  43. meta: {
  44. fullName: 'Choose a score for quality'
  45. }
  46. },
  47. {
  48. path: '/experiments/IsImageCorrect/:sceneName',
  49. name: 'IsImageCorrect',
  50. component: () => import('@/views/Experiments/IsImageCorrect'),
  51. props: true,
  52. meta: {
  53. fullName: 'Check if reconstructed image is correct'
  54. }
  55. },
  56. {
  57. path: '/experiments/IsImageCorrectOneExtract/:sceneName',
  58. name: 'IsImageCorrectOneExtract',
  59. component: () => import('@/views/Experiments/IsImageCorrectOneExtract'),
  60. props: true,
  61. meta: {
  62. fullName: 'Check if reconstructed image with one different extract is correct'
  63. }
  64. }
  65. ]