Skip to content

Commit 67815e9

Browse files
authored
Merge pull request #3844 from CodeLinaro:xuezha_2ndPost
FastCV Extension code for OpenCV 2ndpost-1 #3844 Depends on: [opencv/opencv#26617](opencv/opencv#26617) Requires binary from [opencv/opencv_3rdparty#90](opencv/opencv_3rdparty#90) ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [ ] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake
1 parent d603a58 commit 67815e9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+2917
-281
lines changed

modules/fastcv/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,4 @@ FastCV extension for OpenCV
33

44
This module provides wrappers for several FastCV functions not covered by the corresponding HAL in OpenCV or have implementation incompatible with OpenCV.
55
Please note that:
6-
1. This module supports ARM architecture only. This means that CMake script aborts configuration under x86 platform even if you don't want to build binaries for your machine and just want to build docs or enable code analysis in your IDE. In that case you should fix CMakeLists.txt file as told inside it.
7-
2. Test data is stored in misc folder. Before running tests on a device you should copy the content of `misc/` folder to `$YOUR_TESTDATA_PATH/fastcv/` folder on a device.
6+
1. This module supports ARM architecture only. This means that CMake script will not configure or build under x86 platform.

modules/fastcv/include/opencv2/fastcv.hpp

+7-1
Original file line numberDiff line numberDiff line change
@@ -10,23 +10,29 @@
1010

1111
#include "opencv2/fastcv/arithm.hpp"
1212
#include "opencv2/fastcv/bilateralFilter.hpp"
13+
#include "opencv2/fastcv/blur.hpp"
1314
#include "opencv2/fastcv/cluster.hpp"
1415
#include "opencv2/fastcv/draw.hpp"
16+
#include "opencv2/fastcv/edges.hpp"
1517
#include "opencv2/fastcv/fast10.hpp"
1618
#include "opencv2/fastcv/fft.hpp"
1719
#include "opencv2/fastcv/hough.hpp"
20+
#include "opencv2/fastcv/ipptransform.hpp"
1821
#include "opencv2/fastcv/moments.hpp"
1922
#include "opencv2/fastcv/mser.hpp"
23+
#include "opencv2/fastcv/pyramid.hpp"
2024
#include "opencv2/fastcv/remap.hpp"
2125
#include "opencv2/fastcv/scale.hpp"
2226
#include "opencv2/fastcv/shift.hpp"
2327
#include "opencv2/fastcv/smooth.hpp"
2428
#include "opencv2/fastcv/thresh.hpp"
29+
#include "opencv2/fastcv/tracking.hpp"
30+
#include "opencv2/fastcv/warp.hpp"
2531

2632
/**
2733
* @defgroup fastcv Module-wrapper for FastCV hardware accelerated functions
2834
* @{
2935
* @}
3036
*/
3137

32-
#endif // OPENCV_FASTCV_ARITHM_HPP
38+
#endif // OPENCV_FASTCV_HPP

