I have created Computer Vision Project in Third Party Application. I need to Integrate that output with Ignition using Webdev Module. Kindly Give suggestions and steps to integrate the Output into Ignition
OK, sounds interesting!
Are you sure you need WebDev? WebDev is for creating APIs in Ignition for external software to call. If you need to call an API in your external software, then you can do so with scripting in any version of Ignition, no extra module required.
Share more details.
I have developed a Image Comparison Project Using Python Scripting in Jupyter Notebook IDLE. I need to show the Image along with Score Metrics in Ignition Perspective. How can we Call those API service from Ignition
On the Ignition side, you'd use system.net.httpClient()
to set up a connection manager, then use it to make your API calls. There are numerous examples on this forum using httpClient
.
I have no idea how Jupyter exposes projects to APIs, if it does so at all automatically. You probably need to integrate python's FastAPI or a similar framework into your application.