verigle

Results 29 comments of verigle

> could you fix this issue? have the same problem with OpenCV4.3.0 I use onnx-runtime for inference instead of opencv.dnn

> Hi, > > I needed to convert your .pt model to onnx. Upon conversion, my onnx output is different for the bbox coordinates as compared to the output from...

The img was flipped with left-right when loading img image = cv2.imread(img_path, 0) if image is None: return None image = np.dstack((image, np.fliplr(image))) image = image.transpose((2, 0, 1)) image =...

yes, my pictures are 960 * 540 * 3 I download datasets from this: https://lmb.informatik.uni-freiburg.de/resources/datasets/SceneFlowDatasets.en.html#downloads

Now I know how to solve this problem.But I want to know the the datesets you used which have pictures are 384 * 768 * 3.

> ```python > app = Router([Mount("/api", app=service_app), Mount("", app=root_app)]) > > > async def open_database_connection_pool(): > await service_app.service.connect() > > > async def close_database_connection_pool(): > await service_app.service.disconnect() > > >...

with export LD_LIBRARY_PATH=/path/to/your/cuda/lib64:${LD_LIBRARY_PATH} the program still can't find the -lcublas, -lcudart, -lcurand but with export LIBRARY_PATH=/path/to/your/cuda/lib64:${LIBRARY_PATH} it worked for me. hignlight the note that using ENV of LIBRARY_PATH rather than...