- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个文件夹,其中包含两个不同白天(白天和夜晚)的城市天际线图像。我想读取相应文件夹中不同颜色空间的所有图像,然后我想计算所有颜色 channel 的统计数据。然后我想创建一个包含所有统计数据的 pandas 数据框。
为了防止不必要的重复代码,我尝试使用字典。目前,我可以打印颜色空间 x channel x 统计数据的所有组合的所有统计数据。但从概念上讲,我无法将这些东西放入包含行(单独的图像)和列(文件名、颜色空间 x channel x 统计数据)的 pandas DataFrame 中。
如果有任何帮助,我将不胜感激。
import os
import numpy as np
import matplotlib.pyplot as plt
import cv2
import pandas as pd
dictionary_of_color_spaces = {
'RGB': cv2.COLOR_BGR2RGB, # Red, Green, Blue
'HSV': cv2.COLOR_BGR2HSV, # Hue, Saturation, Value
'HLS': cv2.COLOR_BGR2HLS, # Hue, Lightness, Saturation
'YUV': cv2.COLOR_BGR2YUV, # Y = Luminance , U, V = Chrominance color components
}
dictionary_of_channels = {
'channel_1': 0,
'channel_2': 1,
'channel_3': 2,
}
dictionary_of_statistics = {
'min': np.min,
'max': np.max,
'mean': np.mean,
'median': np.median,
'std': np.std,
}
# get filenames inside training folders for day and night
path_training_day = './day_night_images/training/day/'
path_training_night = './day_night_images/training/night/'
filenames_training_day = [file for file in os.listdir(path_training_day)]
filenames_training_night = [file for file in os.listdir(path_training_night)]
for filename in filenames_training_day:
image = cv2.imread(path_training_day + filename)
for color_space in dictionary_of_color_spaces:
image = cv2.cvtColor(image, dictionary_of_color_spaces[color_space])
for channel in dictionary_of_channels:
for statistic in dictionary_of_statistics:
print(dictionary_of_statistics[statistic](image[:,:,dictionary_of_channels[channel]]))
最佳答案
在不更改大部分代码的情况下,我能想到的最简单的事情是:
行
):row
转换为 pd.Series 对象,使用 row
作为值,使用数据帧的列作为索引,使用 filename
作为名称;最重要的细节是确保 df 列名称正确,即与填充 row
变量的值的顺序相同。当我们在列表理解中为列名创建组合时,重要的是我们从最内层循环移动到最外层,以便稍后在将 row
追加到 df 中时匹配值。
这应该有效:
import os
import numpy as np
import matplotlib.pyplot as plt
import cv2
import pandas as pd
dictionary_of_color_spaces = {
'RGB': cv2.COLOR_BGR2RGB, # Red, Green, Blue
'HSV': cv2.COLOR_BGR2HSV, # Hue, Saturation, Value
'HLS': cv2.COLOR_BGR2HLS, # Hue, Lightness, Saturation
'YUV': cv2.COLOR_BGR2YUV, # Y = Luminance , U, V = Chrominance color components
}
dictionary_of_channels = {
'channel_1': 0,
'channel_2': 1,
'channel_3': 2,
}
dictionary_of_statistics = {
'min': np.min,
'max': np.max,
'mean': np.mean,
'median': np.median,
'std': np.std,
}
# creates column names in the same order as loops below
cols = [f'{s}_{c}_{cs}' for s in dictionary_of_statistics for c in dictionary_of_channels for cs in dictionary_of_color_spaces]
# creates empty df
df = pd.DataFrame(column=cols)
# get filenames inside training folders for day and night
path_training_day = './day_night_images/training/day/'
path_training_night = './day_night_images/training/night/'
filenames_training_day = [file for file in os.listdir(path_training_day)]
filenames_training_night = [file for file in os.listdir(path_training_night)]
for filename in filenames_training_day:
row = [] # row for the current image - to be populated with stat values
image = cv2.imread(path_training_day + filename)
for color_space in dictionary_of_color_spaces:
image = cv2.cvtColor(image, dictionary_of_color_spaces[color_space])
for channel in dictionary_of_channels:
for statistic in dictionary_of_statistics:
row.append(dictionary_of_statistics[statistic](image[:,:,dictionary_of_channels[channel]]))
row_series = pd.Series(row, index=cols, name=filename)
df = df.append(row_series)
此代码将每个图像的文件名转换为最终 df 中每行的索引。如果您不想这样做,请将索引转换为新列 (df['filename'] = df.index
) 并随后使用 pandas.reset_index (pd = pd.reset_index( drop=True)
.
关于 python |自动数据帧生成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55087855/
我正在尝试使用以下 keytool 命令为我的应用程序生成 keystore : keytool -genkey -alias tomcat -keystore tomcat.keystore -ke
编辑:在西里尔正确解决问题后,我注意到只需将生成轴的函数放在用于生成标签的函数下面就可以解决问题。 我几乎读完了 O'Reilly 书中关于 D3.js 的教程,并在倒数第二页上制作了散点图,但是当添
虽然使用 GraphiQL 效果很好,但我的老板要求我实现一个用户界面,用户可以在其中通过 UI 元素(例如复选框、映射关系)检查呈现给他们的元素并获取数据,这样做将为该人生成 graphql 输入,
我尝试在 Netbean 6.8 中使用 ws-import 生成 Java 类。我想重新生成 jax-ws,因为在 ebay.api.paypalapi 包中发现了一个错误(我认为该错误是由于 Pa
我有一个 perl 脚本,它获取系统日期并将该日期写入文件名。 系统日期被分配给 TRH1 变量,然后它被设置为一个文件名。 $TRH1 =`date + %Y%m%d%H%M`; print "TR
我是 Haskell 的新手,需要帮助。我正在尝试构建一种必须具有某种唯一性的新数据类型,因此我决定使用 UUID 作为唯一标识符: data MyType = MyType { uuid ::
我制作了一个脚本,它可以根据 Mysql 数据库中的一些表生成 XML。 该脚本在 PHP 中运行。 public function getRawMaterials($apiKey, $format
所以这是我的项目中的一个问题。 In this task, we will use OpenSSL to generate digital signatures. Please prepare a f
我在 SAS LIFEREG 中有一个加速故障时间模型,我想绘制它。因为 SAS 在绘图方面非常糟糕,我想实际重新生成 R 中曲线的数据并将它们绘制在那里。 SAS 提出了一个尺度(在指数分布固定为
我正在为 Django 后端制作一个样板,并且我需要能够使它到达下一个下载它的人显然无法访问我的 secret key 的地方,或者拥有不同的 key 。我一直在研究一些选项,并在这个过程中进行了实验
我正在创建一个生成采购订单的应用程序。我可以根据用户输入的详细信息创建文本文件。我想生成一个看起来比普通文本文件好得多的 Excel。有没有可以在我的应用程序中使用的开源库? 最佳答案 目前还没有任何
我正在尝试使用 ScalaCheck 为 BST 创建一个 Gen,但是当我调用 .sample 方法时,它给了我 java.lang.NullPointerException。我哪里错了? seal
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我尝试编写一些代码,例如(在verilog中): parameter N = 128; if (encoder_in[0] == 1) begin 23 binary_out = 1;
我正忙于在 Grails 项目中进行从 MySQL 到 Postgres 的相当复杂的数据迁移。 我正在使用 GORM 在 PostGres 中生成模式,然后执行 MySQL -> mysqldump
如何使用纯 XSLT 生成 UUID?基本上是寻找一种使用 XSLT 创建独特序列的方法。该序列可以是任意长度。 我正在使用 XSLT 2.0。 最佳答案 这是一个good example 。基本上,
我尝试安装.app文件,但是当我安装并单击“同步”(在iTunes中)时,我开始在设备上开始安装,然后停止,这是一个问题,我不知道在哪里,但我看到了我无法解决的奇怪的事情: 最佳答案 似乎您没有在Xc
自从我生成 JavaDocs 以来已经有一段时间了,我确信这些选项在过去 10 年左右的时间里已经得到了改进。 我能否得到一些有关生成器的建议,该生成器将输出类似于 .Net 文档结构的 JavaDo
我想学习如何生成 PDF,我不想使用任何第三方工具,我想自己用代码创建它。到目前为止,我所看到的唯一示例是我通过在第 3 方 dll 上打开反射器查看的代码,以查看发生了什么。不幸的是,到目前为止我看
我正在从 Epplus 库生成 excel 条形图。 这是我成功生成的。 我的 table 是这样的 Mumbai Delhi Financial D
我是一名优秀的程序员,十分优秀!