PyQt Tips
- PyQt: QScrollAreaを使ってスクロールバーを追加する - Wizard Notes
- PyQt: シグナル/スロットを使ってスレッド中・終了時にウィジェットを描画 - Wizard Notes
- PyQt: 複数のQPushButtonに単一スロット(値の受け取り関数)を割り当てる - Wizard Notes
- PyQt: setStyleでWidgetのデザインを変更する - Wizard Notes
- PyQtで作るdB単位の音量フェーダー - Wizard Notes
- PyQt Qsound でオーディオファイルを再生/停止 - Wizard Notes
- PyQt でアプリの背景色やテキスト文字の色などの属性を設定する方法 - Wizard Notes
- Python:PyQtでQMainWindowに非依存な複数のQWidgetを同時に表示する - Wizard Notes
Python x GUIアプリ
- Pythonで作る音楽プレイヤー:PyQt5 で簡易GUI作成 - Wizard Notes
- Python: PyQt5とPyAudioで作るBPM計測アプリ - Wizard Notes
- Python: PyAudioとPyQtで作る簡易シンセサイザー - Wizard Notes
- Python: PyQt5のQPushButtonで作る簡易ピアノ鍵盤 - Wizard Notes
- Python+PyAudioで作るリアルタイム音高アナライザ - Wizard Notes
- Python + PyAudio で作る、リアルタイムスペクトルアナライザ(ループバック録音対応) - Wizard Notes
- 音の広がりや位相差を可視化するリサージュメーター(ゴニオメーター)のPython実装 - Wizard Notes
- ステレオ楽曲の位相差を確認できるフェーズメーターの作り方(極座標ベース) - Wizard Notes
matplotlib
- matplotlib: 折れ線グラフのリアルタイムプロットでラベルやカラーなどの属性を変える(音声信号でのデモ付き) - Wizard Notes
- matplotlib: 折れ線グラフで複数の配列・ラベル・カラーなどの属性をまとめてセットする - Wizard Notes
- matplotlibを使ってリアルタイムで折れ線グラフをプロット - Wizard Notes
- Python matplotlibでスペクトログラムのリアルタイムでのプロット実装 - Wizard Notes
- Python: matplotlibを使ったリアルタイムプロットのフレームレート(FPS) に関する調査 - Wizard Notes
- Python:matplotlibで双二次フィルタの極・零点をプロット - Wizard Notes
- matplotlibを使ったインタラクティブなプロット(サンプルコード付き) - Wizard Notes
- matplotlibでcolormapを逆にする方法 - Wizard Notes
- Matplotlibで主成分分析の寄与率・累積寄与率を左右2軸プロット - Wizard Notes
- Numpyで多変量正規分布を算出&プロット - Wizard Notes
- matplotlib: 各ラベルごとに色分けされた散布図をプロット - Wizard Notes
- matplotlibのウィンドウを透明化してプロット - Wizard Notes
- Pythonで曲の楽器構成やAメロ・Bメロ・サビのタイムラインをプロット - Wizard Notes
- matplotlib: 棒グラフでハッチパターンを使う - Wizard Notes
- adjustText: matplotlib の散布図でラベルの重なりを自動調整 - Wizard Notes
- matplotlib の散布図の色・アルファ値(透明度)を滑らかにグラデーションさせる(cmap利用) - Wizard Notes
PyQtGraph
- Python: PyQtGraphでリアルタイムプロット/アニメーション(サンプルコード・実装デモ付き) - Wizard Notes
- PyQtGraph:MKLライブラリに関するエラー対処(mkl_blas_dgem2vu.dll) - Wizard Notes
- PyQtGraph エラー対処(ImportError: cannot import name 'sip', Exception: pyqtgraph requires Qt version >= 5.12) - Wizard Notes
- PyQtGraph:プロットの基礎と、GraphicsWindowをGraphicsLayoutWidget に置き換える際の注意点 - Wizard Notes
- Python:PyQtGraphで散布図グラフをリアルタイムプロット - Wizard Notes
- Python:PyQtGraphで2次元波動方程式の数値シミュレーションをリアルタイムプロット(有限差分法) - Wizard Notes
- PyQtGraph:3Dプロット (GLSurfacePlotItem, GLMeshItem) の高さ(z軸)で色を変える方法 - Wizard Notes
- Python:音の広がりや位相を見るフェーズスコープをPyQtGraphとPyAudioで実装 - Wizard Notes
- Python:PyQtGraphでメルスペクトログラムをリアルタイム描画 - Wizard Notes
PyAudio
Numpy tips
- NumPyのビュー(view)がどのndarrayオブジェクトを参照しているか確認する方法 - Wizard Notes
- numpy.errstateで対数をとった時のwarningを無視する - Wizard Notes