where to find resizeImage2D ?

3 次查看(过去 30 天)
I searched the matlabroot, but do not find the function, and ' doc' and 'edit' command still find it.
so where to find resizeImage2D ?
捕获asda.PNG

采纳的回答

Steven Lord
Steven Lord 2019-3-6
It is a function in the nnet.internal.cnnhost package directory. Its name is not resizeImage2D but nnet.internal.cnnhost.resizeImage2D. As the "internal" part of the package name indicates, you should not write code depending on the behavior or existence of this function in a future release.
According to the which function, this function is built-in and so you cannot read the code.
>> which -all nnet.internal.cnnhost.resizeImage2D
resizeImage2D is a built-in method % static method or package function
  4 个评论
Jack Xiao
Jack Xiao 2019-3-7
it is from a example demo of matlab. i find it support uint8 data to be single type after resize.
maybe it is from a c file.
i think it is for reducing ram space for gpu computation.
and imresize (the data type won't be changed) will be ok if there is enough gpu ram.
thank you!
Steven Lord
Steven Lord 2019-3-7
It's built-in and there is no help text for it. Don't write code that depends on it functioning a particular way or even it existing in a future release.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

产品


版本

R2018b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by