'Recognize Text' option not visible in Visual Recognition Node - ocr

I'm not able to see 'Recognize Text' option in 'Visual Recognition' Node in the Watson Node-Red pallet.
I'm using Visual Recognition v3 node. Please check attached screenshot.
I've check this on Windows PC as well as Raspberry Pi. But it's same on both.
Is there any other way to achieve OCR using Watson nodes in NODE-RED ?

The OCR, text recognition methods of the visual recognition service was closed Sept 2019 - https://cloud.ibm.com/docs/visual-recognition?topic=visual-recognition-release-notes
The feature was removed from the Watson Node-RED Node soon after.

Related

Is the Forge Model Upgrader Example Deprecated?

I have connected the Forge Model Upgrade example to my BIM 360 hub.
https://forge.autodesk.com/blog/design-automation-revit-projectfamilytemplate-upgrader-sample
Currently, it does not work.
Is it possible to get it to work?
From comments: the live version works for 2019 models (as designed), but can be modified to support other versions. Output needs to be in a different folder.

integration GOOGLE map with OBIEE 12 c

I am working in OBIEE 12C, I want to integrate google maps into OBIEE, I add it in mapViewer server and the map is displayed, but the problem is when I try to add it in BI analytics it displays the following error "MAPVIEWER-09001"
Does anyone know this error?
That's one of the thing you get pre-configured exmaples for in the free ("free beer", gratis) SampleApp virtual machines: http://www.oracle.com/technetwork/middleware/bi-foundation/obiee-samples-167534.html
You can just run it, check how it's done and use it for your own purposes.

How to access to the demo dashboard shown on the Developers' week held on Brussels

During the last day presentation regarding the IoT infrastructure in Brussels Pullman hotel you demonstrated a certain dashboard/app for smart cities using WireCloud.
Is there a possibility to get the source code for said application so that we may fiddle with it and ultimately deploy it locally in order to better understand how FIWARE technologies work?
Thank you in advance.
You can use that dashboard installing the CKANStarterKit offering. Concretely, the dashboard is provided by the "CKAN Valencia with cameras mashup" resource. Once installed, you can create a new workspace using this mashup as template.
This mashup uses the following widgets and operators:
MapViewer widget
Input Box widget
Web Browser widget
Filter POI data operator
NOTE: Currently not all of those widgets/operators are in github, but I'm creating them, I will update this answer with the links. In the meantime you can download the widgets/operators using the user interface:

Flex stand-alone application

I have built an authoring tool to create small stories which can be displayed in a story book format. I would like to publish each story as a stand-alone application (by simply pressing a button) and be able to send it via email. Does anybody has any idea how to create a stand-alone application in Flex by only clicking on a button?
Thank you in advance for your answer.
Does anybody has any idea how to create a stand-alone application in
Flex by only clicking on a button?
It depends on the format you want the output to be in. Assuming that you want a "Flash Platform" output; then I would have that button ping a remote service which can then use the Flex command line compiler to take your code and output a SWF or an AIR File. With AIR you can even use captive runtime to create a native installer for Windows or Mac [or iOS or Android]. [You'll need to be on a Windows unit to create an .exe or a mac unit to create a dmg).
Just about every server side language has some type of PDF generation facility, so you could also use your application server and data from your app to create a PDF which I suspect will be much more palatable when you're sending it around via email.

Lotus Notes integration with a Java Portal Platform

I am using a Java based Portal Platform. I need to show within my portal information stored in Lotus Notes. Considering security issues, what are the recommended ways to do this?
Are there any open source JSR 168 portlets out there that integrate with Lotus Notes?
From my portal platform, I can call web services to get this information. Is this recommended? If so where can I find information about web service APIĀ“s available for Lotus Notes?
Are there any java components that I can install on my portal platform that will make available a java API to access Lotus Notes information?
You have two main options.
First you can talk to Domino (Notes is the client, Domino is the server) directly using the CORBA java interface over IIOP. This will give you full access to the Domino object model and allow you to write the code to do whatever it is you need to do in your java platform.
Secondly you could go over web services. This will be much easier to set up, but you will have to deploy code for what ever it is you want to do on the Domino server. In ND7 and up Domino will build all the web service elements for you from a WSDL or method stub.
From a security point of view, the user connecting to the service will need to be authenticated with Domino. This could be a system account or the actual user if you can proxy the login through.
Another angle I've seen is to just proxy HTTP calls through the portlet to Domino.
Assuming you have SSO setup between portal and domino the simplest solution is to use the Notes View Portlet included with portal. If you need to show the data in a more customized format then I would suggest to use portlet factory. If neither of the previous work for you then you should be able to develop a custom portet using RAD and the notes java api.