-
Notifications
You must be signed in to change notification settings - Fork 75
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
the spot is filtered by a quality threshold #287
Comments
Rmlml it looks like the macro reads and uses the last quality value defined as a threshold. |
When I use trackmate in macro, what are the parameters that I can specify in run() and where should I look for trackmate's support documentation for macro? |
In the code so far: But I see it does not work for you. |
Thank you for your reply. |
I am trying to use the jython code. How can I append code for save the whole trackmate work including setting parameters, spots and tracks. I think it is equal to the button in the GUI as following image: |
Hello @asincerity You can use the TmXmlWriter class. It does what the 'save' button does. |
thankyou vcery much.it really help me. |
I run the trackmate in the macro script as follow:
run('TrackMate', "use_gui=false "
+ "display_results=false "
+ "radius=2.5 "
+ "threshold=10 "
+ "subpixel=true "
+ "median=false "
+ "max_distance=2 "
+ "max_gap_distance=2 "
+ "max_frame_gap=2 "
+ "save_to=[" + path + File.separator + name +"spots.xml] ");
Then, I read the spot.xml in the matlab as follow:
[spotTable,~] = trackmateSpots(spotsPath, {'POSITION_X','POSITION_Y','POSITION_T','QUALITY' });
But I find the spots are filtered by a quality threshold. This value can be found in the .xml
So, how can i change the value in the run('Trackmate',...). What is the parameters that can be changed in the run('Trackmate',...).
Thank you for your patience
The text was updated successfully, but these errors were encountered: