質問編集履歴
3
修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
-
img3 = img1[
|
9
|
+
img3[i][j] = img1_arr[i][j] * img2_arr[i][j]
|
10
10
|
|
11
11
|
TypeError: 'PrimaryHDU' object is not subscriptable
|
12
12
|
|
2
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
|
8
8
|
|
9
|
-
img3 =
|
9
|
+
img3 = img1[0][0] * img2[0][0]
|
10
10
|
|
11
11
|
TypeError: 'PrimaryHDU' object is not subscriptable
|
12
12
|
|
1
誤字
test
CHANGED
File without changes
|
test
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
pythonでf
|
1
|
+
pythonでfits形式の画像とpng形式の画像の同座標のピクセル値を掛け合わせてリストに入れたいのですが
|
2
2
|
|
3
3
|
以下のようなエラーメッセージが表示されました。どのように対処すればよいでしょうか。
|
4
4
|
|