I try to decode jpg images as according to following steps:
1. Read the image file using ifstream
2. Decode the information (without any existing library)
3. Show the image on computer screen using SFML Sprite/Image. (sf::Image::SetPixel)
I am now able to perform step 1 and 3, but not step 2.
I couldn't find much information about step 2 by googling.
Any recommendation of where could I find related information..?
I need to do the jpeg encoding/decoding by myself.
Later I will try to enhance the existing compression technique.
This is part of an academical research.
Thank you.