Skip to content

Instantly share code, notes, and snippets.

@lettergram
Created March 19, 2015 00:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lettergram/b416a8f52a57bbab331c to your computer and use it in GitHub Desktop.
Save lettergram/b416a8f52a57bbab331c to your computer and use it in GitHub Desktop.
/**
* Description:
* Finds the gradient between two images, searches the Red channel in RGB
*
* @param: img - image to find gradient on
* @param: prune - the cut off for the pruning (difference between two steps
* @param: step - How many pixels apart to check
* @Return: Mat grad - the image with gradients colored
**/
Mat findGradient(Mat &img, unsigned int prune, unsigned int step){
Mat grad(img);
unsigned char prev_horizontal = (*grad.ptr<Point3_<uchar> >(0,0)).x;
int vsize = grad.cols;
unsigned char prev_vertical[vsize];
for(int i = 0; i < vsize; i ++)
prev_vertical[i] = (*grad.ptr<Point3_<uchar> >(0,0)).x;
for(int i = step; i < grad.rows - step; i +=step){
for(int j = step; j < grad.cols - step; j += step){
/* Horizontal line checking and drawing */
if(abs((*grad.ptr<Point3_<uchar> >(i, j)).x - prev_horizontal) > prune){
for(int x = i; x < i + step; x++){
if( x > grad.rows - 1){ break; }
for(int y = j - step; y < j - step + 5; y++){
if(y > grad.cols - 1){ break; }
(*grad.ptr<Point3_<uchar> >(x, y)).y = 125;
(*grad.ptr<Point3_<uchar> >(x, y)).z = 254;
}
}
}
prev_horizontal = (*grad.ptr<Point3_<uchar> >(i, j)).x;
/* Vetical Line checking and drawing */
if(abs((*grad.ptr<Point3_<uchar> >(i, j)).x - prev_vertical[j]) > prune){
for(int y = j; y < j + step; y++){
if( y > grad.rows - 1){ break; }
for(int x = i - step; x < i - step + 5; x++){
if(x > grad.cols - 1){ break; }
(*grad.ptr<Point3_<uchar> >(x, y)).y = 125;
(*grad.ptr<Point3_<uchar> >(x, y)).z = 254;
}
}
}
prev_vertical[j] = (*grad.ptr<Point3_<uchar> >(i, j)).x; // each column
}
}
return grad;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment