首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >使用python将cv2.calcHist保存到CSV文件的单个单元格中

使用python将cv2.calcHist保存到CSV文件的单个单元格中
EN

Stack Overflow用户
提问于 2021-02-26 00:39:18
回答 1查看 87关注 0票数 0

我正在做一个使用python的项目,我需要保存被检测到的人的属性,比如衣服,衣服颜色和检测的直方图。我希望将每个属性保存到一个单一单元格,以便每行表示单个检测。

现在,我希望有人能告诉我如何最好地将直方图数组保存到单一单元格。这可能吗?

EN

Stack Overflow用户

回答已采纳

发布于 2021-02-26 04:13:58

您需要决定一种格式,以便可以轻松地回读。下面的方法首先为3行数据创建一些随机直方图数据。它首先写一个头。下一步,它将每个直方图转换为文本,使用np.array2string()函数。它使用一个;分隔符,以免与标准混淆,对于其他值。然后,它删除所有不需要的空格和换行符,因此生成的二维数组在一行上。然后,它使用一个标准csv.writer()来写这些行。

然后,我展示了如何再次读入数据并将其转换回numpy数组:

import numpy as np
import csv
import ast
import sys

# Create some data and histograms to save
row = [(0, "Tops", "maroon"), (1, "Socks", "blue"), (2, "Shirts", "white")]
hists = [np.random.randint(0, 20, size=(3, 10), dtype=np.int32) for _ in range(3)]

with open('output.csv', 'w', newline='') as f_output:
    csv_output = csv.writer(f_output)
    csv_output.writerow(['index', 'type', 'colour', 'hist'])
    
    for item, hist in zip(row, hists):
        hist_text = np.array2string(hist, separator=';', threshold=sys.maxsize).replace(' ','').replace('\n', '')
        csv_output.writerow([*item, hist_text])

# To read it back from the CSV into a numpy array
with open('output.csv') as f_input:
    csv_input = csv.reader(f_input)
    header = next(csv_input)
    
    for index, type, colour, hist_text in csv_input:
        print(index, type, colour)
        hist = np.array(ast.literal_eval(hist_text.replace(';', ',')), dtype=np.int32)
        print(hist)

所以这会给你output.csv包含如下内容:

index,type,colour,hist
0,Tops,maroon,[[12;6;9;10;2;7;10;8;0;4];[16;10;5;16;15;17;7;14;2;4];[18;17;11;10;19;15;1;1;2;8]]
1,Socks,blue,[[15;5;4;7;18;12;9;5;6;14];[11;6;12;1;2;11;11;15;0;12];[9;11;7;2;14;18;8;13;15;17]]
2,Shirts,white,[[11;17;12;9;2;13;19;5;10;14];[16;16;3;8;5;8;6;0;18;15];[5;7;2;4;16;5;11;17;9;19]]

当回读时,它会显示:

0 Tops maroon
[[12  6  9 10  2  7 10  8  0  4]
 [16 10  5 16 15 17  7 14  2  4]
 [18 17 11 10 19 15  1  1  2  8]]
1 Socks blue
[[15  5  4  7 18 12  9  5  6 14]
 [11  6 12  1  2 11 11 15  0 12]
 [ 9 11  7  2 14 18  8 13 15 17]]
2 Shirts white
[[11 17 12  9  2 13 19  5 10 14]
 [16 16  3  8  5  8  6  0 18 15]
 [ 5  7  2  4 16  5 11 17  9 19]]
票数 0
EN
查看全部 1 条回答
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/66372695

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档