View allAll Photos Tagged recursive
See the image before this one to see the real design. The earings are now the exact copy of the whole design.
Done with Gimp, mathmap, and some iterated function systems.
Fascination with the golden section and its strangely recursive nature is very old and has a long history. It features prominently in some very ancient monuments, such as the Great Pyramid. Fibonacci gave us his famous series in the 12th century. Mandelbrot's fractal dimensionality and recursive self similarities are only half a century old.
So where did this strange creature come from? It's named after the region of Italy in which it was first grown and used. Whether it's a natural variety or a cultivated hybrid is not known. Below is a link to an excellent essay on its gastronomic and mathematical delights by writer Sally Levitt Steinberg.
artsfuse.org/5365/food-muse-resplendent-romanesco-rhapsody/
While it's easy enough to cook it, e.g. like its relatives broccoli or cauliflower, it's rather difficult to cook well in a manner which does justice to its originality and subtlety. The same goes for photographing it :-) This photograph is a draft, an initial exploration of the territory. I used f16 to try for more depth of field in such a close shot, well into diffraction softened territory, and with an entirely green image the diffraction seem to have given it a green hazy mistiness as though underwater. Perhaps eating it will help me to have some ideas about lighting it.
Original: DSC06077RWX
Yesterday I was obsessed by the idea of a video falling into itself.
After thinking all day long on how to techically realize it, I finally had the illumination.
Enjoy it, music by PinkFloyd.
Folded from an octagon of kraft paper.
A refold with an extra level than the previous one.
Diagrams in Origami Deutschland 2019 and in Origami Record 2019-3.
Folded from an octagon.
Front at top and back at the bottom.
Photo diagrams kindly shared by the author at www.flickr.com/photos/dasssa/sets/72157626888588456
Diagrams also in Meenakshi's book Wondrous One Sheet Origami.
This photo of the two children is in a presentation folder fromKeith Portrait Detroit as seen to the left. The other photo was tucked inside and on the back it reads "May '53 Me and just two of my Kinder (How about yours?)"
Cloud Gate - Anish Kapoor
Millenium Park, Chicago, Illinois
en.wikipedia.org/wiki/Cloud_Gate
Sam Rohn :: Location Scout :: New York City
*******************************************************************************
This image and its name are protected under copyright laws.
All their rights are reserved to my own and unique property.
Any download, copy, duplication, edition, modification,
printing, or resale is stricly prohibited.
*******************************************************************************
#Trump as #Selfie
Art Series by @oligoldsmith
I am sharing this body of work under creative commons - feel free to use as is or to further remix etc. with attribution as dofollow hyperlink to to my website (oligoldsmith.com)
November 2016
Experiments with depictions of 2016 American political leaders - Donald Trump primarily and Hillary Clinton by Artist Oli Goldsmith (oligoldsmith.com/). Most resulting images surround depicting Trump, via digital processing methods similar to 'PhotoMosaic' techniques - as groups of imagery scraped from the web relating to the #Selfie genre of self-portrait snapshot popularized on social media and Instagram.
Other images play with #Trump as #Clinton as #Trump - involving recursive levels of initially producing a selection of images of Clinton made of Trump images, then used as foundation to build new Trump representation.
I will for now at least leave any interpretation of imagery as far as implied meanings etc. to viewer.
I typically lean away from overtly political, heavy-handed 'i mean this you must know and should think so too if possible' messaging in my work. While some of the pieces in this body of experimental digital artworks tend toward a fairly simple reading (yes I am suggesting there may be very little actual difference in meaningful outcomes between candidates in #trump as #clinton as #trump recursive mashups!) hopefully the oddness of the imagery itself and range of #SELFIE related and actual selfie images blend in these pictures in unexpected, possibly awkward ideally non-boring ways!
My work tends towards ambiguous and surrealistic compositions that consciously invite viewers to collaborate in exploring my pictures.
check out my online portfolio site:
you can get in touch via my primary site:
my facebook page:
www.facebook.com/oligoldsmitharts/
and art shop - check out the collectible limited edition kits!
thanks for checking out my work! Oli
Inside the center of the modified Menger Sponge. Experimenting with the new "equisolid" projection.
Modeled in Structure Synth, rendered in sunflow, reprojected in hugin.
©2009 David C. Pearson, M.D.
LOBB (Large on black background)
Nikon D300 with a 16-85mm @ 16mm and f/3,5.
ISO 2000, exposed for 1/15th of a second.
Noise-reduction and some manipulation (the TV) in Photoshop.
Color-correction in Lightroom.
Probably it's not true that it was alone.... I remember there were others. However, the way it is leaning and the void behind make me think it was left alone in a cold environment..... I konw I quite recursive....
Third shot from my last Fuji IT-N internegative taken in Italy with my Tamron 90mm lens.
A 3-unit Menger sponge contains 27 cells (3x3x3). This gives 2^27 = 134217728 possible recursive patterns (too many).
Now if we only want symmetric structures (under the symmetry group for the cube), there are only four different types of cells in the sponge, which we can label according to their distance from the center cube:
Distance 0: the cube center cell
Distance 1: the 6 side center cells
Distance 2: the 12 cells two steps away.
Distance 3: the 8 corner cells.
Now, this means there are only 16 (2^4) different symmetric unit-3 menger sponges.
Labeling these from 0-15 (using the distances above as base-2 bases) gives a natural enumeration. The original Menger cube ((lower left corner) is number 12 with this enumeration (It uses Distance 2 and 3 patterns = 1100 in binary) .
The 16 possible Mengers are depicted above. They are drawn to level 2 (a maximum of 9x9x9=729 cells), but the recursion level may be increased in the code below.
The EisenScript is below (notice that the preprocessor commands require a version of Structure Synth from SVN (post 0.8.5) - so this will not work with the current binary releases). The recursion level may be changed using the 'maxdepth' parameter:
// ---- Set the bit pattern of the Menger enumeration here.
#define DISTANCE0 OFF
#define DISTANCE1 OFF
#define DISTANCE2 ON
#define DISTANCE3 OFF
#define WIDTH 0.05
#define STEP 10
// Camera settings. Place these before first rule call.
set translation [0.566876 -3.52063 -20]
set rotation [0.596494 -0.797386 0.0913825 0.253351 0.295103 0.921269 -0.761576 -0.526383 0.378044]
set pivot [0 0 0]
set scale 5.35875
set background #fff
ON
rule ON maxdepth 1 > MyBox {
{ s 1/3 } DISTANCE0
{ s 1/3 x -1 } DISTANCE1
{ s 1/3 x +1 } DISTANCE1
{ s 1/3 y -1 } DISTANCE1
{ s 1/3 y +1 } DISTANCE1
{ s 1/3 z -1 } DISTANCE1
{ s 1/3 z +1 } DISTANCE1
{ s 1/3 x -1 y -1 } DISTANCE2
{ s 1/3 x 1 y -1 } DISTANCE2
{ s 1/3 y -1 z -1 } DISTANCE2
{ s 1/3 y -1 z +1 } DISTANCE2
{ s 1/3 x -1 y 1 } DISTANCE2
{ s 1/3 x 1 y 1 } DISTANCE2
{ s 1/3 y 1 z -1 } DISTANCE2
{ s 1/3 y 1 z +1 } DISTANCE2
{ s 1/3 x -1 z -1 } DISTANCE2
{ s 1/3 x -1 z +1 } DISTANCE2
{ s 1/3 x 1 z -1 } DISTANCE2
{ s 1/3 x 1 z +1 } DISTANCE2
{ s 1/3 x 1 y -1 z -1 } DISTANCE3
{ s 1/3 x -1 y -1 z -1} DISTANCE3
{ s 1/3 x -1 y -1 z +1} DISTANCE3
{ s 1/3 x 1 y -1 z +1 } DISTANCE3
{ s 1/3 x -1 y 1 z -1 } DISTANCE3
{ s 1/3 x -1 y 1 z +1 } DISTANCE3
{ s 1/3 x 1 y 1 z -1 } DISTANCE3
{ s 1/3 x 1 y 1 z +1 } DISTANCE3
}
// ---- All this below is just to improve the visual style. A single box would do the job
rule MyBox {
{ s 0.9 color white } box
{ color black } frame
}
rule frame {
{ s WIDTH 1 WIDTH x STEP z STEP } box
{ s WIDTH 1 WIDTH x STEP z -STEP } box
{ s WIDTH 1 WIDTH x -STEP z STEP } box
{ s WIDTH 1 WIDTH x -STEP z -STEP } box
{ s 1 WIDTH WIDTH y STEP z STEP } box
{ s 1 WIDTH WIDTH y STEP z -STEP } box
{ s 1 WIDTH WIDTH y -STEP z STEP } box
{ s 1 WIDTH WIDTH y -STEP z -STEP } box
{ s WIDTH WIDTH 1 y STEP x STEP } box
{ s WIDTH WIDTH 1 y STEP x -STEP } box
{ s WIDTH WIDTH 1 y -STEP x STEP } box
{ s WIDTH WIDTH 1 y -STEP x -STEP } box
}
rule Off {
}
Best viewed large
Made with Mandelbulb 3d
See more photos and abstract drawings in my gallery on DeviantArt:
Thank you!
#TRUMP as #CLINTON as #TRUMP - recursive electoral art loops by @oligoldsmith
#Trump as #Selfie
Art Series by @oligoldsmith
I am sharing this body of work under creative commons - feel free to use as is or to further remix etc. with attribution as dofollow hyperlink to to my website (oligoldsmith.com)
November 2016
Experiments with depictions of 2016 American political leaders - Donald Trump primarily and Hillary Clinton by Artist Oli Goldsmith (oligoldsmith.com/). Most resulting images surround depicting Trump, via digital processing methods similar to 'PhotoMosaic' techniques - as groups of imagery scraped from the web relating to the #Selfie genre of self-portrait snapshot popularized on social media and Instagram.
Other images play with #Trump as #Clinton as #Trump - involving recursive levels of initially producing a selection of images of Clinton made of Trump images, then used as foundation to build new Trump representation.
I will for now at least leave any interpretation of imagery as far as implied meanings etc. to viewer.
I typically lean away from overtly political, heavy-handed 'i mean this you must know and should think so too if possible' messaging in my work. While some of the pieces in this body of experimental digital artworks tend toward a fairly simple reading (yes I am suggesting there may be very little actual difference in meaningful outcomes between candidates in #trump as #clinton as #trump recursive mashups!) hopefully the oddness of the imagery itself and range of #SELFIE related and actual selfie images blend in these pictures in unexpected, possibly awkward ideally non-boring ways!
My work tends towards ambiguous and surrealistic compositions that consciously invite viewers to collaborate in exploring my pictures.
check out my online portfolio site:
oli.pics/
you can get in touch via my primary site:
oligoldsmith.com/
my facebook page:
www.facebook.com/oligoldsmitharts/
and art shop - check out the collectible limited edition kits!
oliart.myshopify.com/
thanks for checking out my work! Oli
I wrote a Processing applet to recursively cut an image into progressively smaller quadrilaterals until either the quad was tiny or the color variation in the quad was below a chosen threshold. Added black border to make the quads more visible.
Quadrilaterals took a little more tweaking than triangles to keep them from getting too "spiky".
Structure Synth / Sunflow render. This is just a variation on the other triangle renders.
set maxdepth 11
r2
rule r2
{
{rz -60 rx 90 x -0.5 s 2/3 hue 40 } r2
{rz 60 rx 90 x -0.5 s 2/3 hue 40 } r2
{rz 180 rx 90 x -0.5 s 2/3 hue 40} r2
r1
}
rule r1
{
{rz 60 x 1/3 s 0.10 1 0.1 } whitebox
{rz 180 x 1/3 s 0.10 1 0.1 } whitebox
{rz 300 x 1/3 s 0.10 1 0.1 } whitebox
}
rule whitebox
{
{s 1.75 hue 0.0 sat 0.0 b 1.0} box
}
#Trump as #Selfie
Art Series by @oligoldsmith
I am sharing this body of work under creative commons - feel free to use as is or to further remix etc. with attribution as dofollow hyperlink to to my website (oligoldsmith.com)
November 2016
Experiments with depictions of 2016 American political leaders - Donald Trump primarily and Hillary Clinton by Artist Oli Goldsmith (oligoldsmith.com/). Most resulting images surround depicting Trump, via digital processing methods similar to 'PhotoMosaic' techniques - as groups of imagery scraped from the web relating to the #Selfie genre of self-portrait snapshot popularized on social media and Instagram.
Other images play with #Trump as #Clinton as #Trump - involving recursive levels of initially producing a selection of images of Clinton made of Trump images, then used as foundation to build new Trump representation.
I will for now at least leave any interpretation of imagery as far as implied meanings etc. to viewer.
I typically lean away from overtly political, heavy-handed 'i mean this you must know and should think so too if possible' messaging in my work. While some of the pieces in this body of experimental digital artworks tend toward a fairly simple reading (yes I am suggesting there may be very little actual difference in meaningful outcomes between candidates in #trump as #clinton as #trump recursive mashups!) hopefully the oddness of the imagery itself and range of #SELFIE related and actual selfie images blend in these pictures in unexpected, possibly awkward ideally non-boring ways!
My work tends towards ambiguous and surrealistic compositions that consciously invite viewers to collaborate in exploring my pictures.
check out my online portfolio site:
you can get in touch via my primary site:
my facebook page:
www.facebook.com/oligoldsmitharts/
and art shop - check out the collectible limited edition kits!
thanks for checking out my work! Oli
760 Likes on Instagram
50 Comments on Instagram:
slickwillie719: @kjetil_avtattoo check out this dudes work. Man geometric tattoos are fuckin insane
mrs_couhie: This does not cease to fascinate me
nbiko: @hey_bez
timrendoo: @alyssafinazzo @james_laganke this artist has some dope work
Best viewed large
Made with Mandelbulb 3d
See more photos and abstract drawings in my gallery on DeviantArt:
Thank you!
Depeche Mode @ Hyde Park, London, UK. Some of the realtime live video effects behind them on the big screens were really cool.
set maxdepth 9
r2
rule r2
{
{rz 60 rx 90 x -1 s 2/3 hue 40 } r2
{rz 180 rx 90 x -1 s 2/3 hue 40 } r2
{rz 300 rx 90 x -1 s 2/3 hue 40 } r2
r1
}
rule r1
{
{rz 0 x 1 s 0.10 1 0.1 } whitebox
{rz 60 x 1 s 0.10 1 0.1 } whitebox
{rz 120 x 1 s 0.10 1 0.1 } whitebox
{rz 180 x 1 s 0.10 1 0.1 } whitebox
{rz 240 x 1 s 0.10 1 0.1 } whitebox
{rz 300 x 1 s 0.10 1 0.1 } whitebox
}
rule whitebox
{
{s 1.2 hue 90.0 sat 0.0 b 1.0} box
}
{z 0.9 s 1.2 } sphere
The Forum in Bath, formerly an art deco cinema, is now managed by Bath Christian Trust. See this 360ºx180º equirectangular panorama interactively from the inside here (needs shockwave) or with Seb's simple flash viewer here.
There's also a fun recursive remapping of it here.