Library/opencv
[opencv] Mat ROI
퓨림노
2013. 1. 21. 18:59
ROI method
#include#include #include #include #include using namespace std; using namespace cv; #define PATCH_SIZE 64 #define PATCH_WIDTHSTEP 64 #define PATCH_HEIGHTSTEP 64 void main() { Mat img = imread( "test.jpg"); int rows = img.rows-PATCH_WIDTH-2; int cols = img.cols-PATCH_HEIGHT-2; for( int i=0; i