-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathBvvFunctions.java
412 lines (386 loc) · 15.4 KB
/
BvvFunctions.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
/*-
* #%L
* Volume rendering of bdv datasets
* %%
* Copyright (C) 2018 - 2024 Tobias Pietzsch
* %%
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* #L%
*/
package bvv.vistools;
import bdv.BigDataViewer;
import bdv.ViewerImgLoader;
import bdv.img.cache.VolatileGlobalCellCache;
import bdv.spimdata.WrapBasicImgLoader;
import bdv.tools.brightness.ConverterSetup;
import bdv.tools.brightness.SetupAssignments;
import bdv.tools.transformation.TransformedSource;
import bdv.util.AxisOrder;
import bdv.util.BdvStackSource;
import bdv.util.RandomAccessibleIntervalSource;
import bdv.util.RandomAccessibleIntervalSource4D;
import bdv.util.RandomAccessibleSource;
import bdv.util.RandomAccessibleSource4D;
import bdv.util.volatiles.VolatileView;
import bdv.util.volatiles.VolatileViewData;
import bdv.viewer.Source;
import bdv.viewer.SourceAndConverter;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import mpicbg.spim.data.generic.AbstractSpimData;
import mpicbg.spim.data.generic.sequence.AbstractSequenceDescription;
import net.imglib2.Interval;
import net.imglib2.RandomAccessible;
import net.imglib2.RandomAccessibleInterval;
import net.imglib2.converter.Converter;
import net.imglib2.realtransform.AffineTransform3D;
import net.imglib2.type.numeric.ARGBType;
import net.imglib2.type.numeric.NumericType;
import net.imglib2.type.numeric.RealType;
import net.imglib2.type.volatiles.VolatileARGBType;
import net.imglib2.util.Pair;
import net.imglib2.util.Util;
/**
* all show methods return a {@link Bvv} which can be used to add more stuff to the same window
*
*
* @author Tobias Pietzsch
* @author Philipp Hanslovsky
* @author Igor Pisarev
* @author Stephan Saalfeld
*/
public class BvvFunctions
{
public static < T > BvvStackSource< T > show(
final RandomAccessibleInterval< T > img,
final String name )
{
return show( img, name, Bvv.options() );
}
public static Bvv show( final BvvOptions options )
{
final Bvv bvv = options.values.addTo();
final BvvHandle handle = ( bvv == null )
? new BvvHandleFrame( options )
: bvv.getBvvHandle();
handle.createViewer( Collections.emptyList(), Collections.emptyList(), 1 );
return handle;
}
@SuppressWarnings( { "unchecked", "rawtypes" } )
public static < T > BvvStackSource< T > show(
final RandomAccessibleInterval< T > img,
final String name,
final BvvOptions options )
{
final Bvv bvv = options.values.addTo();
final BvvHandle handle = ( bvv == null )
? new BvvHandleFrame( options )
: bvv.getBvvHandle();
final AxisOrder axisOrder = AxisOrder.getAxisOrder( options.values.axisOrder(), img, false );
final AffineTransform3D sourceTransform = options.values.getSourceTransform();
final T type;
if ( img instanceof VolatileView )
{
final VolatileViewData< ?, ? > viewData = ( ( VolatileView< ?, ? > ) img ).getVolatileViewData();
type = ( T ) viewData.getVolatileType();
handle.getCacheControls().addCacheControl( viewData.getCacheControl() );
}
else
type = Util.getTypeFromInterval( img );
return addRandomAccessibleInterval( handle, ( RandomAccessibleInterval ) img, ( NumericType ) type, name, axisOrder, sourceTransform );
}
public static < T > BvvStackSource< T > show(
final Source< T > source )
{
return show( source, Bvv.options() );
}
public static < T > BvvStackSource< T > show(
final Source< T > source,
final BvvOptions options )
{
return show( source, 1, options );
}
public static < T > BvvStackSource< T > show(
final Source< T > source,
final int numTimePoints )
{
return show( source, numTimePoints, Bvv.options() );
}
public static < T > BvvStackSource< T > show(
final Source< T > source,
final int numTimePoints,
final BvvOptions options )
{
final Bvv bvv = options.values.addTo();
final BvvHandle handle = ( bvv == null )
? new BvvHandleFrame( options )
: bvv.getBvvHandle();
@SuppressWarnings( { "unchecked", "rawtypes" } )
final BvvStackSource< T > stackSource = addSource( handle, ( Source ) source, numTimePoints );
return stackSource;
}
public static List< BvvStackSource< ? > > show(
final AbstractSpimData< ? > spimData )
{
return show( spimData, Bvv.options() );
}
public static List< BvvStackSource< ? > > show(
final AbstractSpimData< ? > spimData,
final BvvOptions options )
{
final Bvv bvv = options.values.addTo();
final BvvHandle handle = ( bvv == null )
? new BvvHandleFrame( options )
: bvv.getBvvHandle();
final AbstractSequenceDescription< ?, ?, ? > seq = spimData.getSequenceDescription();
final int numTimepoints = seq.getTimePoints().size();
final VolatileGlobalCellCache cache = ( VolatileGlobalCellCache ) ( ( ViewerImgLoader ) seq.getImgLoader() ).getCacheControl();
handle.getBvvHandle().getCacheControls().addCacheControl( cache );
cache.clearCache();
WrapBasicImgLoader.wrapImgLoaderIfNecessary( spimData );
final ArrayList< SourceAndConverter< ? > > sources = new ArrayList<>();
BigDataViewer.initSetups( spimData, new ArrayList<>(), sources );
final List< BvvStackSource< ? > > bvvSources = new ArrayList<>();
for ( final SourceAndConverter< ? > source : sources )
bvvSources.add( addSpimDataSource( handle, source, numTimepoints ) );
WrapBasicImgLoader.removeWrapperIfPresent( spimData );
return bvvSources;
}
// TODO: move to BdvFunctionUtils
public static int getUnusedSetupId( final BigDataViewer bdv )
{
return getUnusedSetupId( bdv.getSetupAssignments() );
}
// TODO: move to BdvFunctionUtils
public static synchronized int getUnusedSetupId( final SetupAssignments setupAssignments )
{
return SetupAssignments.getUnusedSetupId( setupAssignments );
}
/**
* Add the given {@link RandomAccessibleInterval} {@code img} to the given
* {@link BvvHandle} as a new {@link BvvStackSource}. The {@code img} is
* expected to be 2D, 3D, 4D, or 5D with the given {@link AxisOrder}.
*
* @param handle
* handle to add the {@code img} to.
* @param img
* {@link RandomAccessibleInterval} to add.
* @param type
* instance of the {@code img} type.
* @param name
* name to give to the new source
* @param axisOrder
* {@link AxisOrder} of the source, is used to appropriately split {@code img} into channels and timepoints.
* @param sourceTransform
* transforms from source coordinates to global coordinates.
* @return a new {@link BdvStackSource} handle for the newly added source(s).
*/
private static < T extends NumericType< T > > BvvStackSource< T > addRandomAccessibleInterval(
final BvvHandle handle,
final RandomAccessibleInterval< T > img,
final T type,
final String name,
final AxisOrder axisOrder,
final AffineTransform3D sourceTransform )
{
final List< ConverterSetup > converterSetups = new ArrayList<>();
final List< SourceAndConverter< T > > sources = new ArrayList<>();
final ArrayList< RandomAccessibleInterval< T > > stacks = AxisOrder.splitInputStackIntoSourceStacks( img, axisOrder );
int numTimepoints = 1;
for ( final RandomAccessibleInterval< T > stack : stacks )
{
final Source< T > s;
if ( stack.numDimensions() > 3 )
{
numTimepoints = ( int ) stack.max( 3 ) + 1;
s = new RandomAccessibleIntervalSource4D<>( stack, type, sourceTransform, name );
}
else
{
s = new RandomAccessibleIntervalSource<>( stack, type, sourceTransform, name );
}
addSourceToListsGenericType( s, handle.getUnusedSetupId(), converterSetups, sources );
}
handle.add( converterSetups, sources, numTimepoints );
final BvvStackSource< T > bvvSource = new BvvStackSource<>( handle, numTimepoints, type, converterSetups, sources );
handle.addBvvSource( bvvSource );
return bvvSource;
}
/**
* Add the given {@link RandomAccessible} {@code img} to the given
* {@link BvvHandle} as a new {@link BvvStackSource}. The {@code img} is
* expected to be 2D, 3D, 4D, or 5D with the given {@link AxisOrder}.
*
* @param handle
* handle to add the {@code img} to.
* @param img
* {@link RandomAccessible} to add.
* @param interval
* interval of the source (this is only used in the navigation
* box overlay in BDV).
* @param numTimepoints
* the number of timepoints of the source.
* @param type
* instance of the {@code img} type.
* @param name
* name to give to the new source
* @param axisOrder
* {@link AxisOrder} of the source, is used to appropriately split {@code img} into channels and timepoints.
* @param sourceTransform
* transforms from source coordinates to global coordinates.
* @return a new {@link BdvStackSource} handle for the newly added source(s).
*/
private static < T extends NumericType< T > > BvvStackSource< T > addRandomAccessible(
final BvvHandle handle,
final RandomAccessible< T > img,
final Interval interval,
final int numTimepoints,
final T type,
final String name,
final AxisOrder axisOrder,
final AffineTransform3D sourceTransform )
{
final List< ConverterSetup > converterSetups = new ArrayList<>();
final List< SourceAndConverter< T > > sources = new ArrayList<>();
final Pair< ArrayList< RandomAccessible< T > >, Interval > stacksAndInterval = AxisOrder.splitInputStackIntoSourceStacks(
img,
interval,
axisOrder );
final ArrayList< RandomAccessible< T > > stacks = stacksAndInterval.getA();
final Interval stackInterval = stacksAndInterval.getB();
for ( final RandomAccessible< T > stack : stacks )
{
final Source< T > s;
if ( stack.numDimensions() > 3 )
s = new RandomAccessibleSource4D<>( stack, stackInterval, type, sourceTransform, name );
else
s = new RandomAccessibleSource<>( stack, stackInterval, type, sourceTransform, name );
addSourceToListsGenericType( s, handle.getUnusedSetupId(), converterSetups, sources );
}
handle.add( converterSetups, sources, numTimepoints );
final BvvStackSource< T > bvvSource = new BvvStackSource<>( handle, numTimepoints, type, converterSetups, sources );
handle.addBvvSource( bvvSource );
return bvvSource;
}
/**
* Add the given {@link Source} to the given {@link BvvHandle} as a new
* {@link BvvStackSource}.
*
* @param handle
* handle to add the {@code source} to.
* @param source
* source to add.
* @param numTimepoints
* the number of timepoints of the source.
* @return a new {@link BdvStackSource} handle for the newly added
* {@code source}.
*/
@SuppressWarnings( "rawtypes" )
private static < T > BvvStackSource< T > addSource(
final BvvHandle handle,
final Source< T > source,
final int numTimepoints )
{
final T type = source.getType();
final List< ConverterSetup > converterSetups = new ArrayList<>();
final List< SourceAndConverter< T > > sources = new ArrayList<>();
addSourceToListsGenericType( source, handle.getUnusedSetupId(), converterSetups, sources );
handle.add( converterSetups, sources, numTimepoints );
final BvvStackSource< T > bvvSource = new BvvStackSource<>( handle, numTimepoints, type, converterSetups, sources );
handle.addBvvSource( bvvSource );
return bvvSource;
}
/**
* Add the given {@code source} to the lists of {@code converterSetups}
* (using specified {@code setupId}) and {@code sources}. For this, the
* {@code source} is wrapped with an appropriate {@link Converter} to
* {@link ARGBType} and into a {@link TransformedSource}.
*
* @param source
* source to add.
* @param setupId
* id of the new source for use in {@link SetupAssignments}.
* @param converterSetups
* list of {@link ConverterSetup}s to which the source should be
* added.
* @param sources
* list of {@link SourceAndConverter}s to which the source should
* be added.
*/
@SuppressWarnings( { "rawtypes", "unchecked" } )
private static < T > void addSourceToListsGenericType(
final Source< T > source,
final int setupId,
final List< ConverterSetup > converterSetups,
final List< SourceAndConverter< T > > sources )
{
final T type = source.getType();
if ( type instanceof RealType || type instanceof ARGBType || type instanceof VolatileARGBType )
addSourceToListsNumericType( ( Source ) source, setupId, converterSetups, ( List ) sources );
else
throw new IllegalArgumentException( "Unknown source type. Expected RealType, ARGBType, or VolatileARGBType" );
}
/**
* Add the given {@code source} to the lists of {@code converterSetups}
* (using specified {@code setupId}) and {@code sources}. For this, the
* {@code source} is wrapped with an appropriate {@link Converter} to
* {@link ARGBType} and into a {@link TransformedSource}.
*
* @param source
* source to add.
* @param setupId
* id of the new source for use in {@link SetupAssignments}.
* @param converterSetups
* list of {@link ConverterSetup}s to which the source should be
* added.
* @param sources
* list of {@link SourceAndConverter}s to which the source should
* be added.
*/
private static < T extends NumericType< T > > void addSourceToListsNumericType(
final Source< T > source,
final int setupId,
final List< ConverterSetup > converterSetups,
final List< SourceAndConverter< T > > sources )
{
final T type = source.getType();
final SourceAndConverter< T > soc = BigDataViewer.wrapWithTransformedSource(
new SourceAndConverter<>( source, BigDataViewer.createConverterToARGB( type ) ) );
converterSetups.add( BigDataViewer.createConverterSetup( soc, setupId ) );
sources.add( soc );
}
private static < T > BvvStackSource< T > addSpimDataSource(
final BvvHandle handle,
final SourceAndConverter< T > source,
final int numTimepoints )
{
final ConverterSetup setup = BigDataViewer.createConverterSetup( source, handle.getUnusedSetupId() );
final List< ConverterSetup > setups = Collections.singletonList( setup );
final List< SourceAndConverter< T > > sources = Collections.singletonList( source );
handle.add( setups, sources, numTimepoints );
final T type = source.getSpimSource().getType();
final BvvStackSource< T > bdvSource = new BvvStackSource<>( handle, numTimepoints, type, setups, sources );
handle.addBvvSource( bdvSource );
return bdvSource;
}
}