图像旋转可产生灰度图像

时间:2019-06-14 16:19:36

标签: c++ image opencv image-processing

我在使用OpenCV和Qt的C ++中旋转图像功能遇到问题。 确实可以完成他的工作,但没有达到预期的效果,除了灰度之外,图像的一部分似乎在右上角重复了。

之前

之后

void ImgProcessing::rotate(cv::Mat &img, cv::Mat &tmp, int angle){

    float rads = angle*3.1415926/180.0;
    float cs = cos(-rads);
    float ss = sin(-rads);

    float xcenter = (float)(img.cols)/2.0;
    float ycenter = (float)(img.rows)/2.0;

    for(int i = 0; i < img.rows; i++)
        for(int j = 0; j < img.cols; j++){

            int rorig = ycenter + ((float)(i)-ycenter)*cs - ((float)(j)-xcenter)*ss;
            int corig = xcenter + ((float)(i)-ycenter)*ss + ((float)(j)-xcenter)*cs;
            int pixel = 0;
            if (rorig >= 0 && rorig < img.rows && corig >= 0 && corig < img.cols) {
                     tmp.at<int>(i ,j) = img.at<int>(rorig, corig);
                  }else tmp.at<int>(i ,j) = 0;
        }

}

问题是否出在访问图像像素上?

1 个答案:

答案 0 :(得分:1)

这取决于您在图像中的阅读方式,但我认为您访问错误。应该是这样的:

Vec3b intensity = image.at<Vec3b>(j, i);