gpt4 book ai didi

使用 C 中的结构和指针更改图像大小/分辨率

转载 作者:行者123 更新时间:2023-11-30 16:52:12 25 4
gpt4 key购买 nike

我们一直在学校布置一项任务,需要更改图像(反转颜色、切换颜色、旋转 90 度、双倍大小、放大图像),现在我正在尝试通过将分辨率加倍来使其大小加倍,但无法弄清楚如何访问该地址并更改它。我们得到了两个函数,一个可以加载图像,另一个可以保存图像,所以我们不需要担心这一点,我们还得到了两个结构体,一个具有 rgb 值,一个具有高度和宽度(以像素为单位)。

我一直在环顾四周,但没有真正找到任何有用的东西,或者我只是做错了。我也尝试过很多事情但没有成功。

这是我的 main.c :

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "studentFunctions.h"

int main()
{
Image plain;
char selection;
readImage("test.png", &plain);

printf("What do you wish to do?\nInvert colors = i.\nSwitch colors = s.\nDoulbe size = d.");
scanf("%c", &selection);

switch (selection)
{

case 'i':
invertColor(plain);
break;

case 's':
switchColor(plain);
break;

case 'd':
makeBigger(plain);
break;
}

printf("Saving PNG\n");
writeImage("test.png", &plain);

return 0;
}

这是我的函数.c:

#include "studentFunctions.h"


void invertColor(Image plain)
{
for (unsigned int i = 0; i < plain.height; i++)
{
for (unsigned int j = 0; j < plain.width; j++)
{
plain.pixels[i][j].r = 255 - (plain.pixels[i][j].r);
plain.pixels[i][j].g = 255 - (plain.pixels[i][j].g);
plain.pixels[i][j].b = 255 - (plain.pixels[i][j].b);
}
}
}

void switchColor(Image plain)
{
int temp;

for (unsigned int i = 0; i < plain.height; i++)
{
for (unsigned int j = 0; j < plain.width; j++)
{
temp = plain.pixels[i][j].r;

plain.pixels[i][j].r = plain.pixels[i][j].b;
plain.pixels[i][j].b = plain.pixels[i][j].g;
plain.pixels[i][j].g = temp;
}
}
}

void makeBigger(Image* plain)
{
*plain->height *= 2;
*plain->width *= 2;

}

如您所见,我尝试指向 plain.height 和 plain.width 来更改图像分辨率,但这不起作用。当将鼠标悬停在“plain”上时,它会显示“'*'的操作数必须是指针”。这实际上意味着什么?正确的方法是什么?

我们提供的两个函数如下所示:

void writeImage(char* filename, Image *img);

void readImage(char *filename, Image *img);

我们给出的两个结构是:

typedef struct image {
Pixel **pixels;
unsigned int height;
unsigned int width;
} Image;

typedef struct pixel {
uint8_t r;
uint8_t g;
uint8_t b;
} Pixel;

我们无法编辑或查看两个给定函数或两个结构。

我最好想要对此的解释,也许是一个简单的例子,而不是直接的答案,因为我正在尝试学习和理解这一点。最后一点,我对一般编程尤其是 C 编程很陌生,希望它足够清楚。感谢您的回答。

编辑:这是我的头文件:

#ifndef STUDENTFUNCTIONS_H
#define STUDENTFUNCTIONS_H

#include <functions.h>

void invertColor(Image plain);
void switchColor(Image plain);
void makeBigger(Image* plain);

#endif

最佳答案

void makeBigger(Image* plain)
{
*plain->height *= 2;
*plain->width *= 2;

}

I haven't yet gotten to resizing pixels as I try to figure out how to higher the resolution of the image to be able to size the pixels, that's how thought of doing it anyways.

为了提高图像的分辨率,i。 e.要放大它,仅仅使 plain->heightplain->width (前面没有 *)变大是不够的,而是让它变大还需要增加为像素行和列数组分配的内存 - 除非它们已经被 readImage() 过度分配,但读取访问冲突表明它们没有。然而,我们无法可靠地确定如何重新分配像素内存,同时我们也不知道数组最初是如何分配的,因此仅使用给定的信息不可能完成给定的任务 - 这是您老师的一个令人遗憾的错误。

关于使用 C 中的结构和指针更改图像大小/分辨率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41352229/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com