I have a program in python using opencv, that detect movements with your eyes. I want to make a user interface with java that calls functions to this python program and then do stuff depending of the return values. It´s this possible? Is there a better solution than using java?
-
1Possible duplicate of Call Python from JavaTwistedSim– TwistedSim2018-04-24 19:33:56 +00:00Commented Apr 24, 2018 at 19:33
-
Why not just write the user interface in Python? Python has tkinter preinstalled. If you don't like that, there's PyQt/PySide/PySide2, GObject, Kivy, wxPython, native bindings for Cocoa and Windows, and a zillion other options. Or you can write a web service with a simple web UI.abarnert– abarnert2018-04-24 19:34:04 +00:00Commented Apr 24, 2018 at 19:34
Add a comment
|