MRaster examples 22.0.0.0
Image Processing Library
Loading...
Searching...
No Matches
mandelbrot_meanOrbit.cpp
Go to the documentation of this file.
1// -*- Mode:C++; Coding:us-ascii-unix; fill-column:158 -*-
2/*******************************************************************************************************************************************************.H.S.**/
3/**
4 @file mandelbrot_meanOrbit.cpp
5 @author Mitch Richling <https://www.mitchr.me>
6 @brief Color Mandelbrot set using the mean orbit.@EOL
7 @std C++20
8 @copyright
9 @parblock
10 Copyright (c) 2025, Mitchell Jay Richling <https://www.mitchr.me> All rights reserved.
11
12 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
13
14 1. Redistributions of source code must retain the above copyright notice, this list of conditions, and the following disclaimer.
15
16 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions, and the following disclaimer in the documentation
17 and/or other materials provided with the distribution.
18
19 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software
20 without specific prior written permission.
21
22 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
24 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
27 DAMAGE.
28 @endparblock
29
30
31cmake --build . -t mandelbrot_meanOrbit && ./mandelbrot_meanOrbit.exe && magick mandelbrot_meanOrbit.tiff -pointsize 40 -draw "gravity northwest fill white text 3,11 'Color: Im'" mandelbrot_meanOrbit_im.png
32cmake --build . -t mandelbrot_meanOrbit && ./mandelbrot_meanOrbit.exe && magick mandelbrot_meanOrbit.tiff -pointsize 40 -draw "gravity northwest fill white text 3,11 'Color: abs'" mandelbrot_meanOrbit_abs.png
33cmake --build . -t mandelbrot_meanOrbit && ./mandelbrot_meanOrbit.exe && magick mandelbrot_meanOrbit.tiff -pointsize 40 -draw "gravity northwest fill white text 3,11 'Color: Re'" mandelbrot_meanOrbit_re.png
34cmake --build . -t mandelbrot_meanOrbit && ./mandelbrot_meanOrbit.exe && magick mandelbrot_meanOrbit.tiff -pointsize 40 -draw "gravity northwest fill white text 3,11 'Color: arg'" mandelbrot_meanOrbit_arg.png
35
36*/
37/*******************************************************************************************************************************************************.H.E.**/
38/** @cond exj */
39
40//--------------------------------------------------------------------------------------------------------------------------------------------------------------
41#include "ramCanvas.hpp"
42
43//--------------------------------------------------------------------------------------------------------------------------------------------------------------
44typedef mjr::ramCanvas3c8b rcT;
45
46//--------------------------------------------------------------------------------------------------------------------------------------------------------------
47int main(void) {
48 std::chrono::time_point<std::chrono::system_clock> startTime = std::chrono::system_clock::now();
49 const int DSCALE = 8;
50 const int USCALE = 8;
51 const int MAXITR = 256;
52 const int width = 1024*USCALE;
53 const int height = 1024*USCALE;
54 rcT theRamCanvas(width, height, -2.2, 0.8, -1.5, 1.5);
55
56# pragma omp parallel for schedule(static,1)
57 for(rcT::coordIntType y=0;y<theRamCanvas.getNumPixY();y++) {
58 for(rcT::coordIntType x=0;x<theRamCanvas.getNumPixX();x++) {
59 int count;
60 std::complex<mjr::ramCanvas1c64F::coordFltType> z(0.0, 0.0);
61 std::complex<mjr::ramCanvas1c64F::coordFltType> c(theRamCanvas.int2realX(x), theRamCanvas.int2realY(y));
62 std::complex<mjr::ramCanvas1c64F::coordFltType> orbit_sum(0.0, 0.0);
63 for(count=0; count<MAXITR ; count++) {
64 orbit_sum += z;
65 z = z * z + c;
66 if (std::abs(z) > 2)
67 break;
68 }
69 if (count == MAXITR) {
70 double clr = (std::arg(orbit_sum / static_cast<double>(MAXITR)-c) + std::numbers::pi) / (2.0*std::numbers::pi);
71 // double clr = std::abs(orbit_sum / static_cast<double>(MAXITR)-c);
72 // double clr = std::real(orbit_sum / static_cast<double>(MAXITR)-c);
73 // double clr = std::imag(orbit_sum / static_cast<double>(MAXITR)-c);
74 theRamCanvas.drawPoint(x, y, rcT::colorType::csCColdeColdToHot::c(mjr::math::ivl::wrapCC(clr, 1.0)));
75 }
76 }
77 }
78
79 if (DSCALE > 1)
80 theRamCanvas.scaleDownMax(DSCALE);
81 theRamCanvas.writeTIFFfile("mandelbrot_meanOrbit.tiff");
82 std::chrono::duration<double> runTime = std::chrono::system_clock::now() - startTime;
83 std::cout << "Total Runtime " << runTime.count() << " sec" << std::endl;
84}
85/** @endcond */
int main(int argc, char *argv[])