mirror of
https://github.com/opencv/opencv.git
synced 2025-08-05 22:19:14 +08:00
Merge pull request #21794 from yash112-lang:3.4
This commit is contained in:
commit
af2b7708a8
@ -4339,8 +4339,8 @@ namespace cv{
|
||||
// without going outside the image limits.
|
||||
#define condition_b c-1>=0 && r-2>=0 && img_row_prev_prev[c-1]>0
|
||||
#define condition_c r-2>=0 && img_row_prev_prev[c]>0
|
||||
#define condition_d c+1<w&& r-2>=0 && img_row_prev_prev[c+1]>0
|
||||
#define condition_e c+2<w && r-1>=0 && img_row_prev[c-1]>0
|
||||
#define condition_d c+1<w && r-2>=0 && img_row_prev_prev[c+1]>0
|
||||
#define condition_e c+2<w && r-2>=0 && img_row_prev_prev[c+2]>0
|
||||
|
||||
#define condition_g c-2>=0 && r-1>=0 && img_row_prev[c-2]>0
|
||||
#define condition_h c-1>=0 && r-1>=0 && img_row_prev[c-1]>0
|
||||
|
Loading…
Reference in New Issue
Block a user