LordTrololo

Results 11 comments of LordTrololo

I also get the following error (Windows 10): `FileNotFoundError: [WinError 2] The system cannot find the file specified` It happens in the **build-win.py** in this part ``` def _mergelibs(arch, scheme,...

I managed to work around this by adding the path to **lib.exe** to environment variables. So now I manage to get the **owt-debug.lib**. Of course I still couldn't use it...

When I try the following in CMD (basically I use README example): `python3 build-win.py --gn_gen --arch x64 --scheme debug --ssl_root "C:\Program Files\OpenSSL-Win64" --msdk_root "C:\Program Files (x86)\IntelMediaSDK2021R1\Intel(R) Media SDK 2021 R1\Software...

Hi, I am also training with one class only, my image dataset is split 150/50. Training seems to be ok (I get a lot of warnings but I'm not sure...

I am working on the same problem. In the _OnnxModelScorer.cs_ I am able to get 3 probabilites outputs (as the yolov3 I use has 3) like so: ``` IEnumerable probabilitiesIdentity0...

> TIFF files store compressed image data in strips or tiles. You can extract raw data of strip/tile using this code: One question. Lets say that I want to extract...

In addition to the mentioned JPEGTables problems, I found another issue with extracting the raw tiles: ![image](https://user-images.githubusercontent.com/61494668/141785407-b1e4a231-073e-4da6-953a-036c78dbc8a5.png) Here we see part of _CMU-1.svs_ opened in File Explorer. The edge tiles...

I have one LZW compressed stripped subimage. It has one LZW specific tag - **Predictor** , but I dont know what to do with it. Do you know by any...

O great wizard of the tiff, I am trying to use your code to decode the LZW byte array but I am having some problems... On one hand - it...

Your _undo horizontal differencing_ code works great. There is still a minor incovnenience however... Here is what I do: 1) I decode using your decoder function to get `decodedOutput` 2)...