MathijsNL
MathijsNL
I think in my specific situation it wouldn't really matter. It is just that imported data can't be modified right now that is the issue. I also noticed this applies...
Would it be sufficient to add this to the following file: [frontend/src/components/input/instance_schema_mapper.vue#L893-L898](https://github.com/diffgram/diffgram/blob/master/frontend/src/components/input/instance_schema_mapper.vue#L893-L898) ``` for (let i = 0; i < x_points.length; i++) { instance.points.push({ x: Math.round(x_points[i]), y: Math.round(y_points[i]), }) }...
What version are you using? I am still on 0.15.0 and filenames with points in them work fine for me. I will try to make a PR for this later...
For me it only works when zooming out a lot on the page, then it loads in the images and I can zoom back in. Running 0.15.0
Why don't you use the Baumer CTI files instead? They are included in the gapi-sdk, also for ARM. https://www.baumer.com/nl/en/product-overview/industrial-cameras-image-processing/software/baumer-gapi-sdk/linux-arm/c/14178
You can supply the CTI file for each different brand of camera. That's what the GenICam is for (Generic Interface for Cameras). You could either detect the camera brand and...
Can you try to do a firmware update? I have had cameras with greyed out values that should be writeable that worked after a firmware update. Also, with the matrix...
@jesperstald I have a Daheng Imaging camera, and I tested if I am only able to change the handlingmode by using the manufacturers CTI with the following code: ``` ia.data_streams[0].node_map.StreamBufferHandlingMode.value...
@jesperstald I also looked at your sample code, and because of how its setup it will probably always fall behind. Code below might solve your issue for now, even without...
> Which I don't get with equivalent code not using threading. I wonder, does the harverster ImageAcquirer module not already run in a separate thread, perhaps making the additional thread...