this is a wrap for this Github Project.
An android library that uses technologies like artificial Intelligence, machine learning, and deep learning to make developers understand the content that they are displaying in their app.
Please note that this lib used service from Clarifai which is not totally free (https://clarifai.com/pricing)
Onyx
Author: DonManfred (wrapper)
Version: 1
In this example the following image is scanned...
An android library that uses technologies like artificial Intelligence, machine learning, and deep learning to make developers understand the content that they are displaying in their app.
Please note that this lib used service from Clarifai which is not totally free (https://clarifai.com/pricing)
Onyx
Author: DonManfred (wrapper)
Version: 1
- OnyxTags
Events:- onComplete (tags As List)
- Initialize (EventName As String)
- IsInitialized As Boolean
- TagsandProbability
- TagsfromApi
- fromURL (urls As String) As Tags
- fromVideoArray (videoArray() As Byte) As Tags
- android.permission.ACCESS_NETWORK_STATE
- android.permission.INTERNET
- Instance As Tags [write only]
In this example the following image is scanned...
B4X:
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim onyx As OnyxTags
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
'Activity.LoadLayout("Layout1")
onyx.Initialize("Onyx")
onyx.fromURL("http://www.europa-entdecken.net/fileadmin/eu-entdecken/images/frankreich/eiffelturm.jpg")
onyx.TagsandProbability
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub Onyx_onComplete(tags As List)
For i = 0 To tags.Size -1
Log("Tag: "&tags.Get(i))
Next
End Sub
** Service (starter) Create **
** Service (starter) Start **
** Activity (main) Create, isFirst = true **
** Activity (main) Resume **
lib:Raising.. onyx_oncomplete()
Tag: architecture-0.9931149482727051
Tag: travel-0.9882233142852783
Tag: no person-0.9877809882164001
Tag: tower-0.9698358774185181
Tag: outdoors-0.9656822681427002
Tag: sky-0.9615469574928284
Tag: landmark-0.9527928829193115
Tag: monument-0.9508309364318848
Tag: city-0.9461989402770996
Tag: tourism-0.9448901414871216
Tag: building-0.9446797370910645
Tag: old-0.9224209785461426
Tag: tallest-0.903542160987854
Tag: famous-0.8974774479866028
Tag: capital-0.8950203657150269
Tag: ancient-0.8797848224639893
Tag: sightseeing-0.8765351176261902
Tag: tourist-0.8734467625617981
Tag: traditional-0.8710891008377075
Tag: historic-0.8630752563476563
** Activity (main) Pause, UserClosed = false **
** Activity (main) Resume **
Attachments
Last edited: