thing
This commit is contained in:
21
C++/Gaussian blur/main.cpp
Normal file
21
C++/Gaussian blur/main.cpp
Normal file
@@ -0,0 +1,21 @@
|
||||
#include <iostream>
|
||||
|
||||
#define STB_IMAGE_WRITE_IMPLEMENTATION
|
||||
#include "stb_image_write.h"
|
||||
#define STB_IMAGE_IMPLEMENTATION
|
||||
#include "stb_image.h"
|
||||
|
||||
struct Pixel {
|
||||
unsigned char r, g, b, a;
|
||||
};
|
||||
|
||||
int main(int argc, char** argv) {
|
||||
if (argc < 2) {
|
||||
std::err << "Invalid usage" << std::endl;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Pixel* image =
|
||||
|
||||
}
|
||||
7462
C++/Gaussian blur/stb_image.h
Normal file
7462
C++/Gaussian blur/stb_image.h
Normal file
File diff suppressed because it is too large
Load Diff
1568
C++/Gaussian blur/stb_image_write.h
Normal file
1568
C++/Gaussian blur/stb_image_write.h
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user