-
Notifications
You must be signed in to change notification settings - Fork 0
/
mandelpngt_complex.c++
141 lines (119 loc) · 4.09 KB
/
mandelpngt_complex.c++
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
// mandelpngt.c++
// Copyright (C) 2019
// Norbert Bátfai, batfai.norbert@inf.unideb.hu
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//
// Version history
//
// Mandelbrot png
// Programozó Páternoszter/PARP
// https://www.tankonyvtar.hu/hu/tartalom/tamop412A/2011-0063_01_parhuzamos_prog_linux
//
// https://youtu.be/gvaqijHlRUs
//
#include <iostream>
#include "png++/png.hpp"
#include <sys/times.h>
#include <complex>
using namespace std;
#define MERET 600
#define ITER_HAT 32000
void
mandel (int kepadat[MERET][MERET]) {
// Mérünk időt (PP 64)
clock_t delta = clock ();
// Mérünk időt (PP 66)
struct tms tmsbuf1, tmsbuf2;
times (&tmsbuf1);
// számítás adatai
//float a = -2.0, b = .7, c = -1.35, d = 1.35;
complex<double> a = -2.0 + 0i;
complex<double> b = 0.7 + 0i;
complex<double> c = -1.35 + 0i;
complex<double> d = 1.35 + 0i;
complex<double> szelesseg = MERET + 0i, magassag = MERET + 0i, iteraciosHatar = ITER_HAT + 0i;
// a számítás
complex<double> dx = (b - a) / szelesseg;
complex<double> dy = (d - c) / magassag;
complex<double> reC, imC, reZ, imZ, ujreZ, ujimZ;
// Hány iterációt csináltunk?
int iteracio = 0;
// Végigzongorázzuk a szélesség x magasság rácsot:
for (int j = 0; j < real(magassag); ++j)
{
//sor = j;
for (int k = 0; k < real(szelesseg); ++k)
{
// c = (reC, imC) a rács csomópontjainak
// megfelelő komplex szám
reC = real(a) + k * real(dx);
imC = real(d) - j * real(dy);
// z_0 = 0 = (reZ, imZ)
reZ = 0;
imZ = 0;
iteracio = 0;
// z_{n+1} = z_n * z_n + c iterációk
// számítása, amíg |z_n| < 2 vagy még
// nem értük el a 255 iterációt, ha
// viszont elértük, akkor úgy vesszük,
// hogy a kiinduláci c komplex számra
// az iteráció konvergens, azaz a c a
// Mandelbrot halmaz eleme
while (real(reZ) * real(reZ) + real(imZ) * real(imZ) < 4 && iteracio < real(iteraciosHatar))
{
// z_{n+1} = z_n * z_n + c
ujreZ = reZ * reZ - imZ * imZ + reC;
ujimZ = 2 * real(reZ) * real(imZ) + imC;
reZ = ujreZ;
imZ = ujimZ;
++iteracio;
}
kepadat[j][k] = iteracio;
}
}
times (&tmsbuf2);
cout << tmsbuf2.tms_utime - tmsbuf1.tms_utime
+ tmsbuf2.tms_stime - tmsbuf1.tms_stime << endl;
delta = clock () - delta;
cout << (float) delta / CLOCKS_PER_SEC << " sec" << endl;
}
int
main (int argc, char *argv[])
{
if (argc != 2)
{
cout << "Hasznalat: ./mandelpng fajlnev";
return -1;
}
int kepadat[MERET][MERET];
mandel(kepadat);
png::image < png::rgb_pixel > kep (MERET, MERET);
for (int j = 0; j < MERET; ++j)
{
//sor = j;
for (int k = 0; k < MERET; ++k)
{
kep.set_pixel (k, j,
png::rgb_pixel (255 -
(255 * kepadat[j][k]) / ITER_HAT,
255 -
(255 * kepadat[j][k]) / ITER_HAT,
255 -
(255 * kepadat[j][k]) / ITER_HAT));
}
}
kep.write (argv[1]);
cout << argv[1] << " mentve" << endl;
}