You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am wondering whether it could be worth adding this to bdv-core:
public interface SourceWrapper< T >
{
Source< T > getWrappedSource();
}
TransformedSource could implement it and in MoBIE and bdv-playground we are having a couple of other classes that would also implement it (WarpedSource, CroppedSource, and ResampledSource). Maybe this could help going backwards through a potential chain of operations that have been done to a source because one could ask instanceof SourceWrapper.
The text was updated successfully, but these errors were encountered:
@tpietzsch @bogovicj @NicoKiaru @tinevez
I am wondering whether it could be worth adding this to bdv-core:
TransformedSource
could implement it and in MoBIE and bdv-playground we are having a couple of other classes that would also implement it (WarpedSource
,CroppedSource
, andResampledSource
). Maybe this could help going backwards through a potential chain of operations that have been done to a source because one could askinstanceof SourceWrapper
.The text was updated successfully, but these errors were encountered: