Skip to content

Dolce Vita

George Birbilis edited this page Oct 12, 2017 · 7 revisions

Installation at Anti-Design 2014 (Technopolis, Athens)


DOLCE VITA Konstantinos Grivas, Natasa Kyriakidi, (griik architects), Irene Mavrommati, George Birbilis

The installation attempts a conceptual stroll at the postwar era of optimism using a buffet furniture of the '50s and objects inside it augmented with QR codes, that modify a triptych projection. Both the furniture and the theme of the inner adhesive tapes-try symbolize and image the bourgeois expectation for social rise, affluence, for de-light of the "good life" of the '60s-70s. The pictorial content of the triptychs refers to that era of expectations commenting it in relation to the current crisis and pessimism.

The mechanism of interaction with the physical and digital parts of the buffet refers to the experience of the kid that digs into their grandmother's buffet, to the ritual of giving treats to guests, but also to the modern practice of web searching/browsing with the often unexpected results of it. The three-part structure of the furniture is reflected upon the triptych synthesis of the images. The 17 specially decorated dishes at the inside of the buffet, when served upon the dishes select the theme of the triptych images, which every time is related to the icon depicted on the selected plate.

In result, the buffet obtains a new function: beyond the storage and display of physical objects (dishes, glasses etc.) it allows the storage, seeking and display of digital archive material. A respective process of reuse and re-assigning of semantics could be expanded into other obsolete elements of home furniture.


DOLCE VITA Κωνσταντίνος Γρίβας, Νατάσα Κυριακίδη (griik architects), Ειρήνη Μαυρομμάτη, Γιώργος Μπιρμπίλης

Η εγκατάσταση επιχειρεί μια συνειρμική περιπλάνηση στην μεταπολεμική εποχή αισιοδοξίας χρησιμοποιώντας έναν μπουφέ του '50, και τα αντικείμενα στο εσωτερικό του επαυξημένα με QR codes, που μεταβάλλουν μία τρίπτυχη προβολή. Τόσο ο ίδιος ο μπουφές, όσο και η θεματολογία της μεταγενέστερης εσωτερικής αυτοκόλλητης ταπετσαρίας συμβολίζουν και εικονογραφούν τη μικροαστική προσδοκία για κοινωνική άνοδο, ευμάρεια, για απόλαυση της "καλής ζωής" των δεκαετιών '60-'70. Το εικονογραφικό υλικό των τρίπτυχων αναφέρεται σε αυτήν την εποχή των προσδοκιών σχολιάζοντάς την σε σχέση με την τωρινή κρίση και απαισιοδοξία.

Ο μηχανισμός της διάδρασης με τα φυσικά και ψηφιακά μέρη του μπουφέ αναφέρεται στο βίωμα του παιδιού που σκαλίζει τον μπουφέ της γιαγιάς, στην τελετουργία του τραταρίσματος των επισκεπτών, αλλά και στη σύγχρονη πρακτική του web searching/browsing με τα απροσδόκητα πολλές φορές αποτελέσματά του. Η τριμερής δομή του επίπλου αντανακλάται στην τρίπτυχη σύνθεση των εικόνων. Τα 17 ειδικά διακοσμημένα πιάτα στο εσωτερικό του μπουφέ, όταν σερβίρονται πάνω στο δίσκο επιλέγουν τη θεματική των τρίπτυχων εικόνων, η οποία κάθε φορά σχετίζεται με την παράσταση που φέρει το επιλεγμένο πιάτο.

Έτσι ο συγκεκριμένος μπουφές αποκτάει νέα λειτουργία: πέρα από την αποθήκευση και έκθεση φυσικών αντικειμένων (σερβίτσια, κρύσταλλα κ.α.) επιτρέπει την αρχειοθέτηση, αναζήτηση και προβολή ψηφιακού αρχειακού υλικού. Μια αντίστοιχη διαδικασία επανάχρησης και επανα-νοηματοδότησης θα μπορούσε να επεκταθεί και σε άλλα παρωχημένα στοιχεία οικιακής επίπλωσης.


Hardware implementation:

http://griik.gr/DolceVita/index.html

Software Implementation:

Uses the desktop (WPF) application of Triptych with the following thematic image subfolders that match the images drawn on top of the respective dishes used to carry (under them) respective QR markers: Boat, CarafeWater, CarafeWine, CardGames, Clock, FishDish, FruitBowl, GilbeyFine, Glasses, Globe, Guitar, HorseRiding, Napoleon, ScotsCognac, Smoking, TableLamp, Train. There is also the Startup folder that contains black-and-white retro images that are shown when the installation starts up and before any user has interacted with it.

The middle image is changing with a 4-sec delay, white the left/right image parts change with a 9-sec delay.

Excerpt from MainWindow.xaml.cs source code file:

    const int DEVICE_ID = 0; 

    //if you want to use an external camera with a laptop, better disable the inner camera (or uninstall its driver). Make sure you run the app as an administrator (right click, Properties, Compatibility settings, check the Run as Administrator option). Can disable UAC (User Access Control) to avoid Windows Vista+ security prompts

    const int CAPTURE_WIDTH = 1024;
    const int CAPTURE_HEIGHT = 768;
    const bool PREVIEW_VISIBLE = false;
    const int PREVIEW_WIDTH = 45;
    const int PREVIEW_HEIGHT = 45;
    
    const string URI_PREFIX = "http://bit.ly/GB-";
    const string IMAGE_EXTENSIONS = "jpg|png|bmp"; //GIF not supported
    const string BASE_FOLDER = "Photos";
    const string STARTUP_FOLDER = "Startup";

    const int DELAY_CENTER = 4; //sec
    const int DELAY_SIDES = 9; //sec
Clone this wiki locally