-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathClipboard_to_Results.py
31 lines (27 loc) · 1018 Bytes
/
Clipboard_to_Results.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Clipboard_to_Results.py
# IJ BAR: https://github.com/tferr/Scripts#scripts
#
# Imports numeric values copied to the clipboard into the Results table. Useful, since
# BARs that analyze tabular data can only read values from the main IJ "Results" table
#
# Requirements: Requires BAR_-XX.jar to be installed in the plugins folder of IJ
#
# NB: When copying data from withing IJ (e.g., lists from histograms or plot profiles),
# Use Edit>Options>Input/Output... to specify if column headers/row numbers should be
# copied to the clipboard
import os, sys, tempfile
from bar import Utils as barUtils
from ij import IJ
from ij.plugin.filter import Analyzer
import ij.measure.ResultsTable as RT
fd, path = tempfile.mkstemp()
try:
os.write(fd, barUtils.getClipboardText())
os.close(fd)
rt = RT.open(path) #IOException if getClipboardText()==""
if Analyzer.resetCounter():
rt.show("Results")
except:
IJ.showMessage("Could not place clipboard into Results table.")
finally:
os.remove(path)