利用其它widthStep方法把interest_img的所有像素值增加1[通俗易懂]

利用其它widthStep方法把interest_img的所有像素值增加1[通俗易懂]#include”stdafx.h”#include#includeintmain(intargc,char**argv){   IplImage*interest_img;   CvRectinterest_rect;   if(argc==7&&((interest_img=cvLoadImage(argv[1],1))!=

大家好,又见面了,我是你们的朋友全栈君。

#include “stdafx.h”
#include <cv.h>
#include <highgui.h>

int main(int argc, char** argv)
{

    IplImage* interest_img;
    CvRect interest_rect;
    if( argc == 7 && ((interest_img=cvLoadImage(argv[1],1)) != 0 ))
    {

        interest_rect.x = atoi(argv[2]);
        interest_rect.y = atoi(argv[3]);
        interest_rect.width = atoi(argv[4]);
        interest_rect.height = atoi(argv[5]);
        int add = atoi(argv[6]);

     
        IplImage *sub_img = cvCreateImageHeader(
          cvSize(
             interest_rect.width,
             interest_rect.height
          ),
          interest_img->depth,
          interest_img->nChannels
        );
       
        sub_img->origin = interest_img->origin;
       
        sub_img->widthStep = interest_img->widthStep;
       
        sub_img->imageData = interest_img->imageData +
          interest_rect.y * interest_img->widthStep  +
          interest_rect.x * interest_img->nChannels;
       
        cvAddS( sub_img, cvScalar(add), sub_img );
       
        cvReleaseImageHeader(&sub_img);

        cvNamedWindow( “Roi_Add”, CV_WINDOW_AUTOSIZE );
        cvShowImage( “Roi_Add”, interest_img );
        cvWaitKey();
    }
    return 0;
}

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/137935.html原文链接:https://javaforall.cn

【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛

【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...

(0)


相关推荐

发表回复

您的电子邮箱地址不会被公开。

关注全栈程序员社区公众号