-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
1512 lines (1490 loc) · 59.7 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
let content = null;
let image_viewer_close = null;
let image_viewer = null;
let viewer_image = null;
let image_viewer_info = null;
let image_viewer_h1 = null;
let image_viewer_h2 = null;
// Define the ids of content divs
const id_proj_desc_menu_img = "menu-img-deep";
const id_proj_desc = "project-desc";
const id_proj_desc_txt = "project_desc";
const id_proj_desc_auth = "project_desc_auth_works";
const id_proj_desc_ai = "project_desc_ai_works";
const id_grohar_menu_img = "menu-img-grohar";
const id_grohar = "grohar";
const id_grohar_txt = "grohar_desc";
const id_grohar_auth = "grohar_auth_works";
const id_grohar_ai = "grohar_ai_works";
const id_sternen_menu_img = "menu-img-sternen";
const id_sternen = "sternen";
const id_sternen_txt = "sternen_desc";
const id_sternen_auth = "sternen_auth_works";
const id_sternen_ai = "sternen_ai_works";
const id_tominc_menu_img = "menu-img-tominc";
const id_tominc = "tominc";
const id_tominc_txt = "tominc_desc";
const id_tominc_auth = "tominc_auth_works";
const id_tominc_ai = "tominc_ai_works";
// Starting div should be the project description
let current_active_id = id_proj_desc;
let current_menu_img_active_id = id_proj_desc_menu_img;
// On page load, perform setup
window.addEventListener("load", (event) => {
setupPage();
});
// Function to set up the listeners on the menu items
function setupPage() {
content = document.getElementById("content");
// Set up the image viewer
image_viewer = document.getElementById("image-viewer");
image_viewer_close = document.getElementById("image-viewer-close");
image_viewer_close.addEventListener("click", function () {
closeImageViewer();
});
viewer_image = document.getElementById("viewer-image");
image_viewer_info = document.getElementById("id-viewer-info");
image_viewer_h1 = document.getElementById("image-viewer-author");
image_viewer_h2 = document.getElementById("image-viewer-title");
// Set up the menu
const menu = document.getElementById("menu");
Array.from(document.getElementsByClassName("menu-item")).forEach((item, index) => {
// Set active index on mouseOver
item.onmouseover = () => {
menu.dataset.activeIndex = index;
};
// Add onClick listener to switch selected topics on click
item.addEventListener("click", function () {
selectTopic(index);
});
});
// Set up the project info
document.getElementById(id_proj_desc_txt).innerText = json_data.o_projektu_txt;
// Generate images inside divs for the authentic part
generateImageDivs(id_proj_desc_auth, json_data.o_projektu_authentic, 3, true, true);
// Generate images for the AI part
generateImageDivs(id_proj_desc_ai, json_data.o_projektu_ai, 3, false, true);
// Setup Grohar page
document.getElementById(id_grohar_txt).innerText = json_data.grohar_txt;
generateImageDivs(id_grohar_auth, json_data.grohar_authentic, 3, false, true);
generateImageDivs(id_grohar_ai, json_data.ivan_grohar_ai, 3, false, true);
// Setup Tominc page
document.getElementById(id_tominc_txt).innerText = json_data.tominc_txt;
generateImageDivs(id_tominc_auth, json_data.tominc_authentic, 3, false, true);
generateImageDivs(id_tominc_ai, json_data.jozef_tominc_ai, 3, false, true);
// Setup Sternen page
document.getElementById(id_sternen_txt).innerText = json_data.sternen_txt;
generateImageDivs(id_sternen_auth, json_data.sternen_authentic, 3, false, true);
generateImageDivs(id_sternen_ai, json_data.matej_sternen_ai, 3, false, true);
}
/**
* parentId ->
*
*
* **/
function generateImageDivs(parentId, elList, perRow, author, title) {
let counter = 0;
const parent = document.getElementById(parentId);
let rowDiv = document.createElement("div");
elList.forEach((el) => {
let div = document.createElement("div");
let img = document.createElement("img");
img.setAttribute("src", el.src);
div.appendChild(img);
img.addEventListener("click", function() {
showInImageViewer(el);
});
div.classList.add("relative");
if (title) {
let _h2 = document.createElement("h2");
_h2.innerText = el["title"];
div.appendChild(_h2);
}
if (author) {
let _h1 = document.createElement("h1");
_h1.innerText = el["author"];
div.appendChild(_h1);
}
if (el["trained"]) {
let _div = document.createElement("div");
_div.classList.add("learning");
div.appendChild(_div);
}
if (counter > perRow - 1) {
parent.appendChild(rowDiv);
rowDiv = document.createElement("div");
counter = 0;
}
rowDiv.appendChild(div);
counter++;
});
parent.appendChild(rowDiv);
}
// Opens the clicked image in an image viewer
function showInImageViewer(el) {
let author = "Stable Diffusion 2";
let title = null;
if (el["author"]) {
author = el["author"];
}
if (el["title"]) {
title = el["title"];
}
// Set author and title from json
image_viewer_h1.innerText = author;
image_viewer_h2.innerText = title;
// Display the image
viewer_image.setAttribute("src", el.src);
image_viewer.setAttribute("style", "display: block");
/* let image_width = viewer_image.getBoundingClientRect().width;
setTimeout(() => {
console.log(viewer_image.getBoundingClientRect());
}, 1000)
image_viewer_info.setAttribute("style", `max-width:10px`);*/
}
function closeImageViewer() {
image_viewer.setAttribute("style", "");
}
// Sets the displayed topic based on the index of
// the element clicked in the menu
function selectTopic(ix) {
switch (ix) {
case 0:
setActive(id_proj_desc, id_proj_desc_menu_img);
break;
case 1:
setActive(id_grohar, id_grohar_menu_img);
break;
case 2:
setActive(id_tominc, id_tominc_menu_img);
break;
case 3:
setActive(id_sternen, id_sternen_menu_img);
break;
default:
console.log("You are doing something wrong bro.");
}
}
function setActive(active_id, active_menu_img_id) {
// Don't reset if already set
if (active_id === current_active_id) {
return;
}
// Hide current
const curr = document.getElementById(current_active_id);
const curr_menu_img = document.getElementById(current_menu_img_active_id);
curr.classList.remove("show");
curr.classList.add("hide");
curr_menu_img.classList.remove("show");
curr_menu_img.classList.add("hide");
// Show the clicked one
const next = document.getElementById(active_id);
const next_menu_img = document.getElementById(active_menu_img_id);
next.classList.remove("hide");
next.classList.add("show");
next_menu_img.classList.remove("hide");
next_menu_img.classList.add("show");
// Return the scroll to the top of div
$(content).scrollTop(0);
// Swap
current_active_id = active_id;
current_menu_img_active_id = active_menu_img_id;
}
const json_data = {
o_projektu_txt:
"Cilj projekta je prikazati kako močno so tehnike strojnega učenja v zadnjih letih napredovale in prikazati,kako strojno učenje revolucionarna tudi področja, ki so še pred kratkim veljala kot nekaj nedotakljivega strojem. Stable diffusion je tehnika strojnega učenja, ki omogoča ustvarjanje zelo realističnih slik z iterativnim izboljševanjem vhodne slike hrupa z uporabo nevronske mreže. Ena od ključnih lastnost modela Stable Diffusion je ustvarjanje del v specifičnem slogu slikarjev tako, da izberemo nekaj del, ki dobro predstavljajo slikarjev stil in zgornje plasti modela natreniramo z izbranimi deli. Model nam nato omogoča generiranje slik na podlagi vhodnega teksta.",
o_projektu_authentic: [
{
src: "assets/images/ivan_grohar_real/Sejalec.jpg",
title: "Sejalec",
author: "Ivan Grohar",
},
{
src: "assets/images/matej_sternen_real/Rdeči%20parazol.jpg",
title: "Rdeči Parazol",
author: "Matej Sternen",
},
{
src: "assets/images/jozef_tominc_real/Portret%20očeta.jpg",
title: "Portret Očeta",
author: "Jožef Tominc",
},
],
o_projektu_ai: [
{
src: "assets/images/ivan_grohar_ai/2.jpg",
title: "V stilu Ivana Groharja",
},
{
src: "assets/images/matej_sternen_ai/91.jpg",
title: "V stilu Mateja Sternena",
},
{
src: "assets/images/jozef_tominc_ai/11.jpg",
title: "V stilu Jožefa Tominca",
},
],
grohar_txt:
"Grohar je najbolj lirična osebnost impresionističnega desetletja na začetku 20. stoletja. Kljub izjemni nadarjenosti zaradi pomanjkljive izobrazbe ni mogel nadaljevati graškega šolanja na dunajski akademiji. Po bivanju v Münchnu je izpolnjeval cerkvena naročila. Prelom stoletij je pomenil tudi prelom v njegovem slogu. Hitro je začel razvijati svojo lastno tehniko slikanja, ki jo je deloma izpeljal iz divizionizma in povezal s simbolizmom in s secesijo. Neuspehi in samosvoja narava so ga privedli v Škofjo Loko, kjer se je ustalil leta 1904. Tam je ustvaril svoja najboljša dela, ki od krajinske motivike prehajajo v monumentalne prizore kmečkega dela. Nekaj dni pred odhodom na študijsko potovanje v Italijo je umrl v ljubljanski bolnišnici, izčrpan od jetike.",
grohar_authentic: [
{
src: "assets/images/ivan_grohar_real/Sejalec.jpg",
title: "Sejalec",
author: "Ivan Grohar",
trained: true,
},
{
src: "assets/images/ivan_grohar_real/Macesen.jpg",
title: "Macesen",
author: "Ivan Grohar",
},
{
src: "assets/images/ivan_grohar_real/Pomlad.jpg",
title: "Pomlad",
author: "Ivan Grohar",
trained: true,
},
{
src: "assets/images/ivan_grohar_real/Štemarski%20vrt.jpg",
title: "Štemarski vrt",
author: "Ivan Grohar",
trained: true,
},
{
src: "assets/images/ivan_grohar_real/Grabljice.jpg",
title: "Grabljice",
author: "Ivan Grohar",
trained: true,
},
{
src: "assets/images/ivan_grohar_real/Kamnitnik.jpg",
title: "Kamnitnik",
author: "Ivan Grohar",
trained: true,
},
],
tominc_txt:
"Tominc je bidermajerski portretist, ki se je uveljavil predvsem v goriškem in v tržaškem okolju. Poleg posameznih portretov se je z občutkom loteval tudi skupinskih, o slikarjevem značaju pa nam največ povedo njegovi temperamentni in s hudomušno noto obarvani avtoportreti. Tominc je portretirance rahlo idealiziral in psihološko karakteriziral, pretanjeno je slikal inkarnat, lesk oblačil in odseve. Njegova dela pomenijo vrhunec umetnosti na Slovenskem v prvi polovici 19. stoletja.",
tominc_authentic: [
{
src: "assets/images/jozef_tominc_real/Avtoportret%20ob%20oknu.jpg",
title: "Avtoportret ob oknu",
author: "Jožef Tominc",
trained: true,
},
{
src: "assets/images/jozef_tominc_real/Cecilija%20grofica%20Auersperg.jpg",
title: "Cecilija grofica Auersperg",
author: "Jožef Tominc",
trained: true,
},
{
src: "assets/images/jozef_tominc_real/Družina%20dr.%20Frušića.jpg",
title: "Družina dr. Frušića",
author: "Jožef Tominc",
trained: true,
},
{
src: "assets/images/jozef_tominc_real/Kapitan%20Polić.jpg",
title: "Kapitan Polić",
author: "Jožef Tominc",
trained: true,
},
{
src: "assets/images/jozef_tominc_real/Portret%20očeta.jpg",
title: "Portret očeta",
author: "Jožef Tominc",
trained: true,
},
{
src: "assets/images/jozef_tominc_real/Tri%20dame%20iz%20družine%20Moscon.jpg",
title: "Tri dame iz družine Moscon",
author: "Jožef Tominc",
},
],
sternen_txt:
"Sternen je bil risar, restavrator, grafik in pedagog, predvsem pa tehnično odlično izurjen slikar. Med slovenskimi impresionisti je edini dokončal akademijo, in to na Dunaju. Živel je tudi v Münchnu in hodil v Ažbetovo slikarsko šolo. Uveljavil se je kot slikar ženske figure, v njegovem opusu pa prevladujejo akti, portreti in vedute. Njegov slikarski princip je temeljil na stvarnem opazovanju predmeta in ne v čustvenem vživljanju, kot impresionist pa se je razkrival z obravnavo optičnih učinkov, z dinamičnim kadriranjem in s pastoznim nanašanjem barve.",
sternen_authentic: [
{
src: "assets/images/matej_sternen_real/Rdeči%20parazol.jpg",
title: "Rdeči parazol",
author: "Matej Sternen",
trained: true,
},
{
src: "assets/images/matej_sternen_real/Rdečelaska.jpg",
title: "Rdečelaska",
author: "Matej Sternen",
},
{
src: "assets/images/matej_sternen_real/Rozi%20Klein.jpg",
title: "Rozi Klein",
author: "Matej Sternen",
trained: true,
},
{
src: "assets/images/matej_sternen_real/Tončka%20Gaber.jpg",
title: "Tončka Gaber",
author: "Matej Sternen",
trained: true,
},
{
src: "assets/images/matej_sternen_real/Akt%20z%20dvignjenima%20rokama.jpg",
title: "Akt z dvignjenima rokama",
author: "Matej Sternen",
trained: true,
},
{
src: "assets/images/matej_sternen_real/Akt.jpg",
title: "Akt",
author: "Matej Sternen",
trained: true,
},
],
ivan_grohar_ai: [
{
src: "./assets/images/ivan_grohar_ai/0.jpg",
title: "Painting of a farmer on snowy field in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/2.jpg",
title: "Painting of a farmer on snowy field in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/3.jpg",
title: "Painting of a farmer on snowy field in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/96.jpg",
title: "Painting of farmers working on a snowy field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/97.jpg",
title: "Painting of farmers working on a snowy field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/98.jpg",
title: "Painting of farmers working on a snowy field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/99.jpg",
title: "Painting of farmers working on a snowy field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/4.jpg",
title: "Painting of countryside in winter in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/6.jpg",
title: "Painting of countryside in winter in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/7.jpg",
title: "Painting of countryside in winter in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/5.jpg",
title: "Painting of countryside in winter in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/76.jpg",
title: "Painting of nature with mountains in background in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/77.jpg",
title: "Painting of nature with mountains in background in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/78.jpg",
title: "Painting of nature with mountains in background in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/79.jpg",
title: "Painting of nature with mountains in background in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/80.jpg",
title: "Painting of trees in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/81.jpg",
title: "Painting of trees in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/82.jpg",
title: "Painting of trees in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/83.jpg",
title: "Painting of trees in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/92.jpg",
title: "Painting of a forest with trees in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/93.jpg",
title: "Painting of a forest with trees in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/94.jpg",
title: "Painting of a forest with trees in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/95.jpg",
title: "Painting of a forest with trees in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/10.jpg",
title: "Painting of a fields in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/11.jpg",
title: "Painting of a field in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/12.jpg",
title: "Painting of a field in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/13.jpg",
title: "Painting of a field in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/14.jpg",
title: "Painting of a snowy field in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/15.jpg",
title: "Painting of a snowy field in <ivan-grohar> style",
},
{
src: "./assets/images/ivan_grohar_ai/60.jpg",
title: "Painting of countryside in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/61.jpg",
title: "Painting of countryside in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/62.jpg",
title: "Painting of countryside in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/63.jpg",
title: "Painting of countryside in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/64.jpg",
title: "Painting of countryside in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/65.jpg",
title: "Painting of countryside in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/66.jpg",
title: "Painting of countryside in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/67.jpg",
title: "Painting of countryside in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/16.jpg",
title: "Painting of a snowy city in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/17.jpg",
title: "Painting of a snowy city in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/18.jpg",
title: "Painting of a snowy city in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/19.jpg",
title: "Painting of a snowy city in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/20.jpg",
title: "Painting of a snowy city in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/21.jpg",
title: "Painting of a snowy city in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/22.jpg",
title: "Painting of a snowy city in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/23.jpg",
title: "Painting of a city in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/24.jpg",
title: "Painting of a city in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/25.jpg",
title: "Painting of a city in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/26.jpg",
title: "Painting of a city in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/27.jpg",
title: "Painting of a city in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/28.jpg",
title: "Painting of a blossoming cherry tree in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/29.jpg",
title: "Painting of a blossoming cherry tree in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/30.jpg",
title: "Painting of a blossoming cherry tree in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/31.jpg",
title: "Painting of a blossoming cherry tree in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/32.jpg",
title: "Painting of a poppy in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/33.jpg",
title: "Painting of a red cherry tree in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/34.jpg",
title: "Painting of a red cherry tree in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/35.jpg",
title: "Painting of a red cherry tree in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/36.jpg",
title: "Painting of farmers on winter fields in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/37.jpg",
title: "Painting of farmers on winter fields in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/38.jpg",
title: "Painting of farmers on winter fields in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/39.jpg",
title: "Painting of farmers on winter fields in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/40.jpg",
title: "Close up portrait of a woman in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/41.jpg",
title: "Close up portrait of a woman in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/42.jpg",
title: "Close up portrait of a woman in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/43.jpg",
title: "Close up portrait of a woman in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/44.jpg",
title: "Close up portrait of a woman in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/45.jpg",
title: "Close up portrait of a woman in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/46.jpg",
title: "Close up portrait of a woman in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/47.jpg",
title: "Close up portrait of a woman in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/48.jpg",
title: "Painting of a person on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/49.jpg",
title: "Painting of a person on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/50.jpg",
title: "Painting of a person on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/51.jpg",
title: "Painting of a people working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/52.jpg",
title: "Painting of a people working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/53.jpg",
title: "Painting of a people working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/54.jpg",
title: "Painting of a people working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/55.jpg",
title: "Painting of a people working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/56.jpg",
title: "Painting of a people working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/57.jpg",
title: "Painting of a people working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/58.jpg",
title: "Painting of a people working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/59.jpg",
title: "Painting of a people working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/68.jpg",
title: "Painting of working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/69.jpg",
title: "Painting of working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/70.jpg",
title: "Painting of working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/71.jpg",
title: "Painting of working on the field in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/72.jpg",
title: "Painting of fields in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/73.jpg",
title: "Painting of fields in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/74.jpg",
title: "Painting of fields in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/75.jpg",
title: "Painting of fields in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/84.jpg",
title: "Farmers having dinner on the countryside in style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/85.jpg",
title: "Farmers having dinner on the countryside in style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/86.jpg",
title: "Farmers having dinner on the countryside in style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/87.jpg",
title: "Farmers having dinner on the countryside in style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/88.jpg",
title: "Farmers having dinner on the countryside in style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/89.jpg",
title: "Farmers having dinner on the countryside in style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/90.jpg",
title: "Painting of people on the fields in the style of <ivan-grohar>",
},
{
src: "./assets/images/ivan_grohar_ai/91.jpg",
title: "Painting of people on the fields in the style of <ivan-grohar>",
},
],
"matej_sternen_ai": [
{
"src": "./assets/images/matej_sternen_ai/40.jpg",
"title": "Painting in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/41.jpg",
"title": "Painting in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/42.jpg",
"title": "Painting in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/43.jpg",
"title": "Painting in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/44.jpg",
"title": "Painting in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/45.jpg",
"title": "Painting in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/46.jpg",
"title": "Painting in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/47.jpg",
"title": "Painting in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/88.jpg",
"title": "Painting in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/48.jpg",
"title": "Painting of a wedding couple in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/49.jpg",
"title": "Painting of a wedding couple in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/50.jpg",
"title": "Painting of a wedding couple in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/51.jpg",
"title": "Painting of a wedding couple in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/52.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/53.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/54.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/55.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/56.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/57.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/58.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/59.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/60.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/61.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/62.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/63.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/64.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/65.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/66.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/67.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/68.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/69.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/70.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/71.jpg",
"title": "Portrait of a victorian woman sitting on a chair in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/72.jpg",
"title": "Painting of a girl in style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/78.jpg",
"title": "Portrait of a girl lying on a bed in style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/79.jpg",
"title": "Portrait of a girl lying on a bed in style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/80.jpg",
"title": "Portrait of a girl lying on a bed in style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/81.jpg",
"title": "Portrait of a girl lying on a bed in style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/82.jpg",
"title": "Portrait of a girl lying on a bed in style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/83.jpg",
"title": "Portrait of a girl lying on a bed in style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/92.jpg",
"title": "Painting of a naked woman body in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/93.jpg",
"title": "Painting of a naked woman body in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/94.jpg",
"title": "Painting of a naked woman body in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/95.jpg",
"title": "Painting of a naked woman body in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/105.jpg",
"title": "Painting of a girl posing in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/106.jpg",
"title": "Painting of a girl posing in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/107.jpg",
"title": "Painting of a girl posing in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/108.jpg",
"title": "Painting of a girl posing on a sofa in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/110.jpg",
"title": "Painting of a girl posing on a sofa in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/111.jpg",
"title": "Painting of a girl posing on a sofa in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/112.jpg",
"title": "Painting of a naked girl on a bed in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/117.jpg",
"title": "Painting of a naked girl on a bed in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/118.jpg",
"title": "Painting of a naked girl on a bed in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/119.jpg",
"title": "Painting of a naked girl on a bed in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/120.jpg",
"title": "Painting of a victorian street in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/121.jpg",
"title": "Painting of a victorian street in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/122.jpg",
"title": "Painting of a victorian street in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/123.jpg",
"title": "Painting of a victorian street in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/0.jpg",
"title": "Painting of city streets in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/1.jpg",
"title": "Painting of city streets in the style of <matej-sternen>"
},
{
"src": "./assets/images/matej_sternen_ai/2.jpg",
"title": "Painting of city streets in the style of <matej-sternen>"
},