我想在C语言中将Mandelbrot绘制为PPM文件。我的代码可以正常工作,但我的绘制始终为黑色。我有Wikia的这段代码。我成功的关键是思考“阿尔法”(我是这样认为的)。我不知道阿尔法应该是什么。这是我的代码:

#include <stdio.h>
#include <stdlib.h>

#define W 800
#define H 800

//rgb struct
struct RGB {
    int r;
    int g;
    int b;
};
struct RGB picture[W][H];

void draw() {
int i, j, iteration, max_iteration, alfa, color;
float x, y, x0, y0, xtemp;

for(i=0;i<W;++i)
{
    for(j=0;j<H;++j)
    {
         x0 = 1; //scaled x (e.g interval(-2.5, 1))
         y0 = -1; //scaled y (e.g interval(-1, 1))
         x = 0.0;
         y = 0.0;
         iteration = 0;
         max_iteration = 1000;

         while (x*x + y*y < 2*2 && iteration < max_iteration)
         {
             xtemp = x*x - y*y + x0;
             y = 2*x*y + y0;
             x = xtemp;
             iteration = iteration+ 1;
             alfa = x*y; //???
         }

         color = alfa * (iteration / max_iteration);

         picture[i][j].r = color;
         picture[i][j].g = color;
         picture[i][j].b = color;
    }
}
}

int main() {

//variables
int i,j;

draw();

FILE *fp;
fp = fopen("picture.ppm", "w");
fprintf(fp,"P3\n#test\n%d %d\n256\n", W, H);

for (i=0; i < W; ++i)
    {
        for (j=0; j < H; ++j)
        {
        fprintf(fp,"%d %d %d ", picture[i][j].r, picture[i][j].g , picture[i][j].b);
        }
    fprintf(fp, "\n");
    }

fclose(fp);

return 0;
}

最佳答案

在这条线

color = alfa * (iteration / max_iteration);


div iteration / max_iterationint除法,其结果始终为0(如果1,则可能为iteration == max_iteration)。

尝试在float中工作,或像这样重新排列

color = alfa * iteration / max_iteration;


删除括号。但是您必须注意int范围没有被破坏。

话虽如此,看来您不确定自己alfa是什么。我建议使用255,以便获得灰度图像。

关于c - Mandelbrot PPM图纸始终为黑色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34980064/

10-11 23:59