This algorithm is a sequential one. The platform will call its process() method once per data incoming on its inputs.
This algorithm is splittable

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: main

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

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

Sample algorithm that takes an image and outputs a score defined by a parameter. Algorithms used for the competition should have the same inputs and outputs as the algorithm shown here.

No experiments are using this algorithm.
Created with Raphaël 2.1.2[compare]jmcgrat3/LivDet-Iris-2020-Base/12020Jun6
This algorithm was never executed.
Terms of Service | Contact Information | BEAT platform version 2.2.1b0 | © Idiap Research Institute - 2013-2025