Roman K
Roman K
have you tried working with different models? PrimaLayout for example gives me quite better results on a similar set of documents. ``` model = lp.Detectron2LayoutModel('lp://PrimaLayout/mask_rcnn_R_50_FPN_3x/config', extra_config=["MODEL.ROI_HEADS.SCORE_THRESH_TEST", 0.8], label_map={1:"TextRegion", 2:"ImageRegion", 3:"TableRegion",...
same here. also when using `
@zhouzilong2020 - can you share how you implemented it?
this did the trick for me: add apexchart as nuxt-plugin (filename with .client.js-ending is important) ``` # ~/plugins/apexcharts.client.js import VueApexCharts from "vue3-apexcharts"; export default defineNuxtPlugin((nuxtApp) => { nuxtApp.vueApp.use(VueApexCharts); }); ```...
@Dokhra - you can already do this. ``` let picture = this.webcam.snap(); console.log(picture) => data:image/png;base64,iVBORw0KGgoAAAANSUh... ```
any news on this? or what is the current workaround?
this looks fantastic! i was looking for a solution to something similar in my previous avo-project, where we wanted to show some figures per user (we have multiple charts which...
+1 - this would be really great to have!
had the same issue. using `const document = await $prismic.api.getByUID('home')` instead of `const document = await $prismic.api.getByUID('home')` did the trick for me.