fractals Questions

5

Solved

I am trying to make a program for visual analyzing Fractal sets. I choose Processing 3 as drawing library and JavaFX for the user interface. There are some screenshots of the current state: My GU...
Changeful asked 8/10, 2018 at 20:39

1

I am trying to colour MandelBrot using HSV values and the PIL Library. Even after multiple tries fiddling with HSV values, I could not achieve the desired effect. here is what I currently have ...
Oyster asked 10/3, 2018 at 18:54

4

I'm a student from the outside world with no previous programming experience. I have been learning Python as an extension of my math class. I have been trying to create a program that generates fra...
Cumings asked 22/4, 2014 at 16:2

6

Solved

I am trying to implement buddhabrot fractal. I can't understand one thing: all implementations I inspected pick random points on the image to calculate the path of the particle escaping. Why do the...
Tidemark asked 29/9, 2009 at 14:38

3

I am trying to build a fractal tree based on requirement to build it. Something is wrong. Please assist. I am trying to build fractal tree based on the level requested. Here the levels are getting ...
Sonyasoo asked 22/5, 2016 at 17:18

1

This is actually my first question on stackoverflow :) Firstly, I wanted to say that I am new to coding and I am wanting to get an understanding of some syntax. Basically, I am following a tutorial...
Kayleigh asked 9/5, 2021 at 14:3

3

Solved

I am in a position where relatively low resolution images are provided (via an API, higher resolution images are not available) and high resolution images need to be generated. I've taken a look a...

1

I'm looking for a way to estimate the distance to the boundary of the Mandelbrot set from a point inside of it for use in a GLSL shader. This page links to various resources online touching on the ...
Sleight asked 27/12, 2020 at 17:25

3

Solved

I'm programming the Mandelbrotset with C++ using OpenGL, but I've run into a problem: the floats I'm sending to and calculating in my shader can only fit a certain amount of decimal places. So if I...
Marcus asked 25/11, 2020 at 18:14

8

Solved

My problem is difficult to explain. I want to create a function that contains nested for loops, the amount of which is proportional to an argument passed to the function. Here's a hypotheti...
Laurettelauri asked 25/8, 2011 at 7:23

12

Solved

I do not have any experience with programming fractals. Of course I've seen the famous Mandelbrot images and such. Can you provide me with simple algorithms for fractals. Programming language doe...
Vishinsky asked 8/1, 2009 at 21:7

1

Solved

There do exists so-called hyperoperation sequence. It works like you construct multiplication a*b=a+a+a+a...+a with many additions of a repeated b times. Then there goes exponentiation a^b = a*a*a*...
Kraut asked 23/6, 2019 at 16:37

1

I want to pan while zooming into a Mandelbrot set so that the fractal portion of the function stays within the window. The code outputs a series of png images to later be made into a video. Right n...
Bladder asked 24/4, 2019 at 13:10

2

Solved

I'm researching the various types of noise for terrain generation and I'm a little confused regarding when noise becomes perlin noise and when perlin noise becomes fbm. I'm hoping somebody could cl...
Orissa asked 8/6, 2013 at 12:26

1

Solved

I've been successful in coloring the Mandelbrot-set although I can't zoom in very far until it becomes "blurry" and the pattern stops. I fix this by increasing the max_iteration, this works but I g...
Muttra asked 18/5, 2019 at 3:27

7

Solved

I'm currently writing a program to generate really enormous (65536x65536 pixels and above) Mandelbrot images, and I'd like to devise a spectrum and coloring scheme that does them justice. The wikip...
Coldhearted asked 15/12, 2008 at 19:26

8

Fractals have always been a bit of a mystery for me. What practical uses (beyond rendering to beautiful images) are there for fractals in the various programming problem domains? And please, don't...
Fermium asked 15/1, 2010 at 21:56

1

Solved

I have some images for which I want to calculate the Minkowski/box count dimension to determine the fractal characteristics in the image. Here are 2 example images: 10.jpg: 24.jpg: I'm using...
Flume asked 28/6, 2017 at 3:35

0

Is there any practical way to perform calculations such as those involved in generating the Mandelbrot Set for values for precise that what double or long double can provide? I was thinking of poss...
Malefaction asked 30/3, 2017 at 12:59

1

Solved

This method of image scanning based on Hilbert Curve. Curve looks like (from 1 to 6 order): It can be used for image scan. So, for example, my code for 3-order curve is: Hilbert=[C(1,1) C(1,2) C...

1

Solved

So for my current university paper we are meant to create a Sierpinksi Triangle and Recursively draw new triangles inside. The original code we got was this: import sys, pygame # a function that...
Fairish asked 2/8, 2015 at 23:15

1

Solved

I have a great interest in fractals but did not have the opportunity to implement them until recently. I first implemented a mandelbrot set in black and white then I tried to add colors to it. Her...
Halfcock asked 16/4, 2015 at 2:34

7

Solved

I've heard that one can encrypt data using drawings of the Mandlebrot set, and that this encryption algorithm is quantum-safe (can't be broken with a quantum computer, unlike many commonly-used alg...
Annettaannette asked 1/8, 2009 at 6:51

1

Solved

I need an algorithm or a method to generate a color palette to Color the Julia set images. When using the escape time algorithm to generate the image I for example come up with the following image:...
Residual asked 17/5, 2014 at 13:4

© 2022 - 2024 — McMap. All rights reserved.