質問

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