openCV Won't copy to image after changed color ( opencv and c++ )
- by user1656647
I am a beginner at opencv.
I have this task:
Make a new image
Put a certain image in it at 0,0
Convert the certain image to gray scale
put the grayscaled image next to it ( at 300, 0 )
This is what I did.
I have a class imagehandler that has constructor and all the functions.
cv::Mat m_image
is the member field.
Constructor to make new…