I have trained a model that denoises results of realistic rendering in python.
In python, the graph is constructed dynamically in conjunction with the image size by converting the image to tf.constant.
Now I want to export the model and load it in C++.
My question is: Is it possible to process images of different sizes in Tensorflow C++ API?
If not, what's the possible best way to do this in C++? Use cuDNN directly and load the trained CNN kernel weights?