identify-objects

This is a simple lib to identify objects using the tensorFlowLite

Лицензия

Лицензия

Категории

Категории

IDE Инструменты разработки
Группа

Группа

com.github.mattyoliveira
Идентификатор

Идентификатор

identify-objects
Последняя версия

Последняя версия

1.0.0
Дата

Дата

Тип

Тип

aar
Описание

Описание

identify-objects
This is a simple lib to identify objects using the tensorFlowLite
Ссылка на сайт

Ссылка на сайт

https://github.com/MattyOliveira/IdentifyObjects.git
Система контроля версий

Система контроля версий

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

Скачать identify-objects

Как подключить последнюю версию

<!-- 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"]

Зависимости

compile (5)

Идентификатор библиотеки Тип Версия
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

Модули Проекта

Данный проект не имеет модулей.

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

Версии библиотеки

Версия
1.0.0