I am using OpenCV on my Raspberry Pi to track circular objects. Then, I want to send the coordinate and radius values in an array of floats across the LAN to the Java program
I can send strings all fine with the code I have, but I'm having trouble trying to send numerical datatypes. What is the correct process for this?
asked Jan 29, 2014 at 16:24
cmcdaniels
1451 gold badge3 silver badges15 bronze badges
2 Answers 2
A meta-answer would be to use JSON, since JSON generators and parsers can be found for every major programming language.
Sign up to request clarification or add additional context in comments.
Comments
Have you looked at BSON? It's like JSON, but optimised for a little more speed.
Comments
default