First time here? Check out the FAQ!

Ask Your Question
1

negative value of cv::Mat

asked Mar 27 '18

Weifa Gan gravatar image

updated Mar 27 '18

LBerger gravatar image

I observe that when the Mat data,which were loaded from a picture, transform negative value to zero after subtracting by a number.But I don't need this transform,what should i do ?pleace. The codes are as follows.

#include<iostream>
#include<opencv2/core/core.hpp>
#include<opencv2/highgui/highgui.hpp>
#include<opencv2/imgproc/imgproc.hpp>
using namespace std;
using namespace cv;
int main()
{

        Mat M;
    Point2i p;
    M = imread("D:\\Documents\\Desktop\\Face data\\AR1\\001\\AR001-1.tif", 1);
    cvtColor(M, M, CV_BGR2GRAY);
    M = M - 300;
    cout << M << endl;

      waitKey(0);
    system("pause");
}
Preview: (hide)

1 answer

Sort by » oldest newest most voted
2

answered Mar 27 '18

berak gravatar image

updated Mar 27 '18

so, the type is uchar. there cannot be negative numbers.

(one could either overflow or saturate, opencv's arithmetic ops do saturation here.)

if you wanted negative numbers here, you have to convert to a type, which allows it, like CV_32S:

M.convertTo(M, CV_32S);
Preview: (hide)

Comments

2

Thank you very much!

Weifa Gan gravatar imageWeifa Gan (Mar 27 '18)edit

Question Tools

1 follower

Stats

Asked: Mar 27 '18

Seen: 3,932 times

Last updated: Mar 27 '18