You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The image processing thread appears to complete without actually processing images after changing settings. Log analysis suggests that no actual image processing is taking place. Additionally, PySide6 thread-related warnings are occurring.
具体的な症状 / Specific Symptoms
解像度512px、アップスケーラーなしの設定では正常に動作
解像度1024px、アップスケーラーありに設定を変更すると、処理が実行されずに完了
すべての画像に対して "指定解像度の画像は保存済みです" というメッセージが出力される
PySide6のタイマー警告が発生: "QObject::startTimer: Timers cannot be started from another thread"
Works correctly with resolution 512px and no upscaler
With resolution 1024px and upscaler enabled, process completes without actual processing
"Image for specified resolution already exists" message appears for all images
PySide6 timer warning occurs: "QObject::startTimer: Timers cannot be started from another thread"
再現手順 / Steps to Reproduce
アプリケーションを起動
Launch the application
解像度を512px、アップスケーラーをNoneに設定
Set resolution to 512px and upscaler to None
画像処理スレッドが途中で終了する問題
Image Processing Thread Terminates Prematurely
問題の概要 / Problem Description
画像処理の設定を変更した後、スレッド処理が正常に完了せずに途中で終了してしまう問題が発生しています。ログ解析の結果、画像処理が実際には実行されていない可能性があります。また、PySide6のスレッド処理に関する警告が発生しています。
The image processing thread appears to complete without actually processing images after changing settings. Log analysis suggests that no actual image processing is taking place. Additionally, PySide6 thread-related warnings are occurring.
具体的な症状 / Specific Symptoms
解像度512px、アップスケーラーなしの設定では正常に動作
解像度1024px、アップスケーラーありに設定を変更すると、処理が実行されずに完了
すべての画像に対して "指定解像度の画像は保存済みです" というメッセージが出力される
PySide6のタイマー警告が発生: "QObject::startTimer: Timers cannot be started from another thread"
Works correctly with resolution 512px and no upscaler
With resolution 1024px and upscaler enabled, process completes without actual processing
"Image for specified resolution already exists" message appears for all images
PySide6 timer warning occurs: "QObject::startTimer: Timers cannot be started from another thread"
再現手順 / Steps to Reproduce
Launch the application
Set resolution to 512px and upscaler to None
Click start processing button → Completes successfully
Change resolution to 1024px and select an upscaler (RealESRGAN_x4plus)
Click start processing button → Completes without processing
関連コード / Relevant Code
考えられる原因 / Possible Causes
Resolution check logic might be incorrectly identifying images as already processed
Upscaler setting changes are not being reflected in processing conditions
check_processed_image_exists
の判定条件が不適切Incorrect conditions in
check_processed_image_exists
Improper timer initialization in PySide6 thread processing
環境 / Environment
追加情報 / Additional Information
ログ出力
注意点
The text was updated successfully, but these errors were encountered: