Skip to content

OpenCV submodules update. #1111

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion opencv
Submodule opencv updated 824 files
2 changes: 1 addition & 1 deletion opencv_contrib
Submodule opencv_contrib updated 81 files
+7 −8 .github/workflows/PR-4.x.yaml
+1 −1 modules/aruco/include/opencv2/aruco/aruco_calib.hpp
+2 −2 modules/bgsegm/tutorials/bgsegm_bg_subtraction/bgsegm_bg_subtraction.markdown
+0 −1 modules/cnn_3dobj/include/opencv2/cnn_3dobj.hpp
+2 −1 modules/cudacodec/include/opencv2/cudacodec.hpp
+4 −4 modules/cudacodec/src/NvEncoder.cpp
+24 −11 modules/cudacodec/src/video_writer.cpp
+5 −13 modules/cudacodec/test/test_video.cpp
+28 −12 modules/cudaimgproc/src/color.cpp
+32 −16 modules/cudaimgproc/src/cuda/debayer.cu
+1 −1 modules/cudalegacy/include/opencv2/cudalegacy/private.hpp
+9 −2 modules/cudev/test/CMakeLists.txt
+0 −1 modules/cvv/src/qtutil/filter/sobelfilterwidget.cpp
+1 −1 modules/dpm/src/dpm_cascade.cpp
+1 −1 modules/dpm/src/dpm_feature.cpp
+0 −1 modules/dpm/src/dpm_feature.hpp
+9 −1 modules/fastcv/include/opencv2/fastcv.hpp
+64 −0 modules/fastcv/include/opencv2/fastcv/allocator.hpp
+58 −1 modules/fastcv/include/opencv2/fastcv/arithm.hpp
+17 −1 modules/fastcv/include/opencv2/fastcv/blur.hpp
+33 −0 modules/fastcv/include/opencv2/fastcv/blur_dsp.hpp
+45 −0 modules/fastcv/include/opencv2/fastcv/channel.hpp
+49 −0 modules/fastcv/include/opencv2/fastcv/dsp_init.hpp
+38 −0 modules/fastcv/include/opencv2/fastcv/edges_dsp.hpp
+49 −0 modules/fastcv/include/opencv2/fastcv/fft_dsp.hpp
+2 −2 modules/fastcv/include/opencv2/fastcv/pyramid.hpp
+34 −0 modules/fastcv/include/opencv2/fastcv/sad_dsp.hpp
+13 −15 modules/fastcv/include/opencv2/fastcv/scale.hpp
+39 −0 modules/fastcv/include/opencv2/fastcv/thresh_dsp.hpp
+11 −12 modules/fastcv/include/opencv2/fastcv/tracking.hpp
+55 −1 modules/fastcv/include/opencv2/fastcv/warp.hpp
+32 −0 modules/fastcv/perf/perf_arithm.cpp
+26 −1 modules/fastcv/perf/perf_blur.cpp
+73 −0 modules/fastcv/perf/perf_blur_dsp.cpp
+56 −0 modules/fastcv/perf/perf_edges_dsp.cpp
+85 −0 modules/fastcv/perf/perf_fft_dsp.cpp
+2 −2 modules/fastcv/perf/perf_hough.cpp
+6 −1 modules/fastcv/perf/perf_main.cpp
+34 −1 modules/fastcv/perf/perf_matmul.cpp
+2 −0 modules/fastcv/perf/perf_precomp.hpp
+52 −0 modules/fastcv/perf/perf_sad_dsp.cpp
+66 −0 modules/fastcv/perf/perf_scale.cpp
+52 −0 modules/fastcv/perf/perf_thresh_dsp.cpp
+196 −22 modules/fastcv/perf/perf_warp.cpp
+105 −0 modules/fastcv/src/allocator.cpp
+173 −1 modules/fastcv/src/arithm.cpp
+22 −1 modules/fastcv/src/blur.cpp
+68 −0 modules/fastcv/src/blur_dsp.cpp
+143 −0 modules/fastcv/src/channel.cpp
+46 −0 modules/fastcv/src/dsp_init.cpp
+63 −0 modules/fastcv/src/edges_dsp.cpp
+96 −0 modules/fastcv/src/fft_dsp.cpp
+110 −2 modules/fastcv/src/precomp.hpp
+46 −0 modules/fastcv/src/sad_dsp.cpp
+48 −35 modules/fastcv/src/scale.cpp
+55 −0 modules/fastcv/src/thresh_dsp.cpp
+280 −36 modules/fastcv/src/warp.cpp
+70 −1 modules/fastcv/test/test_arithm.cpp
+22 −1 modules/fastcv/test/test_blur.cpp
+75 −0 modules/fastcv/test/test_blur_dsp.cpp
+72 −0 modules/fastcv/test/test_channel.cpp
+39 −0 modules/fastcv/test/test_edges_dsp.cpp
+98 −0 modules/fastcv/test/test_fft_dsp.cpp
+6 −1 modules/fastcv/test/test_main.cpp
+3 −3 modules/fastcv/test/test_mser.cpp
+2 −0 modules/fastcv/test/test_precomp.hpp
+6 −5 modules/fastcv/test/test_pyramid.cpp
+44 −0 modules/fastcv/test/test_sad_dsp.cpp
+27 −44 modules/fastcv/test/test_scale.cpp
+92 −0 modules/fastcv/test/test_thresh_dsp.cpp
+167 −27 modules/fastcv/test/test_warp.cpp
+0 −1 modules/img_hash/src/precomp.hpp
+4 −0 modules/matlab/CMakeLists.txt
+8 −2 modules/matlab/generator/parse_tree.py
+30 −2 modules/matlab/include/opencv2/matlab/bridge.hpp
+3 −0 modules/mcc/src/bound_min.cpp
+12 −19 modules/mcc/src/checker_detector.cpp
+2 −1 modules/mcc/src/checker_detector.hpp
+0 −1 modules/xfeatures2d/src/affine_feature2d.cpp
+0 −1 modules/xphoto/samples/dct_image_denoising.cpp
+4 −6 modules/xphoto/src/dct_image_denoising.cpp
2 changes: 1 addition & 1 deletion opencv_extra
Submodule opencv_extra updated 27 files
+ testdata/cv/cvtcolor/bayerVNG_gold.png
+ testdata/cv/cvtcolor_strict/bglena.png
+ testdata/cv/cvtcolor_strict/gblena.png
+ testdata/cv/cvtcolor_strict/grlena.png
+ testdata/cv/cvtcolor_strict/rglena.png
+83 −0 testdata/cv/fast/result_no_nonmax.xml
+256 −256 testdata/cv/hdr/calibrate/debevec.csv
+2,686 −2,637 testdata/cv/hdr/merge/debevec.hdr
+2 −2 testdata/cv/io/3_4/Core_InputOutput--filestorage_base64_basic_rw_JSON.json
+35 −35 testdata/cv/io/3_4/Core_InputOutput--filestorage_base64_basic_rw_XML.xml
+35 −35 testdata/cv/io/3_4/Core_InputOutput--filestorage_base64_basic_rw_YAML.yml
+2 −2 testdata/cv/io/Core_InputOutput--filestorage_base64_basic_read_JSON.json
+35 −35 testdata/cv/io/Core_InputOutput--filestorage_base64_basic_read_XML.xml
+35 −35 testdata/cv/io/Core_InputOutput--filestorage_base64_basic_read_YAML.yml
+5 −0 testdata/dnn/download_models.py
+ testdata/dnn/tflite/face_blendshapes_inp.npy
+ testdata/dnn/tflite/face_blendshapes_out_StatefulPartitionedCall_0.npy
+30 −5 testdata/dnn/tflite/generate.py
+ testdata/dnn/tflite/strided_slice.tflite
+ testdata/dnn/tflite/strided_slice_inp.npy
+ testdata/dnn/tflite/strided_slice_out_Identity.npy
+ testdata/highgui/gifsuite/disposalMethod.gif
+ testdata/highgui/readwrite/033.png
+ testdata/highgui/readwrite/034.png
+ testdata/highgui/readwrite/035.png
+3,684 −0 testdata/perf/core.xml
+57,478 −57,638 testdata/perf/imgproc.xml
Loading