- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试对与 .tif 图像关联的相关文件进行分组。从列表中可以看到,每组有 7 个相关文件。我正在寻找一种对这些文件进行分组的方法,以便我可以通过 shutil.move()
将它们移动到各个文件夹中。
以下脚本是我根据 this answer 尝试失败的脚本。结果与输入 files
列表相同。
我如何调整它来执行我想要的分组?
import os, itertools
files = ['F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tfw',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tif',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tif.aux.xml',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tif.ovr',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tif.vat.cpg',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tif.vat.dbf',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tif.xml',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tfw',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tif',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tif.aux.xml',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tif.ovr',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tif.vat.cpg',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tif.vat.dbf',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tif.xml']
test = sorted(files)
grouped = [list(g) for _, g in itertools.groupby(test, lambda x: x.split('_')[1])]
<小时/>
预期输出:
[['F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tfw',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tif',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tif.aux.xml',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tif.ovr',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tif.vat.cpg',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tif.vat.dbf',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511759_sw.tif.xml'],
['F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tfw',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tif',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tif.aux.xml',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tif.ovr',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tif.vat.cpg',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tif.vat.dbf',
'F:\\juniper_project\\data\\raster\\deliverables\\OR\\reclass\\reclass_4511760_sw.tif.xml']]
最佳答案
关闭!分割列表上的索引是一次性的,应该是2。
尝试
grouped = [list(g) for _, g in itertools.groupby(test, lambda x: x.split('_')[2])]
关于python - 如何对相关的 .tif 文件进行分组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30383989/
我正在尝试获取多个多页 .tif 文件并将它们组合成一个多页 tif 文件。 我在这个 question 中找到了一些代码, 但它似乎只占用每个单独的 .tif 文件的第一页,并用这些第一页创建新的多
我有很多 tif 文件,我想转换成一个。我在 Ubuntu 11.04 上,我该怎么做?我尝试将 tif 转换为单个 pdf,但是在将 pdf 转换为 tif 时卡住了,我使用 ghoscript 和
我需要分析在一个 tif 文件中选作子矩阵的图像的一部分。我想要原始格式的图像,没有多余的装饰(缩放、轴、标签等)...我该怎么做? 这是我现在使用的代码: submatrix = im[x_min
我的问题是,如何才能将 .tif 文件成功加载到 Java 中的 Image 实例中? 现在让我详细介绍一下。我已经阅读了很多关于如何在 Java 中处理/转换 TIF 图像的 stackoverfl
我需要在客户端解析 tiff 文件,因此使用一些 JQuery 库、JS 或 HTML5。我已经搜索过,但找不到我需要的东西。我无法使用任何服务器端技术或浏览器插件。我尝试过 tiff.js http
这个问题已经有答案了: Can't read and write a TIFF image file using Java ImageIO standard library (5 个回答) 已关闭 4
我可以使用以下代码片段成功打印 .GIF、.JPG 或 .PNG,但它不适用于 .TIF 文件。即使添加了 chromaticity.color 属性后,我也无法获取颜色。 public class
我有 tiff 文件,我想获取页数。我已被关注this问题,但我无法获得页数。没有错误,我尝试调试问题但找不到原因。 import java.io.File; import java.io.IOExc
Python - 将两个 TIF 文件附加到特定文件 我的要求是将两个单分页器 TIF 文件附加到具有两页的单个 TIF 文件中。我知道存在append_images参数并尝试按如下方式实现它: im
我尝试打开每像素 16 位和多波段的 tif 图像,将其转换为原始文件。我在接下来的命令 i = Image.open('image.tif') 和使用 rawData = i.tostring()
我正在尝试从 tif 文件中清除一些属性标签项。 我的测试代码是: Image sourceImg = new Bitmap("A10034.tif"); Image img = (Image)sou
我正在尝试读取一些图像文件 jpg、tif、gif、png 并且需要保存文件和创建图标。我收到 UnsupportedTypeException。 ImageIO.read(file); 如果我使用下
例如,一个 400*200 大小的 .tiff 文件,我可以在 python 中将其读取为二维数组 (400 x 200)。 我想将 tiff 大小更改为 200 x 100 或其他比例。 如何在 P
我正在尝试对与 .tif 图像关联的相关文件进行分组。从列表中可以看到,每组有 7 个相关文件。我正在寻找一种对这些文件进行分组的方法,以便我可以通过 shutil.move() 将它们移动到各个文件
我的 tif 文件的索引为 8 bpp,并与颜色图一起保存。 有什么方法可以从 C# 文件中恢复该颜色图? 默认情况下,picturebox 会自动显示这样的颜色图,最左边和最右边分别代表 0 和 2
我为 Windows 资源管理器创建了一个缩略图图像处理程序(shell 扩展),用于处理多种 TIF/TIFF 图像格式。我知道 Explorer 已经包含 TIFF 支持(由 Windows XP
我有像素数据,我想用它来创建具有多个帧的新 .tif 图像。我该怎么做呢?我已经尝试过 python PIL,但是我只发现它支持多帧读取而不是写入。请参阅下文,了解我的失败尝试。 new_Image
我正在使用 WinForms。在我的表单中,我有一个打开按钮和一个下一步按钮。我的应用程序将 .tif 图像打开到一个图片框中。我使用的所有 .tif 图像都有多个页面。下一个按钮用于转到 tif 图
在我作为研究生的工作中,我捕捉显微镜图像并使用 python 将它们保存为原始 tif。我想添加元数据,例如我正在使用的显微镜的名称、放大倍数和成像激光波长。这些细节对于我如何对图像进行后处理都很
我有一个 14406x9606 像素的 8 位 tiff,当通过 BitmapImage 加载时会抛出 System.OutOfMemoryException。作为全深度位图,其大小约为 400 兆。
我是一名优秀的程序员,十分优秀!