User Tools

Site Tools


documents:120206pyip_cooking:python_imagej_cookbook

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
documents:120206pyip_cooking:python_imagej_cookbook [2022/10/16 07:12] – [Using Java8 Stream] kotadocuments:120206pyip_cooking:python_imagej_cookbook [2024/10/08 17:45] (current) – [Accessing multiple files to load image sequences] kota
Line 410: Line 410:
 </code> </code>
 ==== Accessing multiple files to load image sequences ==== ==== Accessing multiple files to load image sequences ====
 +
 +A simple way is to use glob package (file not loaded in this example).
 +<code python linenums:1>
 +import glob, os
 +from ij.io import DirectoryChooser 
 +
 +srcDir = DirectoryChooser("Choose!").getDirectory()
 +for filename in glob.glob(os.path.join(srcDir, "*.tif")):
 +print(os.path.basename(filename))
 +</code>
  
 Here is a cool script written by Christian Tischer for loading image series using file prefix as dictionary keys.  Here is a cool script written by Christian Tischer for loading image series using file prefix as dictionary keys. 
documents/120206pyip_cooking/python_imagej_cookbook.txt · Last modified: 2024/10/08 17:45 by kota

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki