我是ImageJ的新手,並試圖使用Python(在ImageJ宏編輯器中)重新創建以下宏。ImageJ:在Python腳本中使用selectionType()時的NameError
s = selectionType();
if(s == -1) {
exit("There was no selection.");
} else if(s != 10) {
exit("The selection wasn't a point selection.");
} else {
getSelectionCoordinates(xPoints,yPoints);
x = xPoints[0];
y = yPoints[0];
showMessage("Got coordinates ("+x+","+y+")");
}
問題是,我不知道如何導入selectionType()和getSelectionCoordinates()內置函數。當我嘗試在Python代碼中使用它們時,出現NameError錯誤。
任何想法?
謝謝, 亞歷克斯