質問編集履歴
2
コード追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -7,6 +7,12 @@
|
|
7
7
|
|
8
8
|
|
9
9
|
以下のような単純なこともできない。
|
10
|
+
|
11
|
+
scikit-imageを最新に更新したが、改善せず。
|
12
|
+
|
13
|
+
```python
|
14
|
+
|
15
|
+
コード
|
10
16
|
|
11
17
|
from skimage import data,io #for get_image
|
12
18
|
|
@@ -18,7 +24,7 @@
|
|
18
24
|
|
19
25
|
import numpy as np
|
20
26
|
|
21
|
-
def get_image():
|
27
|
+
def get_image():
|
22
28
|
|
23
29
|
img=mpimg.imread("C:/pyfile/cameraman_photo.png")
|
24
30
|
|
1
詳細記載
test
CHANGED
File without changes
|
test
CHANGED
@@ -1 +1,27 @@
|
|
1
1
|
scikit-imageを使うと、ImportError: cannot import name '_validate_lengths' となる
|
2
|
+
|
3
|
+
最近まで問題なく実行できたのですが、突然上記のようなエラーメッセージ。
|
4
|
+
|
5
|
+
scikit-imageを最新に更新しても解決できず。
|
6
|
+
|
7
|
+
|
8
|
+
|
9
|
+
以下のような単純なこともできない。
|
10
|
+
|
11
|
+
from skimage import data,io #for get_image
|
12
|
+
|
13
|
+
import matplotlib.pyplot as plt
|
14
|
+
|
15
|
+
import matplotlib.image as mpimg
|
16
|
+
|
17
|
+
from PIL import Image #for get_png2, get_pixel
|
18
|
+
|
19
|
+
import numpy as np
|
20
|
+
|
21
|
+
def get_image(): #pngの取得と表示,保存
|
22
|
+
|
23
|
+
img=mpimg.imread("C:/pyfile/cameraman_photo.png")
|
24
|
+
|
25
|
+
plt.imshow(img)
|
26
|
+
|
27
|
+
plt.savefig("C:/pyfile/cameraman_photo.jpeg",bbox_inches="tight")
|