It is a sub-issue of #62 Support tensorflow-lite basic model with bash_script .
As mentioned in style transfer reallocate issue, there is a realloc problem with style transfer model. So I am going to try to support segmentation example.
I am considering this segmentation model which is supported by tensorflow.
Input: content image (257, 257, 3)
Output: type: float32 | dimen: (257,257,21) // a probability each of 21 labels
At first, I will make decoder(output array -> image type) for this model and then construct bash script example.
If it is done, I will expand it to android application example.
It is a sub-issue of #62 Support tensorflow-lite basic model with bash_script .
As mentioned in style transfer reallocate issue, there is a realloc problem with style transfer model. So I am going to try to support segmentation example.
I am considering this segmentation model which is supported by tensorflow.
Brief pipeline
At first, I will make
decoder(output array -> image type)
for this model and then constructbash script
example. If it is done, I will expand it toandroid application
example.