how do i generate fractal images of higher order from an initial image/
조회 수: 6 (최근 30일)
이전 댓글 표시
I have an image which is a fractal (I used Meg Noa's code). I need to generate higher order fractal images from that image.
답변 (1개)
Atharva
2023년 3월 2일
Hi Debasis,
In Matlab, you can generate higher-order fractals by implementing a fractal iteration algorithm. Here is a general outline of the steps :
- Load the initial fractal image into MATLAB using the imread function.
- Define a set of transformation rules as a set of MATLAB functions. Each function should take the current fractal image as a input and return a modified image as output.
- Create a loop that iteratively applies the transformation rules to the current fractal image. For example, you could use a for loop to iterate a fixed number of times .
- Display the final fractal image using the imshow function.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!