Hi guys! Is it possible to create a Mat by check the value of another Mat? For example
for(int i=0;i<640;i++)
{
for (int j=0;j<480;j++)
{
if(MatSrc.at<unsigned char>(i,j)==255)
MatDst. at<unsigned char>(i,j)==128;
}
}
For some reason I get several errors.