markuspaschi

Results 9 comments of markuspaschi

Happens to me as well. I think this bug is related to when another branch is merged into the 'reviewed' branch. The changes from the (merged) other branch are taken...

You can use an `private ArrayList active_categories = new ArrayList(); mDefaultTagGroup.setTags(active_categories);` and check in your OnClickMethod `private TagGroup.OnTagClickListener mTagClickListener = new TagGroup.OnTagClickListener() {` `@Override` `public void onTagClick(TagGroup.TagView tagView, String tag)...

I wrote a Master Thesis about 3D-Methods including Pixel2Mesh (in German). But my repository can be found here: https://github.com/markuspaschi/ShapeNetTools Go into DataSet_Tools/Renderer to find hints about how I used the...

Not quite sure if this helps. Run: `grep -rnw "192" ./*` in your Pixel2Mesh directory. In the original eval_testset.py the hidden layers are set to 192, which should be 256....

what i did: ``` fab:menu_fab_hide_animation="@anim/fade_out" fab:menu_fab_show_animation="@anim/fade_in" ``` is not perfect, but at least doesn't affect the groups layout. It stays in place.

This is my implementation. Add LogConsole.add(event) to your output, to utilize the logger_flutter ;) ``` class Log { static Logger logger = Logger(output: ConsoleLogOutput()); static void v(String message, [dynamic error])...

As for rendering images, I modified the script (added some more features). I'll post a link to my repo when im finished.

I wrote a Master Thesis about 3D-Methods including Pixel2Mesh (in German). But my repository can be found here: https://github.com/markuspaschi/ShapeNetTools Go into DataSet_Tools/Renderer to find hints about how I used the...