modules/fastcv/include/opencv2/fastcv/arithm.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ namespace fastcv {
1616

1717
/**
1818
* @brief Matrix multiplication of two int8_t type matrices
19-
19+
* uses signed integer input/output whereas cv::gemm uses floating point input/output
20+
* matmuls8s32 provides enhanced speed on Qualcomm's processors
2021
* @param src1 First source matrix of type CV_8S
2122
* @param src2 Second source matrix of type CV_8S
2223
* @param dst Resulting matrix of type CV_32S
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
/*
2+
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
#ifndef OPENCV_FASTCV_BLUR_HPP
7+
#define OPENCV_FASTCV_BLUR_HPP
8+
9+
#include <opencv2/core.hpp>
10+
11+
namespace cv {
12+
namespace fastcv {
13+
14+
/**
15+
* @defgroup fastcv Module-wrapper for FastCV hardware accelerated functions
16+
*/
17+
18+
//! @addtogroup fastcv
19+
//! @{
20+
21+
/**
22+
* @brief Gaussian blur with sigma = 0 and square kernel size. The way of handling borders is different with cv::GaussianBlur,
23+
* leading to slight variations in the output.
24+
* @param _src Intput image with type CV_8UC1
25+
* @param _dst Output image with type CV_8UC1
26+
* @param kernel_size Filer kernel size. One of 3, 5, 11
27+
* @param blur_border If set to true, border is blurred by 0-padding adjacent values.(A variant of the constant border)
28+
* If set to false, borders up to half-kernel width are ignored (e.g. 1 pixel in the 3x3 case).
29+
*
30+
* @sa GaussianBlur
31+
*/
32+
CV_EXPORTS_W void gaussianBlur(InputArray _src, OutputArray _dst, int kernel_size = 3, bool blur_border = true);
33+
34+
/**
35+
* @brief NxN correlation with non-separable kernel. Borders up to half-kernel width are ignored
36+
* @param _src Intput image with type CV_8UC1
37+
* @param _dst Output image with type CV_8UC1, CV_16SC1 or CV_32FC1
38+
* @param ddepth The depth of output image
39+
* @param _kernel Filer kernel data
40+
*
41+
* @sa Filter2D
42+
*/
43+
CV_EXPORTS_W void filter2D(InputArray _src, OutputArray _dst, int ddepth, InputArray _kernel);
44+
45+
/**
46+
* @brief NxN correlation with separable kernel. If srcImg and dstImg point to the same address and srcStride equals to dstStride,
47+
* it will do in-place. Borders up to half-kernel width are ignored.
48+
* The way of handling overflow is different with OpenCV, this function will do right shift for
49+
* the intermediate results and final result.
50+
* @param _src Intput image with type CV_8UC1
51+
* @param _dst Output image with type CV_8UC1, CV_16SC1
52+
* @param ddepth The depth of output image
53+
* @param _kernelX Filer kernel data in x direction
54+
* @param _kernelY Filer kernel data in Y direction (For CV_16SC1, the kernelX and kernelY should be same)
55+
*
56+
* @sa sepFilter2D
57+
*/
58+
CV_EXPORTS_W void sepFilter2D(InputArray _src, OutputArray _dst, int ddepth, InputArray _kernelX, InputArray _kernelY);
59+
//! @}
60+
61+
} // fastcv::
62+
} // cv::
63+
64+
#endif // OPENCV_FASTCV_BLUR_HPP

