Skip to content

MattyOliveira/IdentifyObjects

Repository files navigation

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages