如何通过展平张量对多个图像进行 PCA?

发布于 2025-01-19 12:27:35 字数 728 浏览 1 评论 0原文

我有一系列图像的张量。我想将矢量弄平并在相同的情况下执行PCA。

以下是在单个图像上提取张量的代码:

bottle_neck_model_tensors = bottle_neck_model([im_resize])[0]
bottle_neck_model_tensors

我想在多个图像上执行相同的操作,并且也将阵列弄平。后来在数组上执行PCA。

谁能帮我吗?

多个图像的代码,

import glob
import cv2 as cv

path = glob.glob(".../SampleImages*.jpg")
    
cv_img = []
for img in path:
   n = cv.imread(img)
   #print(n.shape)
   im_resize = cv2.resize(n , (1024 ,1024))
   im_resize = np.expand_dims(im_resize, axis = 0)
   cv_img.append(im_resize)
   bottle_neck_model_tensors = bottle_neck_model([im_resize])[0]

我想即兴创作此代码并使向量变平。我之所以重塑,是因为我从提取的层创建的模型是形状(无,128、128、512),而对模型的输入映像为1024,1024,3

I have an array of tensors for a single image. I want to flatten the vectors and perform PCA on the same.

The below is the code to extract the tensors on a single image :

bottle_neck_model_tensors = bottle_neck_model([im_resize])[0]
bottle_neck_model_tensors

I want to do the same on multiple images and also flatten the array. later perform PCA on the array.

Can anyone help me with this?

Code For multiple images

import glob
import cv2 as cv

path = glob.glob(".../SampleImages*.jpg")
    
cv_img = []
for img in path:
   n = cv.imread(img)
   #print(n.shape)
   im_resize = cv2.resize(n , (1024 ,1024))
   im_resize = np.expand_dims(im_resize, axis = 0)
   cv_img.append(im_resize)
   bottle_neck_model_tensors = bottle_neck_model([im_resize])[0]

I want to improvise this code and flatten the vectors. I am reshaping because the model I created from the extracted layers is of shape ( None, 128, 128, 512) and the input image to the model is 1024, 1024, 3.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文