modules/fastcv/include/opencv2/fastcv/cluster.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@ namespace fastcv {
1616

1717
/**
1818
* @brief Clusterizes N input points in D-dimensional space into K clusters
19-
*
19+
* Accepts 8-bit unsigned integer points
20+
* Provides faster execution time than cv::kmeans on Qualcomm's processors
2021
* @param points Points array of type 8u, each row represets a point.
2122
* Size is N rows by D columns, can be non-continuous.
2223
* @param clusterCenters Initial cluster centers array of type 32f, each row represents a center.

modules/fastcv/include/opencv2/fastcv/draw.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace fastcv {
1717
/**
1818
* @brief Draw convex polygon
1919
This function fills the interior of a convex polygon with the specified color.
20-
20+
Requires the width and stride to be multple of 8.
2121
* @param img Image to draw on. Should have up to 4 8-bit channels
2222
* @param pts Array of polygon points coordinates. Should contain N two-channel or 2*N one-channel 32-bit integer elements
2323
* @param color Color of drawn polygon stored as B,G,R and A(if supported)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
/*
2+
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
#ifndef OPENCV_EDGES_HPP
7+
#define OPENCV_EDGES_HPP
8+
9+
#include "opencv2/core/mat.hpp"
10+
11+
namespace cv {
12+
namespace fastcv {
13+
/**
14+
* @defgroup fastcv Module-wrapper for FastCV hardware accelerated functions
15+
*/
16+
17+
//! @addtogroup fastcv
18+
//! @{
19+
20+
/**
21+
* @brief Creates a 2D gradient image from source luminance data without normalization.
22+
* Calculate X direction 1 order derivative or Y direction 1 order derivative or both at the same time, .
23+
* @param _src Input image with type CV_8UC1
24+
* @param _dx Buffer to store horizontal gradient. Must be (dxyStride)*(height) bytes in size.
25+
* If NULL, the horizontal gradient will not be calculated.
26+
* @param _dy Buffer to store vertical gradient. Must be (dxyStride)*(height) bytes in size.
27+
* If NULL, the vertical gradient will not be calculated
28+
* @param kernel_size Sobel kernel size, support 3x3, 5x5, 7x7
29+
* @param borderType Border type, support BORDER_CONSTANT, BORDER_REPLICATE
30+
* @param borderValue Border value for constant border
31+
*/
32+
CV_EXPORTS_W void sobel(InputArray _src, OutputArray _dx, OutputArray _dy, int kernel_size, int borderType, int borderValue);
33+
34+
/**
35+
* @brief Creates a 2D gradient image from source luminance data without normalization.
36+
* This function computes central differences on 3x3 neighborhood and then convolves the result with Sobel kernel,
37+
* borders up to half-kernel width are ignored.
38+
* @param _src Input image with type CV_8UC1
39+
* @param _dst If _dsty is given, buffer to store horizontal gradient, otherwise, output 8-bit image of |dx|+|dy|.
40+
* Size of buffer is (srcwidth)*(srcheight) bytes
41+
* @param _dsty (Optional)Buffer to store vertical gradient. Must be (srcwidth)*(srcheight) in size.
42+
* @param ddepth The depth of output image CV_8SC1,CV_16SC1,CV_32FC1,
43+
* @param normalization If do normalization for the result
44+
*/
45+
CV_EXPORTS_W void sobel3x3u8(InputArray _src, OutputArray _dst, OutputArray _dsty = noArray(), int ddepth = CV_8U,
46+
bool normalization = false);
47+
48+
//! @}
49+
50+
}
51+
}
52+
53+
#endif

