This algorithm is a legacy one. The API has changed since its implementation. New versions and forks will need to be updated.

Algorithms have at least one input and one output. All algorithm endpoints are organized in groups. Groups are used by the platform to indicate which inputs and outputs are synchronized together. The first group is automatically synchronized with the channel defined by the block in which the algorithm is deployed.

Group: group

Endpoint Name Data Format Nature
image system/array_2d_uint8/1 Input
scores system/integer/1 Output
xxxxxxxxxx
18
 
1
import numpy as np
2
3
class Algorithm:
4
    def setup(self, parameters):
5
        # perform some setup using the parameters
6
        # here, we set the score to output
7
        # self.score_to_output = parameters['score_to_output']
8
        return True
9
10
    def process(self, inputs,outputs):
11
        # read the image from the input (will be np array)
12
        image = inputs['image'].data.value
13
        # perform some processing
14
        output =  np.random.randint(low=0, high=100)# self.score_to_output
15
        # write to outputs
16
        outputs['scores'].write({'value':output})
17
        return True
18

The code for this algorithm in Python
The ruler at 80 columns indicate suggested POSIX line breaks (for readability).
The editor will automatically enlarge to accomodate the entirety of your input
Use keyboard shortcuts for search/replace and faster editing. For example, use Ctrl-F (PC) or Cmd-F (Mac) to search through this box

Could not find any documentation for this object.
No experiments are using this algorithm.
Created with Raphaël 2.1.2[compare]zfang/livdet_baseline/1amohammadi/livdet_baseline/1132020Jul14
This algorithm was never executed.
Terms of Service | Contact Information | BEAT platform version 2.2.1b0 | © Idiap Research Institute - 2013-2025