gembleman

Results 9 comments of gembleman

私も同じ問題が発生し、原因が見つかったようです。 ![pU0n0Io2Q9](https://user-images.githubusercontent.com/81058727/215356349-a22a7965-fb3a-43fe-ac8a-984d62c9c253.png) pipコマンドでインストールすると、無効なファイル パスでインストールされます。 lib/site-packagesフォルダをpython311/site-packagesに移動して解決しました。 とにかくあなたの作品は素晴らしいです。 応援します。

```python driver = uc.Chrome(options=options, use_subprocess=False)#"use_subprocess" set false ~~~ driver.close() #last line ```

I had the same problem and it was resolved with the method crra mentioned. Thanks.

> Hello, everyone. > > I’d like to fix this issue, but I’m not a user of this software. To avoid unnecessary maintenance in the future, I’d like to ask...

Yes. I think it would be better to keep the existing Gaussian blur implementation and separate the part that uses libblur as a distinct feature. It seems preferable to give...

I edited it. Please check.

I adjusted the SIGMA constant in libblur_impl from 2.3 to 2.2943. This reduced the diff to 0.0/0.932. I also tried various changes to EdgeMode, and Clamp seems to be the...

The AI says that in the libblur source code, gaussian::gaussian_blur_f32 uses classical kernel-based convolution. It claims this is theoretically more accurate than the recursive Gaussian filter used in gaussian_impl, which...

@awxkee Thank you for the clear explanation! I'm not very familiar with Gaussian blur, so I wasn't sure how to proceed and had forgotten about this PR. Thank you for...