modules/fastcv/include/opencv2/fastcv/fast10.hpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ namespace fastcv {
1515
//! @{
1616

1717
/**
18-
* @brief Extracts FAST corners and scores from the image based on the mask.
19-
The mask specifies pixels to be ignored by the detector
20-
18+
* @brief Extracts FAST10 corners and scores from the image based on the mask.
19+
* The mask specifies pixels to be ignored by the detector
20+
* designed for corner detection on Qualcomm's processors, provides enhanced speed.
21+
*
2122
* @param src 8-bit grayscale image
2223
* @param mask Optional mask indicating which pixels should be omited from corner dection.
2324
Its size should be k times image width and height, where k = 1/2, 1/4 , 1/8 , 1, 2, 4 and 8

modules/fastcv/include/opencv2/fastcv/fft.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace fastcv {
1818
* @brief Computes the 1D or 2D Fast Fourier Transform of a real valued matrix.
1919
For the 2D case, the width and height of the input and output matrix must be powers of 2.
2020
For the 1D case, the height of the matrices must be 1, while the width must be a power of 2.
21-
21+
Accepts 8-bit unsigned integer array, whereas cv::dft accepts floating-point or complex array.
2222
* @param src Input array of CV_8UC1. The dimensions of the matrix must be powers of 2 for the 2D case,
2323
and in the 1D case, the height must be 1, while the width must be a power of 2.
2424
* @param dst The computed FFT matrix of type CV_32FC2. The FFT Re and Im coefficients are stored in different channels.

modules/fastcv/include/opencv2/fastcv/hough.hpp

+22-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace fastcv {
1616

1717
/**
1818
* @brief Performs Hough Line detection
19-
*
19+
*
2020
* @param src Input 8-bit image containing binary contour. Width and step should be divisible by 8
2121
* @param lines Output array containing detected lines in a form of (x1, y1, x2, y2) where all numbers are 32-bit floats
2222
* @param threshold Controls the minimal length of a detected line. Value must be between 0.0 and 1.0
@@ -25,6 +25,27 @@ namespace fastcv {
2525
*/
2626
CV_EXPORTS_W void houghLines(InputArray src, OutputArray lines, double threshold = 0.25);
2727

28+
29+
/**
30+
* @brief Finds circles in a grayscale image using Hough transform.
31+
* The radius of circle varies from 0 to max(srcWidth, srcHeight).
32+
*
33+
* @param src Input 8-bit image containing binary contour. Step should be divisible by 8, data start should be 128-bit aligned
34+
* @param circles Output array containing detected circles in a form (x, y, r) where all numbers are 32-bit integers
35+
* @param minDist Minimum distance between the centers of the detected circles
36+
* @param cannyThreshold The higher threshold of the two passed to the Canny() edge detector
37+
* (the lower one is twice smaller). Default is 100.
38+
* @param accThreshold The accumulator threshold for the circle centers at the detection
39+
* stage. The smaller it is, the more false circles may be detected.
40+
* Circles, corresponding to the larger accumulator values, will be
41+
* returned first. Default is 100.
42+
* @param minRadius Minimum circle radius, default is 0
43+
* @param maxRadius Maximum circle radius, default is 0
44+
*/
45+
CV_EXPORTS_W void houghCircles(InputArray src, OutputArray circles, uint32_t minDist,
46+
uint32_t cannyThreshold = 100, uint32_t accThreshold = 100,
47+
uint32_t minRadius = 0, uint32_t maxRadius = 0);
48+
2849
//! @}
2950

3051
} // fastcv::
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/*
2+
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
3+
* SPDX-License-Identifier: Apache-2.0
4+
*/
5+
6+
#ifndef OPENCV_FASTCV_IPPTRANSFORM_HPP
7+
#define OPENCV_FASTCV_IPPTRANSFORM_HPP
8+
9+
#include <opencv2/core.hpp>
10+
11+
namespace cv {
12+
namespace fastcv {
13+
14+
//! @addtogroup fastcv
15+
//! @{
16+
17+
/**
18+
* @brief This function performs 8x8 forward discrete Cosine transform on input image
19+
* accepts input of type 8-bit unsigned integer and produces output of type 16-bit signed integer
20+
* provides faster execution time than cv::dct on Qualcomm's processor
21+
* @param src Input image of type CV_8UC1
22+
* @param dst Output image of type CV_16SC1
23+
*/
24+
CV_EXPORTS_W void DCT(InputArray src, OutputArray dst);
25+
26+
/**
27+
* @brief This function performs 8x8 inverse discrete Cosine transform on input image
28+
* provides faster execution time than cv::dct in inverse case on Qualcomm's processor
29+
* @param src Input image of type CV_16SC1
30+
* @param dst Output image of type CV_8UC1
31+
*/
32+
CV_EXPORTS_W void IDCT(InputArray src, OutputArray dst);
33+
34+
//! @}
35+
36+
} // fastcv::
37+
} // cv::
38+
39+
#endif // OPENCV_FASTCV_IPPTRANSFORM_HPP

modules/fastcv/include/opencv2/fastcv/moments.hpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,9 @@ namespace fastcv {
1717
/**
1818
* @brief Calculates all of the moments up to the third order of the image pixels' intensities
1919
The results are returned in the structure cv::Moments.
20-
* @param _src Input image with type CV_8UC1, CV_32SC1, CV_32FC1
21-
* @param binary If 1, binary image (0x00-black, oxff-white); if 0, grayscale image
20+
* @param _src Input image with type CV_8UC1, CV_32SC1, CV_32FC1
21+
* @param binary If true, assumes the image to be binary (0x00 for black, 0xff for white), otherwise assumes the image to be
22+
* grayscale.
2223
*/
2324
CV_EXPORTS cv::Moments moments(InputArray _src, bool binary);
2425

0 commit comments

Comments
 (0)