identify-objects

This is a simple lib to identify objects using the tensorFlowLite

License

License

Categories

Categories

IDE Development Tools
GroupId

GroupId

com.github.mattyoliveira
ArtifactId

ArtifactId

identify-objects
Last Version

Last Version

1.0.0
Release Date

Release Date

Type

Type

aar
Description

Description

identify-objects
This is a simple lib to identify objects using the tensorFlowLite
Project URL

Project URL

https://github.com/MattyOliveira/IdentifyObjects.git
Source Code Management

Source Code Management

https://github.com/MattyOliveira/IdentifyObjects.git

Download identify-objects

How to add to project

<!-- https://jarcasting.com/artifacts/com.github.mattyoliveira/identify-objects/ -->
<dependency>
    <groupId>com.github.mattyoliveira</groupId>
    <artifactId>identify-objects</artifactId>
    <version>1.0.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.github.mattyoliveira/identify-objects/
implementation 'com.github.mattyoliveira:identify-objects:1.0.0'
// https://jarcasting.com/artifacts/com.github.mattyoliveira/identify-objects/
implementation ("com.github.mattyoliveira:identify-objects:1.0.0")
'com.github.mattyoliveira:identify-objects:aar:1.0.0'
<dependency org="com.github.mattyoliveira" name="identify-objects" rev="1.0.0">
  <artifact name="identify-objects" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.github.mattyoliveira', module='identify-objects', version='1.0.0')
)
libraryDependencies += "com.github.mattyoliveira" % "identify-objects" % "1.0.0"
[com.github.mattyoliveira/identify-objects "1.0.0"]

Dependencies

compile (5)

Group / Artifact Type Version
org.tensorflow : tensorflow-lite jar 2.4.0
org.jetbrains.kotlin : kotlin-stdlib jar 1.4.21
androidx.core » core-ktx jar 1.3.2
androidx.appcompat » appcompat jar 1.2.0
com.google.android.material » material jar 1.3.0

Project Modules

There are no modules declared in this project.

IdentifyObjects

IdentifyObjects is a library to assist classifier models in android.

Version

Gradle
implementation 'com.github.mattyoliveira:identify-objects:1.0.0'
Maven
<dependency>
  <groupId>com.github.mattyoliveira</groupId>
  <artifactId>identify-objects</artifactId>
  <version>1.0.0</version>
  <type>aar</type>
</dependency>

Example

Setup Classifier
class ExempleActivity : AppCompatActivity() {

    private var classifier: Classifier? = null
    
    private var modelPath = "model_unquant.tflite"
    private var labelPath = "labels.txt"

    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
        setContentView(R.layout.exemple_activity)
        
        Classifier(
              //Set assets path
                assets, 
              //Set model path
                modelPath, 
              //Set label path
                labelPath
            )
    }
	
}

Technology

IdentifyObjects use the TensorFlowLite library.

License

Apache License, Version 2.0

Versions

Version
1.0.0