|
45 | 45 | <option value="deleteAllCollections">Delete all collections</option> |
46 | 46 | <option disabled>______________</option> |
47 | 47 | <option value="addImages">Add image to collection</option> |
| 48 | + <option value="listImages">List images in a collection</option> |
| 49 | + <option value="getImageDetails">Get details of image in collection</option> |
| 50 | + <option value="deleteImage">Delete image from collection</option> |
| 51 | + <option value="getJpegImage">Get JPEG image from collection</option> |
48 | 52 | </select> |
49 | 53 | </div> |
50 | 54 | </script> |
|
111 | 115 | your needs.</p> |
112 | 116 | <p>The following features are available :</p> |
113 | 117 | <ul> |
114 | | - <li><b>Create a collection</b></li> |
115 | | - <li><b>List listCollections</b></li> |
116 | | - <li><b>Get collection details</b></li> |
117 | | - <li><b>Update collection</b></li> |
118 | | - <li><b>Delete collection</b></li> |
119 | | - <li><b>Delete all collections</b></li> |
120 | | - <li><b>Add images to collection</b></li> |
| 118 | + <li>Collections |
| 119 | + <ul> |
| 120 | + <li><b>Create a collection</b></li> |
| 121 | + <li><b>List listCollections</b></li> |
| 122 | + <li><b>Get collection details</b></li> |
| 123 | + <li><b>Update collection</b></li> |
| 124 | + <li><b>Delete collection</b></li> |
| 125 | + <li><b>Delete all collections</b></li> |
| 126 | + </ul> |
| 127 | + </li> |
| 128 | + <li>Images |
| 129 | + <ul> |
| 130 | + <li><b>Add images to collection</b></li> |
| 131 | + <li><b>List images in collection</b></li> |
| 132 | + <li><b>Get details of image in collection</b></li> |
| 133 | + <li><b>Delete image from collection</b></li> |
| 134 | + <li><b>Get JPEG image from collection</b></li> |
| 135 | + </ul> |
| 136 | + </li> |
121 | 137 | </ul> |
122 | 138 |
|
123 | 139 | <p>All Results will made available at <code>msg.payload</code></p> |
|
180 | 196 | <p>More information on this |
181 | 197 | <a href="https://cloud.ibm.com/apidocs/visual-recognition/visual-recognition-v4?code=node#add-images"> |
182 | 198 | API documentation</a>.</p> |
183 | | - |
| 199 | + |
| 200 | + <p><b>List images in collection</b></p> |
| 201 | + <p>this feature should be provided in input : </p> |
| 202 | + <ul> |
| 203 | + <li><code>msg.params["collectionId"]</code> : The identifier of the collection (Required)</li> |
| 204 | + </ul> |
| 205 | + <p>More information on this |
| 206 | + <a href="https://cloud.ibm.com/apidocs/visual-recognition/visual-recognition-v4?code=node#list-images"> |
| 207 | + API documentation</a>.</p> |
| 208 | + |
| 209 | + <p><b>Get details of image in collection</b></p> |
| 210 | + <p>this feature should be provided in input : </p> |
| 211 | + <ul> |
| 212 | + <li><code>msg.params["collectionId"]</code> : The identifier of the collection (Required)</li> |
| 213 | + <li><code>msg.params["imageId"]</code> : The identifier of the image (Required)</li> |
| 214 | + </ul> |
| 215 | + <p>More information on this |
| 216 | + <a href="https://cloud.ibm.com/apidocs/visual-recognition/visual-recognition-v4?code=node#get-image-details"> |
| 217 | + API documentation</a>.</p> |
| 218 | + |
| 219 | + <p><b>Delete image from collection</b></p> |
| 220 | + <p>this feature should be provided in input : </p> |
| 221 | + <ul> |
| 222 | + <li><code>msg.params["collectionId"]</code> : The identifier of the collection (Required)</li> |
| 223 | + <li><code>msg.params["imageId"]</code> : The identifier of the image (Required)</li> |
| 224 | + </ul> |
| 225 | + <p>More information on this |
| 226 | + <a href="https://cloud.ibm.com/apidocs/visual-recognition/visual-recognition-v4?code=node#delete-an-image"> |
| 227 | + API documentation</a>.</p> |
| 228 | + |
| 229 | + <p><b>Get JPEG image from collection</b></p> |
| 230 | + <p>this feature should be provided in input : </p> |
| 231 | + <ul> |
| 232 | + <li><code>msg.params["collectionId"]</code> : The identifier of the collection (Required)</li> |
| 233 | + <li><code>msg.params["imageId"]</code> : The identifier of the image (Required)</li> |
| 234 | + <li><code>msg.params["size"]</code> : Set to either 'full' or 'thumbnail' (Optional)</li> |
| 235 | + </ul> |
| 236 | + <p>More information on this |
| 237 | + <a href="https://cloud.ibm.com/apidocs/visual-recognition/visual-recognition-v4?code=node#delete-an-image"> |
| 238 | + API documentation</a>.</p> |
| 239 | + |
184 | 240 |
|
185 | 241 | </script> |
0 commit comments