14. Integral image
#include #include #include #include using namespace std; using namespace cv; Mat adaptiveThresholding(Mat &image, int inputThreshold = 10) { Mat result = image.clone(); // compute integral image Mat integralImage; integral(image, integralImage, CV_32S); int blockSize = 21; // size of the neighborhood int threshold = 10;// pixel will be compared to (mean - threshold) // for each row int halfSize ..
영상처리/OpenCV
2019. 5. 21. 22:29
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- gradient
- OpenCV
- adaptive thresholding
- erosion
- high pass filter
- black top hat
- Low pass filter
- canny operator
- top hat
- pyrDown
- canny
- difference of gaussian
- hough transform
- pyrUp
- 캐니 엣지
- bilateral filter
- Sobel
- 영상처리
- Line Detection
- mean filter
- Filter
- upsampling
- equalizing
- dilation
- direction detection
- morphology
- morphological operation
- median filter
- laplacian of gaussian
- segmentation
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함