I want to do some Analytics on the image hosted on the cloud using IBM Watson Visual recognition. Currently I am downloading the image and storing it locally and then give it to the Watson visual Recognition service. I dont want to download the image locally.I am using JAVA
I want to get the insights of the image stored on the Softlayer cloud WITHOUT DOWNLOADING IT LOCALLY using ibm watson Visual Recognition
113 Views Asked by nisarga lolage At
2
There are 2 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in IMAGE
- Add image to JCheckBoxMenuItem
- Display images on Django Template Site
- How to resize images with PHP PARSE SDK
- Animation in Java on top of JPanel
- Slow performance on ipad erasing image
- What are the pros and cons of the picture element?
- Carrierwave file upload with different file types
- How to use annotorious with angular
- Images not showing when uploaded to server
- ImageView doesn't show up
- Image Resizing adjusts ratio
- Displaying bitmap image on Android (OpenCV)
- Class 'Imagick' not found - PHP and Windows
- Image position - randomly select position
- Replace image 1 with image 2 after 5 sec
Related Questions in IBM-WATSON
- Can any one help me in storing the json output of personality insights API to csv using Python?
- How to gain authorization to perform requested action, specifically create an instance of a service in Bluemix?
- What file formats are supported by Watson Speech to Text in Bluemix
- We are tring to configure for the first time Text To Speech bt Watson in Node Red with no luck
- Can one get multiple results from one API call in IBM Watson?
- IBM BigInsights (IBM Hadoop) vs IBM Watson
- IBM Watson Speech to Text API with node. How to output to DOM?
- How to instruct IBM Watson Discovery about the format of my documents?
- IBM Watson speech to text for Android: NoClassDefFoundError
- Configuring Watson for multiples intents?
- Using watson Speech to Text from a browser with websockets (Live detection)
- Can I upload a zip file with htmls or a zip file with json files using the Web Interface of Watson Retrieve and Rank service?
- Watson knowledge studio: how to teach my model to get recipe name?
- error in java package after add watson developer cloud library
- Error: The app has not been configured with a WORKSPACE_ID environment variable
Related Questions in IBM-CLOUD-INFRASTRUCTURE
- Copied ssl cert to a test site, how do I remove it?
- SoftLayer API version 3.x
- SoftLayer Account Lockdown Request
- How to use object filter with softlayer rest api?
- How to create virtual server using standard template softlayer using rest api?
- How to set CPU number and its cores when I create a Virtual Server
- Softlayer API get load balancer destinationIpAddress
- Not able to cancel vlan using softlayer api
- SoftLayer createFirmwareUpdateTransaction seems to ignore my input
- Softlayer API: Global IP Routing not working with ipv6
- SoftLayer Virtual Guest host Status list
- unable to find softLayer api to cancel the primary vlans
- SoftLayer API doesn't recognize new Datacenter (osl01)
- How to Use getMaintenanceWindows method by using a SoftLayer REST API
- Updating a directory object changes the Content-Type as "application/x-www-form-urlencoded"
Related Questions in VISUAL-RECOGNITION
- Watson: Error message - excessive number of https connections to this service
- Train own classifier IBM Watson Visual Recognition Unity3d
- When I am trying to import VisualRecognitionV3 in Xcode it gives me the error module compiled with swift 3.0 cannot be imported in swift 3.0.2?
- IBM Watson Visual Recognition train own classifier in Unity3d
- IBM Watson Unity 3d Visual Recognition SDK: Parsing the classifier output results
- Can you upload an image from a mobile phone html page on Node-red?
- Can Watson Visual Recognition determine density?
- Can a single image be a positive example for multiple classes?
- Change the threshold in "IBM Watson Visual Recognition service custom classifier"
- How to use with api Custom Object Detection in IBM Cloud Watson Visual Recognition? Is threshold not set properly?
- Did IBM make Watson Visual Recognition paid?
- Where is the Visual Recognition Module on Watson Studio Lite located?
- Regarding maximum total number and size of images which we can upload when training Watson VR classifier
- Error with IBM Visual Recognition Classification with Flutter
- What is the best way to create a link from an image uploaded by the user?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In order to create classifiers with Visual Recognition, you do not need to download the images locally; you only need to call the endpoint with the positive and negative examples. I suggest writing a script to gather the image data, zip it up, and then call the classifier creation endpoint from a server in the cloud.