All Questions
5 questions
0
votes
2
answers
53
views
What are those two representations of the same jpg image and how to convert one to another? [closed]
First representation
Second representation
Those are the same image. The first representation was given to me when I read the image in python, but my goal is to get to the second representation. How ...
0
votes
1
answer
1k
views
Javascript convert byte string to a image
I have this string in javascript that represents an image, I'm trying to convert it to a image object to show it in the html but I'm not sure how to do it, also i dont know the encoding, i think its ...
14
votes
1
answer
26k
views
Python: How to turn an IMAGE into a STRING and back?
I have an image like this loaded into a PIL.Image:
And now I want to turn it into a python string, and it should not be binary, how do I do this?
Because when I tried to encode I get the following ...
1
vote
0
answers
708
views
How to parse the String array into image using java?
Hi could any explain me how to parse the String hex decimal array into an image as below. This data I am getting from the server and I am converting that into the hex String.
String sb = "0d 02 ...
3
votes
2
answers
2k
views
from string of bytes to OpenCV's IplImage in Python?
I am streaming some data down from a webcam. When I get all of the bytes for a full image (in a string called byteString) I want to display the image using OpenCV. Done fast enough, this will "stream" ...