mdenty

Results 15 comments of mdenty

I have this issue too, QEMU with Linux guest, but with Shared Network. The issue appears in less than an hour.

Good to know about `*_def` functions. I'll keep that in mind.

For some reason the `SIFT::create_def_1` is not found under Linux: ``` error[E0599]: no function or associated item named `create_def_1` found for struct `SIFT` in the current scope --> src/some/dir/model.rs:390:28 |...

Hello, The 2 first parameters are `Vector`. For the mask, I use a default `Mat`. See the following code: ```rust let mut src_points: Vector = Vector::new(); let mut dst_points: Vector...

Actually I never used `perspective_transform` myself. I use `warp_perspective` instead, like this: ```rust let mut result = Mat::default(); warp_perspective( &mat, &mut result, &m, Size::new(self.model.model_width, self.model.model_height), INTER_LANCZOS4, BORDER_CONSTANT, Scalar::from(255.0), )?; ```...

I've fixed this error by changing the code of `FixedBatchNormalization` with provided code. Note the rewriting of `batch_normalization` function initially found in `tensorflow_backend.py`. The issue for me was a bug...

Sure, you'll find the log file attached. [rustls_ironrdp-client.log](https://github.com/Devolutions/IronRDP/files/13558006/rustls_ironrdp-client.log) After that log recording, I have tried to change in Cargo.toml file (client) the TLS feature: ```toml [features] # default = ["rustls"]...

I captured the traces of both connections (IronRDP and MS Remote Desktop) and attached them in the [zip](https://mega.nz/file/5REyXaJA#AMmRUWeS3dubYnxhj6UGecLK0lk1MTMWCQq_kq5F8P0) file. I can spot differences very early in the communication. With IronRDP...

Thank you very much Benoît for this detailed investigation. > However,  I also happen to have [a patch almost ready](https://github.com/Devolutions/IronRDP/tree/scancode-mapping) for this. Great news about the scancodes for macOS, I...

The new message is : `Connection error: [ChannelJoinConfirm] reason: unexpected requested_channel_id in MCS Channel Join Confirm: received 1004, got 1002` See attached log for xrdp 0.9.17. [ironrdp-client-xrdp-0.9.17.log](https://github.com/Devolutions/IronRDP/files/13612438/ironrdp-client-xrdp-0.9.17.log) **EDIT**: For some...