HarryTheWulf

Results 8 issues of HarryTheWulf

When trying to import sticky-kit there is an error that the module cannot be found. This is because `package.json` has an entry point of `sticky-kit.js`, but that file exists in...

I have added in a new method that can be called in the same way that `stream` is in order to print raw HTML to the browser. This is useful...

With the changes in this PR, the marker structs will be registered in the `PostStartup` schedule (in addition to the original `Update`) allowing for [any schedule](https://github.com/bevyengine/bevy/blob/main/crates/bevy_app/src/main_schedule.rs#L12) that follows this to...

This PR will allow for a custom model to be provided for any of the custom architectures - providing `null` will default to `PreTrainedModel`. This came about when I was...

# Prerequisites * #1101 * #1103 * #1136 These PRs are required because the processors lean heavily on the new features. --- Add support for the U-2-Net architecture which is...

I wanted to make a start implementing various resizing algorithms for `RawImage`. Here is an example of the original canvas API implementation and this PR's bilinear implementation. I have performed...

This PR is inspired by the functionality of [OpenCV](https://github.com/egonSchiele/OpenCV/blob/master/modules/imgproc/src/morph.cpp#L981). With this, we can create a kernel that is operated over each element of the `data` array and performs some calculation....

The reason for this, is for models like U2Net where the input image size is 320x320, meaning that the resulting output needs to be resized, and can have sharp edges;...