Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seuristic/image-processing-v2
BMP image processing using C++ for project, 2022
https://github.com/seuristic/image-processing-v2
Last synced: about 1 month ago
JSON representation
BMP image processing using C++ for project, 2022
- Host: GitHub
- URL: https://github.com/seuristic/image-processing-v2
- Owner: seuristic
- Created: 2023-01-02T05:24:47.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-29T08:34:27.000Z (almost 2 years ago)
- Last Synced: 2024-08-17T11:51:34.554Z (5 months ago)
- Language: C++
- Size: 1000 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Image processing using C++ for BMP images for major project, 2022
Folder structure:
```.
├── bmps
│ ├── img.bmp --------- Input image
│ ├── new.bmp --------- Output image
│ └── picture.bmp ----- Another image for testing
├── README.md
└── src
├── BMP.h ----------- Header file for BMP manipulation methods
├── main.cpp -------- Main program
├── test.cpp -------- Testing purposes
├── v0.cpp ---------- Initial version of `main.cpp`file
└── v1.cpp ---------- Version 1 of `main.cpp` file```