我得到了使用C/C++ 中的特征脸创建面部识别的项目。虽然它使用 PCA 来大大减小矩阵大小,但在此之前我基本上有一个维度为 32,400*32,400 (1.04976e9) 的矩阵,如果矩阵使用 int 文件类型,我想在报告中写下文件大小我的矩阵会是 1.04976e9*4 字节大小吗?
问问题
163 次
2 回答
0
int
size depends on hardware and compiler. Its size is sizeof(int)
. So your matrix size should be 32400*32400*sizeof(int)
于 2013-05-26T10:28:05.443 回答
0
That's the number of cells, you have to multiply that with the size of integer, sizeof(int)
, which is typically 4 or 8 bytes.
于 2013-05-26T10:28:15.943 回答