IMPORTANT NOTE: This is more an exercice for me to learn how to make installable packages than an actual useful repo. Also, it is not finished, so expect some errors and a lot of missing stuff. Anyway, it works so hey, why not use it if you need it :)
Simple TCP/IP socket comunication wrapper between c++ and Python for IPC.
- Branch master covers simple string communication, relies on standard libraries.
- Branch image_transferring adds image transferring capabilities, relies on:
- OpenCV for c++:
https://github.com/opencv/opencvBuild
- OpenCV for Python:
pip install opencv-python
Only tested in Ubuntu 16.04 (python2 and python3) but it should be ok on other OS's, write an issue if its not.
-
Clone repo & change directory:
git clone https://github.com/OleguerCanal/cpp_python_socket.git; cd cpp_python_socket/
-
[OPTIONAL] Change branch to enable image transferring:
git checkout image_transferring
-
Build cpp code:
./cpp/build.sh
-
Run unit test:
- Terminal 1:
python python_server_test.py
- Terminal 2:
./run_cpp_client_test.sh
pip install CppPythonSocket --user
(or pip3 depending which python you wanna use)
- Either clone or add as a submodule this repo to your project folder:
git clone https://github.com/OleguerCanal/cpp_python_socket.git
or
git submodule add https://github.com/OleguerCanal/cpp_python_socket.git
- [OPTIONAL] Change branch to enable image transferring:
cd cpp_python_socket/
git checkout image_transferring
-
Build it:
./cpp/build.sh
-
If intending to use C++ code, add this 3 things to your CMakeLists.txt:
add_subdirectory(cpp_python_socket)
- Append
cpp_python_socket/cpp/include
toinclude_directories(...
- Append
cpp_sockets
totarget_link_libraries(...
of your library/executable.
Python Server:
from CppPythonSocket import Server
import cv2
if __name__ == "__main__":
server = Server("127.0.0.1", 5002)
# Check that connection works
message = server.receive()
print("[CLIENT]:" + message)
server.send("Shut up and send an image")
# Receive and show image
image = server.receive_image()
cv2.imshow("SERVER", image)
cv2.waitKey(1000)
server.send("Thanks!")
C++ client:
#include <iostream>
#include "client.hpp"
int main() {
socket_communication::Client client("127.0.0.1", 5002);
// Check that connection works
client.Send("Hello hello!");
std::string answer = client.Receive();
std::cout << "Server: " << answer << std::endl;
// Load image and send image
cv::Mat img = cv::imread("cpp/lena.png");
client.SendImage(img);
std::string answer2 = client.Receive();
std::cout << "Server: " << answer2 << std::endl;
}