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

Endpoint Name Data Format Nature
image system/array_2d_uint8/1 Input
id system/uint64/1 Input
projections system/array_2d_floats/1 Output

Unnamed group

Endpoint Name Data Format Nature
subspace_lda tutorial/linear_machine/1 Input
subspace_pca tutorial/linear_machine/1 Input
xxxxxxxxxx
60
 
1
import bob
2
import numpy
3
4
5
6
def linear_machine_from_data(data):
7
    """Unmangles a bob.machine.LinearMachine from a BEAT Data object"""
8
9
    machine = bob.machine.LinearMachine(data.weights)
10
    machine.biases = data.biases
11
    machine.input_subtract = data.input_subtract
12
    machine.input_divide = data.input_divide
13
    return machine
14
15
16
17
class Algorithm:
18
19
    def __init__(self):
20
        self.pca_machine        = None
21
        self.lda_machine        = None
22
        self.projections        = None
23
        self.current_projection = 0
24
25
26
    def process(self, inputs, outputs):
27
28
        # retrieve the linear machines once
29
        if self.pca_machine is None:
30
            inputs['subspace_pca'].next()
31
            self.pca_machine = linear_machine_from_data(inputs['subspace_pca'].data)
32
        if self.lda_machine is None:
33
            inputs['subspace_lda'].next()
34
            self.lda_machine = linear_machine_from_data(inputs['subspace_lda'].data)
35
36
        # collect all the image projections for the current template
37
        image = inputs['image'].data.value.astype('float64').flatten()
38
        projection = self.lda_machine.forward(self.pca_machine.forward(image))
39
40
        if self.projections is None:
41
            group = inputs.groupOf('id')
42
            nb_images = inputs["id"].data_index_end - inputs["id"].data_index + 1
43
            self.projections = numpy.ndarray((nb_images, projection.shape[0]), dtype='float64')
44
            self.current_projection = 0
45
46
        self.projections[self.current_projection,:] = projection
47
        self.current_projection += 1
48
49
50
        # generate the results (when all the images of the current template have been
51
        # projected)
52
        if inputs["id"].isDataUnitDone():
53
            outputs['projections'].write({
54
                'value': self.projections
55
            })
56
57
            self.projections = None
58
59
        return True
60

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.

Experiments

Updated Name Databases/Protocols Analyzers
tutorial/tutorial/full_fisherface/1/fullfisherfaces_10and4ncomp atnt/1@idiap_test_eyepos tutorial/eerhter_postperf_iso/1
tutorial/tutorial/full_fisherface/1/fullfisherfaces_5and2ncomp atnt/1@idiap_test_eyepos tutorial/eerhter_postperf_iso/1
Created with Raphaël 2.1.2[compare]tutorial/linear_machine_x2_projection/1tutorial/linear_machine_x2_projection/2Jun27tutorial/linear_machine_x2_projection/32014Sep62015Sep3

This table shows the number of times this algorithm has been successfully run using the given environment. Note this does not provide sufficient information to evaluate if the algorithm will run when submitted to different conditions.

Terms of Service | Contact Information | BEAT platform version 2.2.1b0 | © Idiap Research Institute - 2013-2025