FantasqueX

Results 39 issues of FantasqueX

### Question Hi, thanks for this wonderful library. My issue when using questionary is that the latest questionary requires prompt_toolkit=3.0.41 https://github.com/ipython/ipython/blob/main/setup.cfg#L38. Because of pip's terrible dependency management, I cannot make...

Enhancement

Currently one test will fail with latest prompt_toolkit(3.0.43). test_blank_line_fix will throw RuntimeError: no running event loop. By bisecting commit, the culprit is https://github.com/prompt-toolkit/python-prompt-toolkit/commit/a7759969891c54ea56abfa286524cc301eedaf05. This commit replaces custom `get_event_loop` with `asyncio.get_event_loop`....

https://github.com/opencv/opencv/pull/25092#issuecomment-1964204191 > AFAIK, libjpeg is deprecated as OpenCV's 3rdparty and it should be removed in 5.x. According to the maintainer, libjpeg should be removed in 5.x ### Pull Request Readiness...

category: 3rdparty
cleanup

### Describe the feature and motivation 1. Currently, opencv's cmake_minimum_version is 3.5, and uses some deprecated CMake features such as [CMP0148](https://cmake.org/cmake/help/latest/policy/CMP0148.html). If we raise the minimum version, opencv's CMake can...

feature

Currently, when one target needs zlib as a dependency, it needs to use both ocv_include_directories and target_link_libraries. However in modern CMake, only target_link_libraries is needed if zlib has a target_include_directories....

category: build/install
category: 3rdparty

SSE is only available on x86 architectures. This patch has been tested on riscv64.

Currently, bazelisk can be installed via winget using `winget install Bazel.Bazelisk`. However, winget-pkgs is updated manually. I wonder whether it is possible to add an Github action to update winget-pkgs...

### Describe the doc issue https://docs.opencv.org/4.x/db/da5/tutorial_how_to_scan_images.html ![image](https://github.com/opencv/opencv/assets/46747123/9ce94f24-8d0d-4176-92ff-7c72704065fb) ### Fix suggestion Maybe some bug in doc generation. The indentation of source code is correct. https://github.com/opencv/opencv/blob/4.x/samples/cpp/tutorial_code/core/how_to_scan_images/how_to_scan_images.cpp#L134-L161

category: documentation
category: infrastructure

### Describe the feature and motivation Non-SIMD version https://github.com/opencv/opencv/blob/efa4d9176a16ad30081a184124b25a8029ea788d/modules/imgproc/src/demosaicing.cpp#L659-L662 SIMD version https://github.com/opencv/opencv/blob/efa4d9176a16ad30081a184124b25a8029ea788d/modules/imgproc/src/demosaicing.cpp#L204 ``` (a0 * b0 + a1 * b1 + a2 * b2 + (1 > 16 != (a0...

feature
category: imgproc