Title: Buddhabrot Gold and Sky Post by: ker2x on December 04, 2010, 12:59:08 AM A work in progress with my rewritten openCL code :
(http://fractals.s3.amazonaws.com/buddhabrot/buddha-gold-and-sky.jpg) Title: Re: Buddhabrot Gold and Sky Post by: ker2x on December 04, 2010, 01:48:28 AM final version (including some histogram correction in gimp, i still have to code it in my opencl code):
(http://fractals.s3.amazonaws.com/buddhabrot/buddha-gold-and-sky-2.jpg) Title: Re: Buddhabrot Gold and Sky Post by: The Rev on December 04, 2010, 02:06:56 AM Nice. It looks very much like a nebula. Perhaps you have created the first Hubblebrot?
The Rev Title: Re: Buddhabrot Gold and Sky Post by: lycium on December 04, 2010, 08:20:07 AM very nice image ker2x!
i'm curious, how are you doing the iter# -> wavelength mapping? it needs to be periodic, so something like sin(iter * freq) re-scaled to be in [400, 700] perhaps. Title: Re: Buddhabrot Gold and Sky Post by: ker2x on December 04, 2010, 05:05:14 PM very nice image ker2x! i'm curious, how are you doing the iter# -> wavelength mapping? it needs to be periodic, so something like sin(iter * freq) re-scaled to be in [400, 700] perhaps. i'm not doing that kind of mapping. my mapping is really simple : Code: if( (iter > minIter) && (x>0) && (y>0) && (x<width) && (y<height) ) and later (on the cpu) : Code: for (int i = 0; i < (buddhaCloo.width) * (buddhaCloo.height); i++) |