lab01_Ver0.1
This commit is contained in:
parent
570986b499
commit
9762c44796
1 changed files with 25 additions and 2 deletions
27
main.cpp
27
main.cpp
|
@ -4,9 +4,32 @@
|
|||
const std::string FILENAME = "../elef.bmp";
|
||||
const std::string FILENAME_OUT = "../elef_out.bmp";
|
||||
|
||||
void lab01() {
|
||||
auto og_image = readBMPImage(FILENAME);
|
||||
auto pixels = og_image.pixels_copy();
|
||||
for (int i = 0; i < og_image.height(); ++i) {
|
||||
for (int j = 0; j < og_image.width(); ++j) {
|
||||
uint8_t gray = pixels[i][j].r / 3 + pixels[i][j].g / 3 + pixels[i][j].b / 3;
|
||||
pixels[i][j] = {gray, gray, gray};
|
||||
}
|
||||
}
|
||||
auto image1 = new BMPImage(og_image.fileHeader_copy(), og_image.infoHeader_copy(), pixels);
|
||||
auto pixels2 = image1->pixels_copy();
|
||||
for (int i = 0; i < og_image.height(); ++i) {
|
||||
for (int j = 0; j < og_image.width(); ++j) {
|
||||
uint8_t gray = 0;
|
||||
if (pixels2[i][j].r > 80) gray = 255;
|
||||
pixels2[i][j] = {gray, gray, gray};
|
||||
}
|
||||
}
|
||||
auto image2 = new BMPImage(og_image.fileHeader_copy(), og_image.infoHeader_copy(), pixels2);
|
||||
image1->write("../elef_gs.bmp");
|
||||
image2->write("../elef_bw.bmp");
|
||||
og_image.write("../elef_out.bmp");
|
||||
// image.write(FILENAME_OUT);
|
||||
}
|
||||
|
||||
int main() {
|
||||
auto image = readBMPImage(FILENAME);
|
||||
image.write(FILENAME_OUT);
|
||||
lab01();
|
||||
return 0;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue