Documentation ¶
Overview ¶
Package ml is used as interface on how a neural network should behave
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type NeuralNet ¶
type NeuralNet interface { SetPreferableBackend(backend gocv.NetBackendType) error SetPreferableTarget(target gocv.NetTargetType) error SetInput(blob gocv.Mat, name string) ForwardLayers(outBlobNames []string) (blobs []gocv.Mat) GetUnconnectedOutLayers() (ids []int) GetLayer(id int) gocv.Layer Close() error }
NeuralNet is the interface representing the neural network used for calculating the object detections
Click to show internal directories.
Click to hide internal directories.