is this a variable or function

前端 未结 2 744
别那么骄傲
别那么骄傲 2021-01-01 07:08

I was just looking through implementation of non local means algorithm via google (thanks google for code search) and come across this function mirror.

temp         


        
2条回答
  •  自闭症患者
    2021-01-01 07:24

    It is a variable declaration, and it is equivalent to this:

    const int32 alpha = src%size;
    

提交回复
热议问题