Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/locus-x64/image-processing
An image processing program that reads an ASCII P2 form of PGM image format and perform some image processing operation on it, like rotate, scale, horizontal and vertical flip and invert.
https://github.com/locus-x64/image-processing
cpp-project image-processing pgm-image
Last synced: about 2 months ago
JSON representation
An image processing program that reads an ASCII P2 form of PGM image format and perform some image processing operation on it, like rotate, scale, horizontal and vertical flip and invert.
- Host: GitHub
- URL: https://github.com/locus-x64/image-processing
- Owner: locus-x64
- Created: 2022-04-03T11:46:59.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-03T11:57:44.000Z (almost 3 years ago)
- Last Synced: 2024-10-12T07:41:34.788Z (3 months ago)
- Topics: cpp-project, image-processing, pgm-image
- Language: C++
- Homepage:
- Size: 483 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# image-processing
An image processing program that reads an ASCII P2 form of PGM image format and perform some image processing operation on it, like rotate, scale, horizontal and vertical flip and invert.This program is doing image processing on ASCII P2 formate of the image of Portable Gray Map (PGM) file format.
It is using a user-defined data type (Class) which has detailed information about the image.pgm and this information is being read from the given input source image file (in the command line arguments).
After that it performs the given operation (also given in the command line arguments), and then write the new image after performing the required operation on the given image
into the destination image file (also given in the command line arguments).# cmd.sh
This file includes all the commands to test and run this project.