I have a binary file which contains an image with header.
The details are as follows.
- The first
1024 bytes
contain header Then32 bytes
of header for each line - Then
4608 bytes
constitute one line of image for next5000 lines
.
So this would become a 4608x5000 pixel image
along with headers.
How should I read the binary file and how should I form and work with image?
Thanks in advance.