How to invoke visual recognition api in watson conversation service? - ibm-watson

I have been developing a health care assistant using IBM Watson, I want to invoke the Visual Recognition API in Watson Assistant(formerly Conversation) service. I've created the Visual Recognition service credentials and created custom training data set using images. How do I invoke that into my conversation service?

Related

Develop WebRTC application and signalR

I will implement an application based on the webRTC, I have implemented a video chat application using Twilio and Agora. However, I made a decision to use my own RTC instead of those services. How I can develop WebRTC without google services and use my own WebSocket?

Difference between "pyVmomi" and "vSphere Automation SDK for Python"?

When I was searching for pyVmomi (Python SDK for the VMware vSphere API) doc/examples I found the vSphere Automation SDK for Python page. The name sounds like another vSphere SDK but the APIs are quite different from pyVmomi. Is it pyVmomi wrappers which may be much easier to use?
vCenter servers currently serve up two main API services:
vSphere Web Services API, SOAP based, integration point for pyvmomi (and the vSphere Management SDK)
vSphere Automation API, REST based, integration point for the vSphere Automation SDK
The SOAP API is basically at parity with the vSphere UI, whereas the REST API is fairly new and mainly VM and VCSA focused in terms of available functionality.

Integrate Salesforce with AutoDesk Inventor

How can we integrate Salesforce with AutoDesk Inventor? As Salesforce is cloud based and Inventor is a desktop based application, what options do we have to integrate Salesforce and Inventor? Do we have to use a middle-ware? If yes then which one?
Using Design Automation for Inventor you can automate processes with other cloud-based solutions.
Or have an Inventor desktop plugin that, upon an user interaction, read the current design and send data to your cloud-based solution.
Autodesk Inventor has documented COM API (.NET or C++). You can create AddIn for Inventor which can communicate with salesforce. You can create embedded web browser or call some salesforce API if any.

Integrating IBM Watson Assistant to Angular js project

I have created chatbot service on IBM Cloud. I have my Angular project outside IBM Cloud. Now, I want to integrate Watson Assistant with my project. How to do that? Do I want to have any external jar files for this integration?
The answer depends on how you deploy the chatbot and how you interact with it. You can integrate / embed the Watson Assistant chatbot into any website similar to a widget or interact with it from within your Angular app itself. In that case, you have the option to call the Assistant API functions or to use an SDK like the Node.js SDK.

Can I use azure notification hub to push to a wpf app

I am looking for a way to push notifications to a windows desktop app (a WPF app to be more specific) can I use azure notification hub for it? or are there any other alternatives out there?
It is not possible to use Azure Notification Hubs for this purpose. The core reason is that Azure Notification Hubs do not work with devices directly, rather it communicates via the Platform Notification Services for each platform (such as Windows Notification Service, Apple Notification Service, Google Cloud Messaging). And none of these services will work with a simple WPF application.
You have to design your own WPF Push Notification service via long polling or Web Sockets connection, and you could probably use Windows Azure Service Bus for that. But how to build such a service, is not subject to a SO question/answer.

Resources