| Package | Description |
|---|---|
| javax.visrec |
Visual recognition API provides reusable abstractions for visual recognition tasks based on machine learning,
that simplify implementation and integration of various machine learning models and image types.
|
| javax.visrec.ml.classification | |
| javax.visrec.regression | |
| javax.visrec.spi |
| Modifier and Type | Class and Description |
|---|---|
class |
AbstractImageClassifier<IMAGE_CLASS,MODEL_CLASS>
Skeleton abstract class to make it easier to implement image classifier.
|
| Modifier and Type | Class and Description |
|---|---|
class |
EnsambleClassifier<T,R>
EnsambleClassifier is a group of classifiers that provide common
classification result, which gives better accuracy then each individual
classifier.
|
class |
MultiClassClassifier<MODEL_CLASS> |
| Modifier and Type | Method and Description |
|---|---|
<T> Classifier<T,String> |
ClassifierBuilder.buildWithSourceType(Class<T> sourceCls)
Create the
Classifier that is able to use sourceClss as input/source type and
String as default return type of the Classifier |
abstract <T,R> Classifier<T,R> |
ClassifierBuilder.buildWithSourceType(Class<T> sourceCls,
Class<R> returnCls)
Create the
Classifier that is able to use sourceClss as input/source type and
returnCls as return type of the Classifier |
Classifier |
EnsambleClassifier.getClassifier(String classiferId) |
| Modifier and Type | Method and Description |
|---|---|
void |
EnsambleClassifier.addClassifier(String classifierId,
Classifier<T,R> classifier) |
| Modifier and Type | Class and Description |
|---|---|
class |
LogisticRegression<MODEL_CLASS>
This class performs basic binary classification - mapping of specified input to true/false with probability.
|
| Modifier and Type | Method and Description |
|---|---|
<T,R> Classifier<T,R> |
ClassifierService.getBySource(Class<T> sourceType,
Class<R> resultMapType)
Get the
Classifier which is able to classify images by the sourceType object. |
Copyright © 2019. All rights reserved.