23
23
24
24
import io .bioimage .modelrunner .tensor .shm .SharedMemoryArray ;
25
25
import io .bioimage .modelrunner .utils .CommonUtils ;
26
- import net .imglib2 .RandomAccessibleInterval ;
27
- import net .imglib2 .img .Img ;
28
- import net .imglib2 .type .numeric .integer .IntType ;
29
- import net .imglib2 .type .numeric .integer .LongType ;
30
- import net .imglib2 .type .numeric .integer .UnsignedByteType ;
31
- import net .imglib2 .type .numeric .real .DoubleType ;
32
- import net .imglib2 .type .numeric .real .FloatType ;
33
26
import net .imglib2 .util .Cast ;
34
27
35
28
import java .nio .ByteBuffer ;
43
36
import org .tensorflow .types .UInt8 ;
44
37
45
38
/**
46
- * A TensorFlow 2 {@link Tensor} builder from {@link Img} and
47
- * {@link io.bioimage.modelrunner.tensor.Tensor} objects.
39
+ * Utility class to build Tensorflow tensors from shm segments using {@link SharedMemoryArray}
48
40
*
49
- * @author Carlos Garcia Lopez de Haro and Daniel Felipe Gonzalez Obando
41
+ * @author Carlos Garcia Lopez de Haro
50
42
*/
51
43
public final class TensorBuilder {
52
44
@@ -56,16 +48,13 @@ public final class TensorBuilder {
56
48
private TensorBuilder () {}
57
49
58
50
/**
59
- * Creates {@link TType} instance with the same size and information as the
60
- * given {@link RandomAccessibleInterval}.
51
+ * Creates {@link Tensor} instance from a {@link SharedMemoryArray}
61
52
*
62
- * @param <T>
63
- * the ImgLib2 data types the {@link RandomAccessibleInterval} can be
64
53
* @param array
65
- * the {@link RandomAccessibleInterval } that is going to be converted into
66
- * a {@link TType } tensor
67
- * @return a {@link TType} tensor
68
- * @throws IllegalArgumentException if the type of the {@link RandomAccessibleInterval }
54
+ * the {@link SharedMemoryArray } that is going to be converted into
55
+ * a {@link Tensor } tensor
56
+ * @return the Tensorflow {@link Tensor} as the one stored in the shared memory segment
57
+ * @throws IllegalArgumentException if the type of the {@link SharedMemoryArray }
69
58
* is not supported
70
59
*/
71
60
public static Tensor <?> build (SharedMemoryArray array ) throws IllegalArgumentException
@@ -91,17 +80,7 @@ else if (array.getOriginalDataType().equals("int64")) {
91
80
}
92
81
}
93
82
94
- /**
95
- * Creates a {@link TType} tensor of type {@link TUint8} from an
96
- * {@link RandomAccessibleInterval} of type {@link UnsignedByteType}
97
- *
98
- * @param tensor
99
- * The {@link RandomAccessibleInterval} to fill the tensor with.
100
- * @return The {@link TType} tensor filled with the {@link RandomAccessibleInterval} data.
101
- * @throws IllegalArgumentException if the input {@link RandomAccessibleInterval} type is
102
- * not compatible
103
- */
104
- public static Tensor <UInt8 > buildUByte (SharedMemoryArray tensor )
83
+ private static Tensor <UInt8 > buildUByte (SharedMemoryArray tensor )
105
84
throws IllegalArgumentException
106
85
{
107
86
long [] ogShape = tensor .getOriginalShape ();
@@ -115,17 +94,7 @@ public static Tensor<UInt8> buildUByte(SharedMemoryArray tensor)
115
94
return ndarray ;
116
95
}
117
96
118
- /**
119
- * Creates a {@link TInt32} tensor of type {@link TInt32} from an
120
- * {@link RandomAccessibleInterval} of type {@link IntType}
121
- *
122
- * @param tensor
123
- * The {@link RandomAccessibleInterval} to fill the tensor with.
124
- * @return The {@link TInt32} tensor filled with the {@link RandomAccessibleInterval} data.
125
- * @throws IllegalArgumentException if the input {@link RandomAccessibleInterval} type is
126
- * not compatible
127
- */
128
- public static Tensor <Integer > buildInt (SharedMemoryArray tensor )
97
+ private static Tensor <Integer > buildInt (SharedMemoryArray tensor )
129
98
throws IllegalArgumentException
130
99
{
131
100
long [] ogShape = tensor .getOriginalShape ();
@@ -142,16 +111,6 @@ public static Tensor<Integer> buildInt(SharedMemoryArray tensor)
142
111
return ndarray ;
143
112
}
144
113
145
- /**
146
- * Creates a {@link TInt64} tensor of type {@link TInt64} from an
147
- * {@link RandomAccessibleInterval} of type {@link LongType}
148
- *
149
- * @param tensor
150
- * The {@link RandomAccessibleInterval} to fill the tensor with.
151
- * @return The {@link TInt64} tensor filled with the {@link RandomAccessibleInterval} data.
152
- * @throws IllegalArgumentException if the input {@link RandomAccessibleInterval} type is
153
- * not compatible
154
- */
155
114
private static Tensor <Long > buildLong (SharedMemoryArray tensor )
156
115
throws IllegalArgumentException
157
116
{
@@ -169,17 +128,7 @@ private static Tensor<Long> buildLong(SharedMemoryArray tensor)
169
128
return ndarray ;
170
129
}
171
130
172
- /**
173
- * Creates a {@link TFloat32} tensor of type {@link TFloat32} from an
174
- * {@link RandomAccessibleInterval} of type {@link FloatType}
175
- *
176
- * @param tensor
177
- * The {@link RandomAccessibleInterval} to fill the tensor with.
178
- * @return The {@link TFloat32} tensor filled with the {@link RandomAccessibleInterval} data.
179
- * @throws IllegalArgumentException if the input {@link RandomAccessibleInterval} type is
180
- * not compatible
181
- */
182
- public static Tensor <Float > buildFloat (SharedMemoryArray tensor )
131
+ private static Tensor <Float > buildFloat (SharedMemoryArray tensor )
183
132
throws IllegalArgumentException
184
133
{
185
134
long [] ogShape = tensor .getOriginalShape ();
@@ -196,16 +145,6 @@ public static Tensor<Float> buildFloat(SharedMemoryArray tensor)
196
145
return ndarray ;
197
146
}
198
147
199
- /**
200
- * Creates a {@link TFloat64} tensor of type {@link TFloat64} from an
201
- * {@link RandomAccessibleInterval} of type {@link DoubleType}
202
- *
203
- * @param tensor
204
- * The {@link RandomAccessibleInterval} to fill the tensor with.
205
- * @return The {@link TFloat64} tensor filled with the {@link RandomAccessibleInterval} data.
206
- * @throws IllegalArgumentException if the input {@link RandomAccessibleInterval} type is
207
- * not compatible
208
- */
209
148
private static Tensor <Double > buildDouble (SharedMemoryArray tensor )
210
149
throws IllegalArgumentException
211
150
{
0 commit comments