Re: Problem with Import: "Cannot resolve symbol 'ImageJ'"
Posted by RMaas on
URL: http://imagej.273.s1.nabble.com/Problem-with-Import-Cannot-resolve-symbol-ImageJ-tp5018721p5018723.html
Wow thank you for your amazing fast answere and the new gist!
Maybe you also can help me with my next step, I reduce the code from the gist, so that only the rating section exist anymore. Now I want to use this class to open when I start my plugin and hand over the selection of the user.
My plugin looks something like that:
Public class editing_ implements PlugInFilter{
…
Public int setup (String arg, ImagePlus img){
// stuff that happening with the new created image (Safe as, no empty name, …)
}
Public void run(Imageprocessor ip){
//main function of the plugin (take a picture and create a new one out of it with prediction),
there are two possible methods implemented and if would be
awesome that I could hand over the string from the selected checkbox so I can use a switch
to choose which should be used in this case
}
}
Is there a smart way to do it? Something like a class call in run or setup so that at the begin the window of MultipleChoice appears (no need for the second windows to display the choice) and then start run the run-method with the user choice?
Best regards