heagoo
heagoo
Original version: protected void initImage() { if(this.drawable != null) { this.drawable.setAlpha(alpha); this.drawable.setFilterBitmap(true); if(colorFilter != null) { this.drawable.setColorFilter(colorFilter); } } if(!layout) { requestLayout(); redraw(); } } Fixed version: protected void initImage()...
In example file: https://github.com/Tencent/ncnn/blob/master/examples/rvm.cpp Here mentions the resource location: //original pretrained model from https://github.com/PeterL1n/RobustVideoMatting //ncnn model https://pan.baidu.com/s/11iEY2RGfzWFtce8ue7T3JQ password: d9t6 if (net.load_param("rvm_512.param")) exit(-1); if (net.load_model("rvm_512.bin")) exit(-1); But looks like not available...