Florian Bruggisser
Florian Bruggisser
The method is now implemented into version [2.4.3](https://github.com/cansik/realsense-processing/releases/tag/v2.4.3).
The `cropsize` slider controls the `render_aabb` bounding box. It is possible to directly adjust it by using the following method I have converted from C++ to python: ```python def set_crop_size(testbed,...
@barney2074 Have a look at my custom render script. I have also optimised the frame-writing part performance wise. https://github.com/cansik/instant-ngp/blob/master/scripts/render.py
@MartyG-RealSense Using a `0` integer leads to the same behaviour, so it is not connected with that problem I guess.
@MartyG-RealSense I already tried first enabling the auto-exposure. But it does not seem to work. Your code results in the same exception: ``` Traceback (most recent call last): File "./tests/RealSenseAutoExposureLimit.py",...
@MartyG-RealSense Thank you for your efforts and I don't mean to be rude, but I'm not sure that trying these things will make any difference. The desired effect would be...
The standard make command did not work on my system, even for the python library. Others are working with XCode as well because of that. Intel dropped MacOS suppport lately,...
Ok, maybe I need a bit more help here, the library structure is the following: - /opt/intel/openvino/deployment_tools/inference_engine/lib/intel64/libMKLDNNPlugin.dylib - /opt/intel/openvino/deployment_tools/inference_engine/external/mkltiny_mac/lib/libmkl_tiny_tbb.dylib Now `libMKLDNNPlugin` wants to read the rpath ` @rpath/libmkl_tiny_tbb.dylib`, which means...
@saudet Well with the flag it worked when you had the inference engine installed locally. This is at least something, but yeah of course, shipping the IE would be way...
Here an example on how to lazy-load PLY files: 1. Make `PlyImporter` and it's import methods (`ImportAsPointCloudData`, `ImportAsMesh`) `public`: ```c# public class PlyImporter : ScriptedImporter ... public PointCloudData ImportAsPointCloudData(string path)...