前提・実現したいこと
https://colab.research.google.com/github/jantic/DeOldify/blob/master/ImageColorizerColab.ipynb#scrollTo=QVdovx8Vnx0n
で画像に色付けしたいと思います。
ここに質問の内容を詳しく書いてください。
上から順番に実行していくと、最後にエラーメッセージが出ます。
発生している問題・エラーメッセージ
エラーメッセージ
UnidentifiedImageError Traceback (most recent call last)
<ipython-input-13-4cf2045b75f3> in <module>()
4
5 if source_url is not None and source_url !='':
----> 6 image_path = colorizer.plot_transformed_image_from_url(url=source_url, render_factor=render_factor, compare=True, watermarked=watermarked)
7 show_image_in_notebook(image_path)
8 else:
2 frames
/content/DeOldify/deoldify/visualize.py in plot_transformed_image_from_url(self, url, path, results_dir, figsize, render_factor, display_render_factor, compare, post_process, watermarked)
80 watermarked: bool = True,
81 ) -> Path:
---> 82 img = self._get_image_from_url(url)
83 img.save(path)
84 return self.plot_transformed_image(
/content/DeOldify/deoldify/visualize.py in _get_image_from_url(self, url)
64 def _get_image_from_url(self, url: str) -> Image:
65 response = requests.get(url, timeout=30, headers={'Accept': '/;q=0.8'})
---> 66 img = PIL.Image.open(BytesIO(response.content)).convert('RGB')
67 return img
68
/usr/local/lib/python3.7/dist-packages/PIL/Image.py in open(fp, mode)
2894 warnings.warn(message)
2895 raise UnidentifiedImageError(
-> 2896 "cannot identify image file %r" % (filename if filename else fp)
2897 )
2898
UnidentifiedImageError: cannot identify image file <_io.BytesIO object at 0x7f7c5b508650>
該当のソースコード
ソースコード
source_url = 'https://drive.google.com/file/d/1WdXFV2-JXjEZWnfC7eXRnTtaysRNTCKL/view?usp=sharing' #@param {type:"string"}
render_factor = 35 #@param {type: "slider", min: 7, max: 40}
watermarked = True #@param {type:"boolean"}
if source_url is not None and source_url !='':
image_path = colorizer.plot_transformed_image_from_url(url=source_url, render_factor=render_factor, compare=True, watermarked=watermarked)
show_image_in_notebook(image_path)
else:
print('Provide an image url and try again.')
試したこと
・何度も最初からやってみる。
・調べたサイト
https://www.codexa.net/how-to-use-google-colaboratory/
http://cedro3.com/ai/pytorch-deoldify/
補足情報(FW/ツールのバージョンなど)
あなたの回答
tips
プレビュー