Hi,
I have rgb images  consisting of three concatenated images and would like to use the slice layer to separate them. As slice_point is an int vector, there is apparently a way of specifying multiple slicing points, but I don't know the syntax. I have following definition, which doesn't work.
layers {
    name: "slice_frames"
    type: SLICE
    bottom: "data"
    top: "data_left"
    top: "data_middle"
    top: "data_right"
    slice_param {
        slice_dim: 1
        slice_point: 3,6
    }
}
Does anyone know how to specify two slice points (3 and 6) so I get three output layers? Or is slice layer constrained to two tops and I  have to use two consecutive slice layers to get three output layers?
Cheers,
Oier