I am reading Matlab code and I saw two different types for image arrays subtraction. So, I write here to confirm that it is possible to do it using diffent ways and that I do not make I mistake.

array1 = array2 - array3;

array1 = imsubtract(array2, array3);

有帮助吗?

解决方案

As found in the help imsubtract:

'You can use the expression X-Y instead of imsubtract.'

So yes, it seems to be the same. Generally in Matlab you can do something using various ways, and that's what gives to Matlab its very useful flexibility.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top