如何将图像切片/切成碎片

时间:2011-02-02 14:08:46

标签: c image opencv slice cut

所以我有一个接收OpenCV图像并将其变成灰度的函数。

    void UseLSD(IplImage* destination)
    {   
    IplImage *destinationForGS = cvCreateImage(cvSize(destination->width, destination->height),IPL_DEPTH_8U,1);
    cvCvtColor(destination,destinationForGS,CV_RGB2GRAY); 
}

现在如何将图像切割成尺寸为10x10像素的图像并迭代真实? (宽度和高度可能不会在10上划分,但如果会有一些损失(例如每张图像从1 * h到9 * h + 9 * h像素丢失),那对我来说就没问题了。) BTW可以将10 * 10图像中的一个输出到屏幕上。请。

2 个答案:

答案 0 :(得分:4)

您可以将图像裁剪成这样的小块(迭代未经测试):

// source image
IplImage *source = cvLoadImage("lena.jpg", 1);
int roiSize = 10;
for(int j = 0; j < source->width/roiSize; ++j) {
    for(int i = 0; i < source->height/roiSize; ++i) {    
        cvSetImageROI(source, cvRect(i*roiSize, j*roiSize, roiSize, roiSize));

        // cropped image
        IplImage *cropSource = cvCreateImage(cvGetSize(source), source->depth, source->nChannels);

        // copy
        cvCopy(source, cropSource, NULL);

        // ... do what you want with your cropped image ...

        // always reset the ROI
        cvResetImageROI(source);
    }
}

答案 1 :(得分:4)

我认为最简单的解决方案是使用感兴趣的区域。这是样本

    /* load image */
    IplImage *img1 = cvLoadImage("elvita.jpg", 1);

    /* sets the Region of Interest 
       Note that the rectangle area has to be __INSIDE__ the image 
       You just iterate througt x and y.
   */
    cvSetImageROI(img1, cvRect(x*10, y*10, x*10 + 10, y*10 + 10));

    /* create destination image 
       Note that cvGetSize will return the width and the height of ROI */
    IplImage *img2 = cvCreateImage(cvGetSize(img1), 
                                   img1->depth, 
                                   img1->nChannels);

    /* copy subimage */
    cvCopy(img1, img2, NULL);

    /* always reset the Region of Interest */
    cvResetImageROI(img1);