• PORTFOLIO
  • PERSONAL PROJECTS
  • About
Menu

Beste Saylar

BESTE SAYLAR
  • PORTFOLIO
  • PERSONAL PROJECTS
  • About
gif3.gif

Turkish art motifs with pixels

February 12, 2020

This project is inspired by Turkish art motifs. It refers to all works of visual art from present Turkey since arrival of Turks in Middle Ages. Turkey also was the home of much significant art produced by earlier cultures like Hitties, Ancient Greeks and Byzantines. Ottoman art its a dominant element of Turkish art before 20th century. It is developed traditional Islamic style with some technical influences from Europe, in to a highly sophisticated style which can be richly decorated in tiles, seen in palaces, mosques and tubes. Arabesque is one of another element that gives form to the Turkish islamic art motifs.

turkish1.jpg
turkish1_16x16.png
turkish2.jpg
Screen Shot 2020-02-12 at 3.37.21 PM.png
turkish3.jpg

This project is written by Processing language. I’ve simply loaded the motifs in to memory and came up with the idea of pointillism. By picking colors out of that motif meanly the image become like a lookup table which the database of colors, I draw circles wherever over the screen so picked colors out of that motif. I’ve draw the circles radius at 10 by 10. After a while, I realized the images were more effective with noStroke(); so I continue that way for the images made with pointillism. It’s taking some time to see the final results of the images for just to make it faster a loop can be done. If we want to see a shimmering version of an image we can always give an alpha to fill(); as a second argument.(I didn’t prefer)

The code is below;

PImage turkish1;
void setup(){
  size(1500,1542);
  turkish1= loadImage("turkish1.jpg");
  background(0);
}
void draw(){
for(int i=0; I<100;i++){
  float x= random(width);
  float y= random(height);
  color c= turkish1.get(int(x),int(y));
  noStroke();
  fill(c);
  ellipse(x,y,10,10);
 }
}

Antique_Konya_Kilim_detail_labelled.jpg

Finally I end by the motifs which are used in handmade traditional Anatolian kilims(flat-woven rugs). My family also have this type of kilim back at home in Istanbul, so I wanted to make a design related with it. If a should give a little information about these rugs; In Turkish Anatolia, village women wove themes significant for their lives into rugs, whether before marriage or during married life.  Some motifs represent desires, such as for happiness and children; others, for protection against threats such as wolves (to the flocks) and scorpions, or against the evil eye. Each pattern has their own arrangement in rug and own meanings.  

bergama.jpeg
← Image Processing, Color ManipulationThe World Pixel by Pixel →

Latest Posts

Featured
Jan 19, 2023
Jan 19, 2023
Jan 19, 2023
Jan 19, 2023
P5.JS Pose Detection
Jan 19, 2023
Jan 19, 2023
Dec 11, 2019
ICM FINAL
Dec 11, 2019
Dec 11, 2019
Nov 20, 2019
SOUND COMPOSITION
Nov 20, 2019
Nov 20, 2019
Nov 6, 2019
Week 9_assignment
Nov 6, 2019
Nov 6, 2019
Nov 2, 2019
Working with Pixels
Nov 2, 2019
Nov 2, 2019
Oct 21, 2019
MIDTERM PROJECT-ICM
Oct 21, 2019
Oct 21, 2019
Oct 11, 2019
Breaking code out of setup() and draw() into functions
Oct 11, 2019
Oct 11, 2019
Sep 28, 2019
MAKING A GALAXY WITH LOOPS
Sep 28, 2019
Sep 28, 2019
Sep 23, 2019
Working on rule-based animation in pairs_week3
Sep 23, 2019
Sep 23, 2019