This image is a landmark.
(I would have posted it last night, but DA went down for maintenance)
It is the first full sized rendering I have done without the aid of Photoshop to smooth the details. This image was rendered 8x12 at 300dpi. I framed it in Photoshop but have done no resizing.
1x1 pixel area sampled with an unbiased Monte Carlo integration over a 5x5 stratification.
--
It turns out that an eerie type of chaos can lurk just behind a façade of order and yet, deep inside the chaos lurks an even eerier type of order. Douglas Hofstadter
looks good! i'm pleased that you didn't use that nasty hacked-gaussian filter for this released image
maybe you're getting tired of my suggesting it, but try a proper reconstruction filter like the tent filter i described, and you'll be amazed how much better it looks than even this result... the box filter tends to blur the image too much, while also letting extraneous high frequency informtion leak through; the tent filter does a lot better in both cases, and is still really easy to implement.
I need to review what you said about the tent filter. I think at the time it didn’t make much sense because I was still averaging exit values instead of colors.
--
It turns out that an eerie type of chaos can lurk just behind a façade of order and yet, deep inside the chaos lurks an even eerier type of order. Douglas Hofstadter
the tent filter is, again, just (1-|x|)(1-|y|), where x and y are in [-1,+1] around the sample location at (0,0). obviously your pixel's sample location isn't always at (0,0), it's at (x,y), so then you just define x' and y' to be relative to the sample location (x,y) instead of (0,0).
As it goes right now I think I may be doing this already.
I have a test point, whose [real, complex] value is usually much less than one. However, I treat the area around the sample point as a unit area. The test areas do not overlap, but do touch. They are also stratified, and I average the sum of the color components by the number of stratifications.
Now looking at your description I have one question, am I supposed to do something with this product? (1-|x|)(1-|y|)
I am assuming that the (x,y) values are relative to a unit square centered at (0,0).
--
It turns out that an eerie type of chaos can lurk just behind a façade of order and yet, deep inside the chaos lurks an even eerier type of order. Douglas Hofstadter
that's your weight, your "bias" as you formerly called it. so let's say you want to work out the colour for pixel (10, 4); you first offset by 0.5 to get to the centre of that pixel's "area", then sample a full pixel to the left and right, above and below of (10.5, 4.5) - that is from (9.5,3.5) to (11.5, 5.5) - weighting each sample you take inside this region by (1-|x-10.5|) * (1-|y-4.5|). now i'm not 100% sure that the tent filter as given is normalised, and i really don't feel like doing a double integral to confirm it, so you might like to check that with a high quality monte carlo integration - if it gives like 1.00001 then you can be reasonably sure it's normalised.
btw, i suspect you weren't doing the offsetting by 0.5 previously, which explains the slight offset in the comparison images you posted in your scraps.
btw2, how deep a zoom is this image?
btw3, could i please get the equation for the palette you used in this image?
LOL, lots of btw! I'll do my best to try and find out the info for you.
As for some of the posts in my scraps, God only knows what bugs I had in the code.
--
It turns out that an eerie type of chaos can lurk just behind a façade of order and yet, deep inside the chaos lurks an even eerier type of order. Douglas Hofstadter
Zoom is 4096 or 1/4096 as used inside the program.
Iterations 475
The color equations are normalized so the max iterations is 2PI and the return values range between 0~255.
r = sin(15x) +1
g = sin(15x + .5PI) +1
b = sin(15x + PI) + 1
--
It turns out that an eerie type of chaos can lurk just behind a façade of order and yet, deep inside the chaos lurks an even eerier type of order. Douglas Hofstadter
DeviantART and Wacom are proud to present the second Intuos4 "Bring Your Vision To Life" contest! Open to all artists all over the world, we challenge you to show us your dreams and aspirations for the future. Get drawing!
To Write Love on Her Arms is a non-profit movement dedicated to presenting hope and finding help for people struggling with depression, addiction, self-injury and suicide. TWLOHA exists to encourage, inform, inspire and also to invest directly into treatment and recovery. For more information, please visit the official site: [link]
This feature is in honor of TWLOHA, and to inform you that FRIDAY, NOVEMBER 13TH is national To Write Love On Her Arms Day.
So join in, particapate, hug a friend, tell someone you love them, hold the door for a stranger, ask for help, talk to someone you normally wouldn't, simply say hello, and write LOVE on your arms The smallest gesture could save a life.
Daily Literature Deviations is a group that is dedicated to bringing literature to the forefront of the deviantArt community. We attempt to accomplish this by daily featuring Literature artists from around the community that deserve the recognition, but are not getting it.
Each day we will feature 5 deviations from the Literature categories in a News Article. In order to support the artists that we feature, we ask that you the news article as well as check out the individual pieces. We understand that each day you may not be able to check out each and every one of the pieces, everyone has their own things going on. We just ask that you make an attempt to help support the growing Literature community.
Daily Literature Deviations is a group that is dedicated to bringing literature to the forefront of the deviantArt community. We attempt to accomplish this by daily featuring Literature artists from around the community that deserve the recognition, but are not getting it.
Each day we will feature 5 deviations from the Literature categories in a News Article. In order to support the artists that we feature, we ask that you the news article as well as check out the individual pieces. We understand that each day you may not be able to check out each and every one of the pieces, everyone has their own things going on. We just ask that you make an attempt to help support the growing Literature community.
Starting Friday, Nov. 13th, we'll be having a 30% off discount on all greeting cards! That's the biggest prints product discount we've offered to date. Read on for tips to make the most of this sake and earn extra cash for the holidays!
The Deviousness Award is an accolade which is traditionally handed out on the 1st of every month to one trully outstanding deviant. `Cyantre is one of the most helpful deviants within our community. With a positive attitude and a resourceful mind, you can always find him providing support and encouragement to those in need. Always looking for ways in which he can get more involved in our community, John's positive presence is to be aspired to. A well respected poet, John is a must-have on your deviantWATCH to make sure that you don't miss out on your dose of community inspiration. It's with great pleasure that the Deviousness Award for November 2009 goes to... Read More
Comments
--
It turns out that an eerie type of chaos can lurk just behind a façade of order and yet, deep inside the chaos lurks an even eerier type of order. Douglas Hofstadter
maybe you're getting tired of my suggesting it, but try a proper reconstruction filter like the tent filter i described, and you'll be amazed how much better it looks than even this result... the box filter tends to blur the image too much, while also letting extraneous high frequency informtion leak through; the tent filter does a lot better in both cases, and is still really easy to implement.
--
It turns out that an eerie type of chaos can lurk just behind a façade of order and yet, deep inside the chaos lurks an even eerier type of order. Douglas Hofstadter
I have a test point, whose [real, complex] value is usually much less than one. However, I treat the area around the sample point as a unit area. The test areas do not overlap, but do touch. They are also stratified, and I average the sum of the color components by the number of stratifications.
Now looking at your description I have one question, am I supposed to do something with this product? (1-|x|)(1-|y|)
I am assuming that the (x,y) values are relative to a unit square centered at (0,0).
--
It turns out that an eerie type of chaos can lurk just behind a façade of order and yet, deep inside the chaos lurks an even eerier type of order. Douglas Hofstadter
btw, i suspect you weren't doing the offsetting by 0.5 previously, which explains the slight offset in the comparison images you posted in your scraps.
btw2, how deep a zoom is this image?
btw3, could i please get the equation for the palette you used in this image?
As for some of the posts in my scraps, God only knows what bugs I had in the code.
--
It turns out that an eerie type of chaos can lurk just behind a façade of order and yet, deep inside the chaos lurks an even eerier type of order. Douglas Hofstadter
Iterations 475
The color equations are normalized so the max iterations is 2PI and the return values range between 0~255.
r = sin(15x) +1
g = sin(15x + .5PI) +1
b = sin(15x + PI) + 1
--
It turns out that an eerie type of chaos can lurk just behind a façade of order and yet, deep inside the chaos lurks an even eerier type of order. Douglas Hofstadter
Previous Page12Next Page