-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
BVV annotation views support in timelapse data #1201
Comments
I've added a "hacked" solution, but it works static int numberOfAnnotationsPerTimepoint(final AnnotationAdapter< Annotation > annotationAdapter, final int timePoint, String imageName)
{
int n = 1;
while(annotationAdapter.getAnnotation( imageName, timePoint, n ) != null)
{
n++;
}
return n-1;
} Maybe next week you will have time to take a look and make it better, BTW, there is a nice trick to see labels/annotations/volumes the same way as in BDV: Enjoy your weekend! |
That arabidopsis timelapse dataset is very pretty browsing in 3D and time! |
Hi @ekatrukha, For releasing BVV with MoBIE; should we first fix this or could we release "as is". |
...and could you let me know how to open the "arabidopsis timelapse"? |
I just put in OpenPlatybrowser.java example |
Hi, I had a brief look and I cannot come up with something better right now. We had very few time-lapse use-cases so far, thus the current support might be buggy and the APIs not very convenient. Let's leave this open and I can maybe work on it more later... |
Hello @tischi,
I am now trying to adapt BVV to display timeseries,
using this intro and example data there.
I think the data loading is ok.
Now I am trying to fix annotations.
So now the main problem is that for the estimation of LUT size
I use
int nAnnotationsNumber
, estimated here.But I think it gives me the total annotation number per all timepoints, while (I think) I need one per current timepoint.
What would be a proper/workable way to get it?
The text was updated successfully, but these errors were encountered: