You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
As discussed in the thread, It is important to have a familiarity of how images are store.
Describe the solution you'd like
Add the theory of basic image storing formats such as .bmp, .tiff, .jpg, png etc.
Implement a .cpp file on how image can be read from the bmp format.
Consider only 8 bit grayscale BitMap image (Since they are easy to read and contains only 2D form of data).
Use simple posix read() api to read the image bitmap file.
Directly storing the values of various attributes of image in struct is suggested.
A similar example can be added to demonstrate how to edit/write a grayscale bitmap image.
Add a Makefile to compile and build the executable.
Add a .md file explaining the theory and instructions to build and run the executables.
Note: Content is not finalised and open for discussion.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
As discussed in the thread, It is important to have a familiarity of how images are store.
Describe the solution you'd like
.bmp
,.tiff
,.jpg
,png
etc..cpp
file on how image can be read from the bmp format.Makefile
to compile and build the executable..md
file explaining the theory and instructions to build and run the executables.Note: Content is not finalised and open for discussion.
The text was updated successfully, but these errors were encountered: