31.10.2023 || portugal

Portugal Tech Week

At Portugal Tech Week, we presented a series of installations exploring the evolving relationship between human expression and intelligent systems. Our Magic Mirror appeared as a living, responsive sculpture that reinterpreted each viewer’s presence through real-time transformation shifting from poetic to playful depending on the moment. We exhibited a dual augmented art piece that placed organic creation and AI-generated imagery side by side: one canvas unfolding an artist’s gestures as living video, the other revealing an artificial system dreaming in the artist’s visual language. Across the space, a dedicated screen showcased our experimental AI content, while an additional AR painting from BURST extended the experience into mixed reality. Together, these works formed a continuum between physical and digital creation, inviting guests to witness how perception, technology, and imagination co-produce new forms of art.

related cases

Let’s make magic together

Contact us
// Wait for the DOM to be ready document.addEventListener("DOMContentLoaded", function() { // Get the button element by its ID var button = document.getElementById('controlnetbutton-1'); // Check if the button element exists if(button) { // Add a click event listener to the button button.addEventListener('click', function() { // Trigger the click event of the button on the other page triggerButtonClickOnOtherPage(); }); } // Function to trigger the button click on the other page function triggerButtonClickOnOtherPage() { // You need to replace 'other-page-button-id' with the ID of the button on the other page var otherPageButton = document.getElementById('controlnetbutton'); // Check if the button on the other page exists if(otherPageButton) { // Trigger a click event on the button otherPageButton.click(); } else { console.error('Button on the other page not found!'); } } });