keep-loving-pythonのブログ

Pythonを愛し続けたいです(Pythonが流行っている限りですが。。。)

2022-11-03から1日間の記事一覧

解決策。AttributeError: 'Namespace' object has no attribute 'func'

解決策。AttributeError: 'Namespace' object has no attribute 'func' AttributeError: 'Namespace' object has no attribute 'xxx' xxxの部分は、いろいろ。 エラーの内容 エラー AttributeError: 'Namespace' object has no attribute 'func' エラー詳細 …

OpenCVによる撮影画像の連結をいろいろ試してみる【1】

OpenCVによる撮影画像の連結をいろいろ試してみる【1】 基本は、GitHubのコードを動かすだけ。 ORB feature based image stitching for UAV images 比較的シンプルなもの 環境 windows10 python3.7 cv2.version.opencv_version 4.5.3.56 <--実行時に確認 ↓ p…

(狭い視点ですが)DoxygenでPythonを扱うのは無理です。

(狭い視点ですが)DoxygenでPythonを扱うのは無理です。 検討条件 windows10 python3.7 doxygen1.9.5(2022/11/03にインストール) 検討結果 対象のpythonコード import sys def tasu(aa,bb): c = aa + bb return c d = tasu(10,20) if d > 5: print("d",d) els…

Pythonあるある。何の説明もなく、プロンプトに戻る。

Pythonあるある。何の説明もなく、プロンプトに戻る。 [Pythonあるある]症状 正常に動作すると、例えば、何かのprintがされるようなもので、 下記のように、何も起こらずに、プロンプトに戻る。 C:\_JITAKU_DE_GYOMU\....ing-master>python XXXXching.py C:\…

解決策。cv2.error: OpenCV(4.5.3) C:\Users\......src\alloc.cpp:73: error: (-4:Insufficient memory) Failed to allocate 148879029 bytes in function 'cv::OutOfMemoryError'

解決策。cv2.error: OpenCV(4.5.3) C:\Users......src\alloc.cpp:73: error: (-4:Insufficient memory) Failed to allocate 148879029 bytes in function 'cv::OutOfMemoryError' エラー 環境 windows10 python3.7 エラー cv2.error: OpenCV(4.5.3) C:\Users…